1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
|
from pathlib import Path
import qrcode, pytest
from fpdf import FPDF
from test.conftest import assert_pdf_equal, LOREM_IPSUM
HERE = Path(__file__).resolve().parent
IMG_DIR = HERE.parent / "image"
TABLE_DATA = (
("First name", "Last name", "Image", "City"),
(
"Jules",
"Smith",
IMG_DIR / "png_images/ba2b2b6e72ca0e4683bb640e2d5572f8.png",
"San Juan",
),
(
"Mary",
"Ramos",
IMG_DIR / "png_images/ac6343a98f8edabfcc6e536dd75aacb0.png",
"Orlando",
),
(
"Carlson",
"Banks",
IMG_DIR / "image_types/insert_images_insert_png.png",
"Los Angeles",
),
("Lucas", "Cimon", IMG_DIR / "image_types/circle.bmp", "Angers"),
)
MULTILINE_TABLE_DATA = (
("Multilines text", "Image"),
(LOREM_IPSUM[:200], IMG_DIR / "png_images/ba2b2b6e72ca0e4683bb640e2d5572f8.png"),
(LOREM_IPSUM[200:400], IMG_DIR / "png_images/ac6343a98f8edabfcc6e536dd75aacb0.png"),
(LOREM_IPSUM[400:600], IMG_DIR / "image_types/insert_images_insert_png.png"),
(LOREM_IPSUM[600:800], IMG_DIR / "image_types/circle.bmp"),
)
def test_table_with_image_border_overlap(tmp_path):
pdf = FPDF()
pdf.add_page()
pdf.set_font("Times", size=16)
with pdf.table() as table:
row = table.row()
row.cell(img=IMG_DIR / "png_indexed/flower1.png", img_fill_width=True)
row.cell("Other field")
assert_pdf_equal(pdf, HERE / "table_with_image_border_overlap.pdf", tmp_path)
def test_table_with_image_mixed_rows_and_alignment(tmp_path):
pdf = FPDF()
pdf.add_page()
pdf.set_font("Times", size=16)
with pdf.table() as table:
for i, data_row in enumerate(MULTILINE_TABLE_DATA[:2]):
row = table.row()
for j, datum in enumerate(data_row):
if j == 1 and i > 0:
row.cell(img=datum, img_fill_width=True)
else:
row.cell(datum)
row = table.row()
row.cell("Where do I align vertically?")
row.cell("This is a cell with multiple lines\n" * 6)
assert_pdf_equal(
pdf,
HERE / "table_with_multiline_cells_and_images_mixed.pdf",
tmp_path,
)
def test_table_with_images(tmp_path):
pdf = FPDF()
pdf.add_page()
pdf.set_font("Times", size=16)
with pdf.table() as table:
for i, data_row in enumerate(TABLE_DATA):
row = table.row()
for j, datum in enumerate(data_row):
if j == 2 and i > 0:
row.cell(img=datum)
else:
row.cell(datum)
assert_pdf_equal(pdf, HERE / "table_with_images.pdf", tmp_path)
def test_table_with_images_and_img_fill_width(tmp_path):
pdf = FPDF()
pdf.add_page()
pdf.set_font("Times", size=16)
with pdf.table() as table:
for i, data_row in enumerate(TABLE_DATA):
row = table.row()
for j, datum in enumerate(data_row):
if j == 2 and i > 0:
row.cell(img=datum, img_fill_width=True)
else:
row.cell(datum)
assert_pdf_equal(pdf, HERE / "table_with_images_and_img_fill_width.pdf", tmp_path)
def test_table_with_multiline_cells_and_images(tmp_path):
pdf = FPDF()
pdf.add_page()
pdf.set_font("Times", size=16)
with pdf.table() as table:
for i, data_row in enumerate(MULTILINE_TABLE_DATA):
row = table.row()
for j, datum in enumerate(data_row):
if j == 1 and i > 0:
row.cell(img=datum, img_fill_width=True)
else:
row.cell(datum)
assert_pdf_equal(pdf, HERE / "table_with_multiline_cells_and_images.pdf", tmp_path)
def test_table_with_images_and_text():
pdf = FPDF()
pdf.add_page()
pdf.set_font("Times", size=16)
with pytest.raises(NotImplementedError):
with pdf.table() as table:
for i, data_row in enumerate(TABLE_DATA):
row = table.row()
for j, datum in enumerate(data_row):
if j == 2 and i > 0:
row.cell(datum.name, img=datum)
else:
row.cell(datum)
def test_table_with_qrcode(tmp_path): # issue 771
pdf = FPDF()
pdf.add_page()
pdf.set_font("Times", size=16)
qrCodeGenerated = qrcode.make("https://google.com")
with pdf.table(first_row_as_headings=False) as table:
row = table.row()
row.cell(img=qrCodeGenerated.get_image(), img_fill_width=True)
row.cell("Other field")
assert_pdf_equal(pdf, HERE / "table_with_qrcode.pdf", tmp_path)
def test_table_with_page_break_over_image_with_heading(tmp_path):
pdf = FPDF()
pdf.add_page()
pdf.set_font("Times", size=16)
pdf.y = 220
with pdf.table() as table:
for i, data_row in enumerate(TABLE_DATA[:2]):
row = table.row()
for j, datum in enumerate(data_row):
if j == 2 and i > 0:
row.cell(img=datum, img_fill_width=True)
else:
row.cell(datum)
assert_pdf_equal(
pdf, HERE / "table_with_page_break_over_image_with_heading.pdf", tmp_path
)
def test_table_with_page_break_over_image_without_heading(tmp_path):
pdf = FPDF()
pdf.add_page()
pdf.set_font("Times", size=16)
pdf.y = 220
with pdf.table(first_row_as_headings=False) as table:
for i, data_row in enumerate(TABLE_DATA[:2]):
row = table.row()
for j, datum in enumerate(data_row):
if j == 2 and i > 0:
row.cell(img=datum, img_fill_width=True)
else:
row.cell(datum)
assert_pdf_equal(
pdf, HERE / "table_with_page_break_over_image_without_heading.pdf", tmp_path
)
def test_table_with_images_and_links(tmp_path):
pdf = FPDF()
pdf.set_font("Times", size=16)
pdf.add_page()
pdf.y = 100
pdf.cell(text="Page 1", center=True)
pdf.add_page()
with pdf.table() as table:
for i, data_row in enumerate(TABLE_DATA):
row = table.row()
for j, datum in enumerate(data_row):
if j == 2 and i > 0:
row.cell(
img=datum,
img_fill_width=True,
link="https://py-pdf.github.io/fpdf2/",
)
else:
row.cell(datum, link=pdf.add_link(page=1))
assert_pdf_equal(pdf, HERE / "table_with_images_and_links.pdf", tmp_path)
|