I've several lines of text and I'd like each to fit in width (scaling the font size) to the width of the Context. Is there a way of doing this? I'm using pangocairo and python for this.
I wish to have time for a working solution, but you can start with something like:
import cairo
import pango
import pangocairo
import sys
W = 500
H = int(1.4 * W)
surf = cairo.ImageSurface(cairo.FORMAT_ARGB32, W, H)
context = cairo.Context(surf)
#draw a background rectangle:
context.rectangle(0, 0, W, H)
context.set_source_rgb(1, 1, 1)
context.fill()
#get font families:
font_map = pangocairo.cairo_font_map_get_default()
families = font_map.list_families()
# to see family names:
#print sorted([f.get_name() for f in font_map.list_families()])
# context.set_antialias(cairo.ANTIALIAS_SUBPIXEL)
# Translates context so that desired text upperleft corner is at 0,0
text = """Fit line
to width with
Pango
and Cairo"""
fontname = "Arial"
context.set_source_rgb(0, 0, 0)
y = 0
for line in text.split("\n"):
pangocairo_context = pangocairo.CairoContext(context)
pangocairo_context.set_antialias(cairo.ANTIALIAS_SUBPIXEL)
layout = pangocairo_context.create_layout()
font = pango.FontDescription(fontname + " 25")
layout.set_font_description(font)
layout.set_text(line)
pangocairo_context.update_layout(layout)
w, h = layout.get_pixel_size()
print w, h, y
context.translate(0, y)
pangocairo_context = pangocairo.CairoContext(context)
pangocairo_context.set_antialias(cairo.ANTIALIAS_SUBPIXEL)
layout = pangocairo_context.create_layout()
font_descr = "{} {:0.1f}".format(fontname, float(W) / w * 25)
font = pango.FontDescription(font_descr)
layout.set_font_description(font)
layout.set_text(line)
_, y = layout.get_pixel_size()
pangocairo_context.update_layout(layout)
pangocairo_context.show_layout(layout)
with open("cairo_text.png", "wb") as image_file:
surf.write_to_png(image_file)
Result:
I will left improving this algorithm as an exercise for the reader, you can try to:
pangocairo_context
insteadpycairo
until I read your question and goggled for the docs.If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With