Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit105f9eb

Browse files
authored
Merge pull request#30567 from QuLogic/pdf-loop-merge
pdf: Merge loops for single byte text chunk output
2 parents0da372b +3e97c0d commit105f9eb

File tree

1 file changed

+33
-32
lines changed

1 file changed

+33
-32
lines changed

‎lib/matplotlib/backends/backend_pdf.py‎

Lines changed: 33 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -2375,47 +2375,48 @@ def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
23752375
# the regular text show command (TJ) with appropriate kerning between
23762376
# chunks, whereas multibyte characters use the XObject command (Do).
23772377
else:
2378-
# List of (ft_object, start_x, [prev_kern, char, char, ...]),
2379-
# w/o zero kerns.
2380-
singlebyte_chunks= []
2381-
# List of (ft_object, start_x, glyph_index).
2382-
multibyte_glyphs= []
2383-
prev_was_multibyte=True
2384-
prev_font=font
2385-
foritemin_text_helpers.layout(s,font,kern_mode=Kerning.UNFITTED):
2386-
if_font_supports_glyph(fonttype,ord(item.char)):
2387-
ifprev_was_multibyteoritem.ft_object!=prev_font:
2388-
singlebyte_chunks.append((item.ft_object,item.x, []))
2389-
prev_font=item.ft_object
2390-
ifitem.prev_kern:
2391-
singlebyte_chunks[-1][2].append(item.prev_kern)
2392-
singlebyte_chunks[-1][2].append(item.char)
2393-
prev_was_multibyte=False
2394-
else:
2395-
multibyte_glyphs.append((item.ft_object,item.x,item.glyph_index))
2396-
prev_was_multibyte=True
2378+
defoutput_singlebyte_chunk(kerns_or_chars):
2379+
self.file.output(
2380+
# See pdf spec "Text space details" for the 1000/fontsize
2381+
# (aka. 1000/T_fs) factor.
2382+
[(-1000*next(group)/fontsize)iftp==float# a kern
2383+
elseself.encode_string("".join(group),fonttype)
2384+
fortp,groupinitertools.groupby(kerns_or_chars,type)],
2385+
Op.showkern)
23972386
# Do the rotation and global translation as a single matrix
23982387
# concatenation up front
23992388
self.file.output(Op.gsave)
24002389
a=math.radians(angle)
24012390
self.file.output(math.cos(a),math.sin(a),
24022391
-math.sin(a),math.cos(a),
24032392
x,y,Op.concat_matrix)
2393+
# List of [prev_kern, char, char, ...] w/o zero kerns.
2394+
singlebyte_chunk= []
2395+
# List of (ft_object, start_x, glyph_index).
2396+
multibyte_glyphs= []
2397+
prev_font=None
2398+
prev_start_x=0
24042399
# Emit all the 1-byte characters in a BT/ET group.
24052400
self.file.output(Op.begin_text)
2406-
prev_start_x=0
2407-
forft_object,start_x,kerns_or_charsinsinglebyte_chunks:
2408-
ft_name=self.file.fontName(ft_object.fname)
2409-
self.file.output(ft_name,fontsize,Op.selectfont)
2410-
self._setup_textpos(start_x,0,0,prev_start_x,0,0)
2411-
self.file.output(
2412-
# See pdf spec "Text space details" for the 1000/fontsize
2413-
# (aka. 1000/T_fs) factor.
2414-
[-1000*next(group)/fontsizeiftp==float# a kern
2415-
elseself.encode_string("".join(group),fonttype)
2416-
fortp,groupinitertools.groupby(kerns_or_chars,type)],
2417-
Op.showkern)
2418-
prev_start_x=start_x
2401+
foritemin_text_helpers.layout(s,font,kern_mode=Kerning.UNFITTED):
2402+
if_font_supports_glyph(fonttype,ord(item.char)):
2403+
ifitem.ft_object!=prev_font:
2404+
ifsinglebyte_chunk:
2405+
output_singlebyte_chunk(singlebyte_chunk)
2406+
ft_name=self.file.fontName(item.ft_object.fname)
2407+
self.file.output(ft_name,fontsize,Op.selectfont)
2408+
self._setup_textpos(item.x,0,0,prev_start_x,0,0)
2409+
singlebyte_chunk= []
2410+
prev_font=item.ft_object
2411+
prev_start_x=item.x
2412+
ifitem.prev_kern:
2413+
singlebyte_chunk.append(item.prev_kern)
2414+
singlebyte_chunk.append(item.char)
2415+
else:
2416+
prev_font=None
2417+
multibyte_glyphs.append((item.ft_object,item.x,item.glyph_index))
2418+
ifsinglebyte_chunk:
2419+
output_singlebyte_chunk(singlebyte_chunk)
24192420
self.file.output(Op.end_text)
24202421
# Then emit all the multibyte characters, one at a time.
24212422
forft_object,start_x,glyph_indexinmultibyte_glyphs:

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp