How can i use different fonts in the same cell !
Example : In this scenario you will see a driving route
what i want :
In this scenario you will see a driving route
Advertisement
Answer
I found this GIT issue with the same question.
there is a work around to do that:
JavaScript
x
26
26
1
from fpdf import FPDF
2
3
DATA = (
4
("First name", "Last name", "Age", "City"),
5
("Lucas", "Cimon", "31", "Saint- -sur-Loire"),
6
)
7
COL_WIDTHS = (.2, .2, .15, .45)
8
9
pdf = FPDF()
10
pdf.add_page()
11
pdf.set_font("Courier", size=10) # this trick is easier with monospaced fonts
12
line_height = pdf.font_size * 2.5
13
for row in DATA:
14
for i, datum in enumerate(row):
15
col_width = COL_WIDTHS[i] * pdf.epw
16
x, y = pdf.x, pdf.y
17
pdf.multi_cell(col_width, line_height, datum, border=1, ln=3)
18
if datum.endswith("sur-Loire"): # performing a 2nd pass on the target cell
19
text = " Mathurin" # part of cell context to put in bold, with padding matching the word horizontal position
20
pdf.set_xy(x, y) # positioning FPDF to re-draw the same cell
21
pdf.set_font(style="BI") # switching to bold italic
22
pdf.multi_cell(col_width, line_height, text, border=1, ln=3)
23
pdf.set_font(style="") # switching back to regular
24
pdf.ln(line_height)
25
pdf.output('issue_108.pdf')
26