MCPcopy Index your code
hub / github.com/pymupdf/PyMuPDF / appendv

Method appendv

src/__init__.py:16792–16798  ·  view source on GitHub ↗
(self, pos, text, font=None, fontsize=11, language=None, small_caps=False)

Source from the content-addressed store, hash-verified

16790 return val
16791
16792 def appendv(self, pos, text, font=None, fontsize=11, language=None, small_caps=False):
16793 lheight = fontsize * 1.2
16794 for c in text:
16795 self.append(pos, c, font=font, fontsize=fontsize,
16796 language=language, small_caps=small_caps)
16797 pos.y += lheight
16798 return self.text_rect, self.last_point
16799
16800 def clean_rtl(self, text):
16801 """Revert the sequence of Latin text parts.

Callers

nothing calls this directly

Calls 1

appendMethod · 0.95

Tested by

no test coverage detected