├── .all-contributorsrc ├── .banditrc.yml ├── .coveragerc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature_request.md │ └── question.md ├── pull_request_template.md └── workflows │ ├── codeql.yml │ └── continuous-integration-workflow.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .typos.toml ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── contributors ├── LICENSE ├── README.md ├── build_contributors_html_page.py ├── contributors-map-small.png ├── contributors.html.jinja2 ├── package-lock.json ├── package.json └── requirements.txt ├── docs ├── Annotations.md ├── AztecCode.png ├── Barcodes.md ├── CombineWithBorb.md ├── CombineWithChartingLibs.md ├── CombineWithLivereload.md ├── CombineWithMarkdown.md ├── CombineWithPdfrw.md ├── CombineWithPyPDF2.md ├── CombineWithPypdf.md ├── CombineWithRoughJS.md ├── DatabaseStorage.md ├── Development.md ├── DocumentOutlineAndTableOfContents.md ├── Drawing.md ├── EmojisSymbolsDingbats.md ├── Encryption.md ├── FileAttachments.md ├── HTML.md ├── History.md ├── Images.md ├── Internals.md ├── LineBreaks.md ├── Links.md ├── Logging.md ├── Margins.md ├── Maths.md ├── Metadata.md ├── NamedDestinations.md ├── PageBreaks.md ├── PageFormatAndOrientation.md ├── PageLabels.md ├── Patterns.md ├── Presentations.md ├── README.md ├── RenderingSpreadsheetsAsPDFTables.md ├── RoughJS.png ├── SVG.md ├── Shapes.md ├── Signing.md ├── Symbol.jpg ├── Tables.md ├── Templates.md ├── TemplatingWithJinja.md ├── Text.md ├── TextColumns.md ├── TextRegion.md ├── TextShaping.md ├── TextStyling.md ├── Transformations.md ├── Transparency.md ├── Tutorial-bn.md ├── Tutorial-de.md ├── Tutorial-es.md ├── Tutorial-fr.md ├── Tutorial-gr.md ├── Tutorial-he.md ├── Tutorial-hi.md ├── Tutorial-id.md ├── Tutorial-it.md ├── Tutorial-ja.md ├── Tutorial-km.md ├── Tutorial-nl.md ├── Tutorial-pl.md ├── Tutorial-pt.md ├── Tutorial-ru.md ├── Tutorial-sl.md ├── Tutorial-tr.md ├── Tutorial-ua.md ├── Tutorial-zh.md ├── Tutorial.md ├── Unicode.md ├── UsageInWebAPI.md ├── ZapfDingbats.jpg ├── add-unicode-font.png ├── arc.png ├── bezier-chaining.png ├── bezier.png ├── bidi_paragraph.svg ├── blue_dashed_line.png ├── char_spacing.png ├── char_vpos.png ├── chart-pandas.png ├── circle.png ├── code128_barcode.png ├── code39.png ├── color_srgb.csv ├── color_srgb.ods ├── color_srgb.xlsx ├── core_fonts.png ├── datamatrix.png ├── diagonal_mirror.png ├── document-outline.png ├── drawing │ ├── demo-1.pdf │ ├── demo-1.webp │ ├── demo-2.pdf │ ├── demo-2.webp │ ├── demo-3.pdf │ ├── demo-3.webp │ ├── demo-4.pdf │ └── demo-4.webp ├── ellipse.png ├── equation-with-gcharts.png ├── equation-with-matplotlib.png ├── file_attachment_annotation.png ├── font_stretching.png ├── fpdf2-logo.png ├── free-text-annotation.png ├── graphics.svg ├── graphics_svg.pdf ├── highlighted.png ├── horizontal_mirror.png ├── image-clipping.png ├── image-colspan.png ├── image-rowspan.png ├── img_table_padding.png ├── index.md ├── ink_annotation.png ├── interleaved2of5.png ├── markdown-style.png ├── markdown2pdf_unicode.png ├── matplotlib.png ├── orange_plain_line.png ├── overrides │ ├── .hooks │ │ └── log_manager.py │ ├── README.md │ └── main.html ├── page-labels.png ├── pattern_linear_demo.pdf ├── pattern_radial_demo.pdf ├── pdf-text-modes.jpg ├── pdf417.png ├── pdfa.md ├── pdfchecker-logo.png ├── pdoc │ └── config.mako ├── plotly_png.png ├── plotly_svg.png ├── plugins │ └── check_toc.py ├── polygon.png ├── pygal_chart.png ├── pygal_chart_cairo.png ├── qpdf-logo.svg ├── qrcode.png ├── regular_polygon.png ├── regular_polygon_rounded.png ├── rotation.jpg ├── round_corners_rectangles.png ├── signature-valid-in-acrobat.png ├── slanted_circle.png ├── solid_arc.png ├── squares.png ├── star.png ├── symbol.pdf ├── symbol.py ├── table-from-spreadsheet.png ├── table-pandas.png ├── table-simple.jpg ├── table-styled-override.jpg ├── table-styled.jpg ├── table-with-cells-filled.jpg ├── table-with-cells-filled2.jpg ├── table-with-custom-border-layout.jpg ├── table-with-fixed-column-widths.jpg ├── table_align.jpg ├── table_with_cell_border_left.jpg ├── table_with_cell_border_left_top.jpg ├── table_with_cell_border_top.jpg ├── table_with_gutter.jpg ├── table_with_images.jpg ├── table_with_images_and_img_fill_width.jpg ├── table_with_internal_layout.jpg ├── table_with_minimal_layout.jpg ├── table_with_multiple_headings.png ├── table_with_single_top_line_layout.jpg ├── tcols-balanced.png ├── tcols-paragraphs.png ├── tcols-single.png ├── tcols-three.png ├── text-annotation.png ├── text-modes.png ├── text-shaping-kerning.png ├── text-shaping-ligatures.png ├── text-shaping-substitution.png ├── transparency.png ├── unicode_range_color_emojis.png ├── vera-logo.jpg ├── vertical_mirror.png ├── x_axis_skewed_text.png ├── y_axis_skewed_text.png ├── zapfdingbats.pdf └── zapfdingbats.py ├── fpdf ├── __init__.py ├── actions.py ├── annotations.py ├── bidi.py ├── data │ ├── __init__.py │ └── color_profiles │ │ ├── __init__.py │ │ ├── sRGB2014.icc │ │ └── sRGB2014.icc.LICENSE ├── deprecation.py ├── drawing.py ├── drawing_primitives.py ├── encryption.py ├── enums.py ├── errors.py ├── font_type_3.py ├── fonts.py ├── fpdf.py ├── graphics_state.py ├── html.py ├── image_datastructures.py ├── image_parsing.py ├── line_break.py ├── linearization.py ├── outline.py ├── output.py ├── pattern.py ├── prefs.py ├── recorder.py ├── sign.py ├── structure_tree.py ├── svg.py ├── syntax.py ├── table.py ├── template.py ├── text_region.py ├── transitions.py ├── unicode_script.py └── util.py ├── mkdocs.yml ├── pyproject.toml ├── renovate.json ├── scripts ├── __init__.py ├── add_pdoc_to_search_index.py ├── benchmark_borb_vs_fpdf2.py ├── changed_pdfs_comparison.html ├── check-PDF-A-with-verapdf.sh ├── checker_commons.py ├── compare-changed-pdfs.py ├── create-endesive-certificates.sh ├── generate-dependencies-list.py ├── install-pdfchecker.sh ├── install-verapdf.sh ├── pdfchecker-ignore.json ├── pdfchecker.py ├── show_html_coverage.sh ├── update_pypi_interactive.sh ├── verapdf-ignore.json ├── verapdf.properties └── verapdf.py ├── test ├── __init__.py ├── add_page_duration.pdf ├── add_page_format.pdf ├── alias_nb_pages.pdf ├── alias_with_text_shaping.pdf ├── barcodes │ ├── __init__.py │ ├── barcodes_code39.pdf │ ├── barcodes_interleaved2of5.pdf │ └── test_barcodes.py ├── break_or_add_page.pdf ├── break_or_add_page_draw_fill.pdf ├── cell_skew_text.pdf ├── color_font │ ├── BungeeColor-Regular-COLRv0.ttf │ ├── BungeeColor-Regular-SVG.ttf │ ├── BungeeColor-Regular_sbix_MacOS.ttf │ ├── BungeeSpice-Regular-COLRv1.ttf │ ├── Compyx-Regular-SBIX.ttf │ ├── Gilbert-Color Bold SVG.otf │ ├── Nabla-Regular-COLRv1-VariableFont_EDPT,EHLT.ttf │ ├── NotoColorEmoji-CBDT.ttf │ ├── Twemoji.Mozilla.ttf │ ├── __init__.py │ ├── cbdt_noto_color_emoji.pdf │ ├── cbdt_noto_color_emoji_shaping.pdf │ ├── cbdt_noto_emoji_text.pdf │ ├── colrv0-twemoji.pdf │ ├── colrv0-twemoji_shaping.pdf │ ├── colrv0-twemoji_text.pdf │ ├── colrv1-NotoColorEmoji.ttf │ ├── colrv1-noto-color-emoji.pdf │ ├── colrv1-noto-color-emoji_shaping.pdf │ ├── colrv1-noto-color-emoji_text.pdf │ ├── colrv1_bungee.pdf │ ├── colrv1_nabla.pdf │ ├── multiple_palettes_same_font.pdf │ ├── out_of_range_palette.pdf │ ├── palette_defaults.pdf │ ├── palette_parameter_acceptance.pdf │ ├── sbix_bungee.pdf │ ├── sbix_compyx.pdf │ ├── svg_bungee.pdf │ ├── svg_gilbert.pdf │ ├── svg_twitter_emoji_shaping.pdf │ ├── svg_twitter_emoji_text.pdf │ ├── test_cbdt.py │ ├── test_colr.py │ ├── test_palette_selection.py │ ├── test_sbix.py │ └── test_svg.py ├── conftest.py ├── drawing │ ├── __init__.py │ ├── generated_pdf │ │ ├── blending_images.pdf │ │ ├── bounding_box_painted_path_arc_and_line.pdf │ │ ├── bounding_box_painted_path_circle_and_rectangle.pdf │ │ ├── bounding_box_painted_path_dont_paint_rect.pdf │ │ ├── bounding_box_painted_path_evenodd_fill_with_hole.pdf │ │ ├── bounding_box_painted_path_fill_only_nonzero.pdf │ │ ├── bounding_box_painted_path_hairline_stroke_rect.pdf │ │ ├── bounding_box_painted_path_mixed_curves_and_lines.pdf │ │ ├── bounding_box_painted_path_nested_scaled_circle_stroke2.pdf │ │ ├── bounding_box_painted_path_scaled_stroke_rect_w2.pdf │ │ ├── bounding_box_painted_path_simple_path_absolute_relative.pdf │ │ ├── bounding_box_painted_path_stroke_fill_w2.pdf │ │ ├── bounding_box_painted_path_stroke_only_w4.pdf │ │ ├── bounding_box_painted_path_translated_fill_only.pdf │ │ ├── bounding_box_painted_path_zero_opacity_stroke_rect.pdf │ │ ├── compositing_Clear.pdf │ │ ├── compositing_Destination.pdf │ │ ├── compositing_DestinationAtop.pdf │ │ ├── compositing_DestinationIn.pdf │ │ ├── compositing_DestinationOut.pdf │ │ ├── compositing_DestinationOver.pdf │ │ ├── compositing_Source.pdf │ │ ├── compositing_SourceAtop.pdf │ │ ├── compositing_SourceIn.pdf │ │ ├── compositing_SourceOut.pdf │ │ ├── compositing_SourceOver.pdf │ │ ├── compositing_XOR.pdf │ │ ├── gradient_alpha_variance.pdf │ │ ├── gradient_linear_different_pages.pdf │ │ ├── gradient_linear_rotated_vs_user_space.pdf │ │ ├── gradient_linear_scale_translate.pdf │ │ ├── gradient_linear_spread_methods.pdf │ │ ├── gradient_linear_stops_extend_after.pdf │ │ ├── gradient_linear_stops_extend_before.pdf │ │ ├── gradient_linear_stops_extend_both.pdf │ │ ├── gradient_linear_stops_no_extend.pdf │ │ ├── gradient_radial_focal_extend.pdf │ │ ├── gradient_radial_objbox_userspace.pdf │ │ ├── gradient_radial_spread_methods.pdf │ │ ├── gradient_shape_linear.pdf │ │ ├── gradient_shape_radial.pdf │ │ ├── gradient_shared.pdf │ │ ├── gradient_sweep_types.pdf │ │ ├── gradient_userspace_pivot.pdf │ │ ├── gradient_with_stroke.pdf │ │ ├── shape_alpha_over_text.pdf │ │ ├── test_blend_modes_blend_mode_color_.pdf │ │ ├── test_blend_modes_blend_mode_color_burn_.pdf │ │ ├── test_blend_modes_blend_mode_color_dodge_.pdf │ │ ├── test_blend_modes_blend_mode_darken_.pdf │ │ ├── test_blend_modes_blend_mode_difference_.pdf │ │ ├── test_blend_modes_blend_mode_exclusion_.pdf │ │ ├── test_blend_modes_blend_mode_hard_light_.pdf │ │ ├── test_blend_modes_blend_mode_hue_.pdf │ │ ├── test_blend_modes_blend_mode_lighten_.pdf │ │ ├── test_blend_modes_blend_mode_luminosity_.pdf │ │ ├── test_blend_modes_blend_mode_multiply_.pdf │ │ ├── test_blend_modes_blend_mode_normal_.pdf │ │ ├── test_blend_modes_blend_mode_overlay_.pdf │ │ ├── test_blend_modes_blend_mode_saturation_.pdf │ │ ├── test_blend_modes_blend_mode_screen_.pdf │ │ ├── test_blend_modes_blend_mode_soft_light_.pdf │ │ ├── test_individual_attribute_0_stroke_width_.pdf │ │ ├── test_individual_attribute_2_stroke_width_.pdf │ │ ├── test_individual_attribute_50-50_stroke_dash_pattern_.pdf │ │ ├── test_individual_attribute_RGBA_4_fill_color_.pdf │ │ ├── test_individual_attribute_RGBA_4_stroke_color_.pdf │ │ ├── test_individual_attribute_RGBA_8_fill_color_.pdf │ │ ├── test_individual_attribute_RGBA_8_stroke_color_.pdf │ │ ├── test_individual_attribute_RGB_3_fill_color_.pdf │ │ ├── test_individual_attribute_RGB_3_stroke_color_.pdf │ │ ├── test_individual_attribute_RGB_6_fill_color_.pdf │ │ ├── test_individual_attribute_RGB_6_stroke_color_.pdf │ │ ├── test_individual_attribute_auto_close_.pdf │ │ ├── test_individual_attribute_bevel_stroke_join_.pdf │ │ ├── test_individual_attribute_butt_stroke_cap_.pdf │ │ ├── test_individual_attribute_complex_stroke_dash_pattern_.pdf │ │ ├── test_individual_attribute_half_fill_opacity_.pdf │ │ ├── test_individual_attribute_half_stroke_opacity_.pdf │ │ ├── test_individual_attribute_intersection_rule_.pdf │ │ ├── test_individual_attribute_miter_stroke_join_.pdf │ │ ├── test_individual_attribute_no_fill_color_.pdf │ │ ├── test_individual_attribute_no_fill_opacity_.pdf │ │ ├── test_individual_attribute_no_stroke_color_.pdf │ │ ├── test_individual_attribute_no_stroke_opacity_.pdf │ │ ├── test_individual_attribute_no_stroke_width_.pdf │ │ ├── test_individual_attribute_numeric_stroke_dash_pattern_.pdf │ │ ├── test_individual_attribute_square_stroke_cap_.pdf │ │ ├── test_inheriting_document_properties.pdf │ │ ├── test_stroke_dash_phase.pdf │ │ ├── test_stroke_miter_limit.pdf │ │ ├── text_alpha_over_shape.pdf │ │ ├── text_fill_gradient.pdf │ │ ├── text_fonts_styles_alignment.pdf │ │ ├── text_shape_order.pdf │ │ └── text_ttf_transforms.pdf │ ├── parameters.py │ ├── test_bounding_boxes.py │ ├── test_compositing.py │ ├── test_drawing.py │ ├── test_drawing_text.py │ └── test_gradient_fill.py ├── embed_file_all_optionals.pdf ├── embed_file_from_bytes.pdf ├── embed_file_self.pdf ├── encryption │ ├── encrypt_fonts.pdf │ ├── encrypt_metadata.pdf │ ├── encrypt_outline.pdf │ ├── encryption_aes128.pdf │ ├── encryption_aes256.pdf │ ├── encryption_aes256_user_password.pdf │ ├── encryption_empty_user_password.pdf │ ├── encryption_goto_named_destination.pdf │ ├── encryption_rc4.pdf │ ├── encryption_rc4_permissions.pdf │ ├── encryption_rc4_user_password.pdf │ ├── encryption_unicode.pdf │ ├── encryption_with_hyperlink.pdf │ ├── no_encryption.pdf │ └── test_encryption.py ├── errors │ ├── __init__.py │ ├── flowers.png │ ├── test_FPDF_errors.py │ └── test_deprecation_warnings.py ├── file_attachment_annotation.pdf ├── fonts │ ├── DejaVuSans-Bold.ttf │ ├── DejaVuSans-BoldOblique.ttf │ ├── DejaVuSans-Oblique.ttf │ ├── DejaVuSans.ttf │ ├── DejaVuSansMono.ttf │ ├── DroidSansFallback.ttf │ ├── Garuda.ttf │ ├── NotoSans-Regular.ttf │ ├── Quicksand-Bold.otf │ ├── Quicksand-Italic.otf │ ├── Quicksand-Regular.otf │ ├── README.md │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.TTF │ ├── Roboto-Italic.ttf │ ├── Roboto-Regular-without-notdef.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Variable.ttf │ ├── TwitterEmoji.ttf │ ├── Waree.ttf │ ├── __init__.py │ ├── add_font_unicode.pdf │ ├── charmap_first_999_chars-DejaVuSans-Oblique.pdf │ ├── charmap_first_999_chars-DejaVuSans.pdf │ ├── charmap_first_999_chars-DejaVuSansMono.pdf │ ├── charmap_first_999_chars-DroidSansFallback.pdf │ ├── charmap_first_999_chars-Garuda.pdf │ ├── charmap_first_999_chars-NotoSans-Regular.pdf │ ├── charmap_first_999_chars-Quicksand-Regular.pdf │ ├── charmap_first_999_chars-Roboto-Regular-without-notdef.pdf │ ├── charmap_first_999_chars-Roboto-Regular.pdf │ ├── charmap_first_999_chars-Roboto-Variable.pdf │ ├── charmap_first_999_chars-TwitterEmoji.pdf │ ├── charmap_first_999_chars-Waree.pdf │ ├── charmap_first_999_chars-cmss12.pdf │ ├── cmss12.ttf │ ├── emoji_fallback_with_unicode_range.pdf │ ├── emoji_restricted_range.pdf │ ├── emoji_without_unicode_range.pdf │ ├── fallback_font.pdf │ ├── fallback_font_ignore_style.pdf │ ├── fallback_font_with_non_alpha_on_fontkey.pdf │ ├── fallback_font_with_overridden_get_fallback_font.pdf │ ├── fonts_emoji_glyph.pdf │ ├── fonts_issue_66.pdf │ ├── fonts_otf.pdf │ ├── fonts_remap_nb.pdf │ ├── fonts_set_builtin_font.pdf │ ├── fonts_two_mappings.pdf │ ├── markdown_unicode_range.pdf │ ├── mixed_text_multiple_scripts.pdf │ ├── multi_cell_unicode_range.pdf │ ├── multiple_emoji_fonts.pdf │ ├── render_en_dash.pdf │ ├── specialized_punctuation.pdf │ ├── test_add_font.py │ ├── test_charmap.py │ ├── test_combine_fontface.py │ ├── test_font_fallback.py │ ├── test_font_internals.py │ ├── test_font_remap.py │ ├── test_set_font.py │ ├── test_unicode_range.py │ ├── test_unused_fonts.py │ ├── test_variable_font.py │ ├── test_wraps_zerowidthspace.py │ ├── thai_text.pdf │ ├── thai_wraps_zerowidthspace.pdf │ ├── unicode_range_bmp_boundary.pdf │ ├── unicode_range_combining.pdf │ ├── variable_font_variations_are_axes.pdf │ ├── variable_font_with_markdown.pdf │ ├── variable_font_with_one_modified_axis.pdf │ ├── variable_font_with_variations.pdf │ └── variable_font_without_variations.pdf ├── free_text_annotation_all_parameters.pdf ├── free_text_annotation_text_parameter.pdf ├── free_text_annotation_width_parameter.pdf ├── goto_action.pdf ├── goto_action_named_destination.pdf ├── goto_remote_action.pdf ├── graphics_context.pdf ├── highlighted.pdf ├── highlighted_over_page_break.pdf ├── html │ ├── __init__.py │ ├── html_align_paragraph.pdf │ ├── html_blockquote_color.pdf │ ├── html_blockquote_color_using_FontFace.pdf │ ├── html_blockquote_indent.pdf │ ├── html_bold_italic_underline.pdf │ ├── html_custom_heading_sizes.pdf │ ├── html_custom_line_height.pdf │ ├── html_custom_pre_code_font.pdf │ ├── html_customize_ul.pdf │ ├── html_customize_ul_deprecated.pdf │ ├── html_dd_tag_indent_deprecated.pdf │ ├── html_description.pdf │ ├── html_features.pdf │ ├── html_font_color_name.pdf │ ├── html_font_family.pdf │ ├── html_font_tag.pdf │ ├── html_footer_with_call_to_write_html_ko.pdf │ ├── html_footer_with_call_to_write_html_ok.pdf │ ├── html_format_within_p.pdf │ ├── html_heading_above_below.pdf │ ├── html_heading_color_attribute.pdf │ ├── html_heading_hebrew.pdf │ ├── html_headings_color.pdf │ ├── html_headings_line_height.pdf │ ├── html_images.pdf │ ├── html_img_not_overlapping.pdf │ ├── html_img_without_height_at_page_bottom_triggers_page_break.pdf │ ├── html_li_prefix_color.pdf │ ├── html_li_tag_indent.pdf │ ├── html_link_style.pdf │ ├── html_link_underline.pdf │ ├── html_list_vertical_margin.pdf │ ├── html_list_with_custom_font.pdf │ ├── html_ln_outside_p.pdf │ ├── html_long_list_entries.pdf │ ├── html_long_ol_bullets.pdf │ ├── html_measurement_units.pdf │ ├── html_ol_nested_in_ul.pdf │ ├── html_ol_start_and_type.pdf │ ├── html_ol_ul_line_height.pdf │ ├── html_page_break_after.pdf │ ├── html_page_break_before.pdf │ ├── html_preserve_initial_text_color.pdf │ ├── html_sections.pdf │ ├── html_strikethrough.pdf │ ├── html_superscript.pdf │ ├── html_table_honoring_align.pdf │ ├── html_table_inside_paragraph.pdf │ ├── html_table_line_separators.pdf │ ├── html_table_simple.pdf │ ├── html_table_th_inside_tr_issue_137.pdf │ ├── html_table_with_bgcolor.pdf │ ├── html_table_with_border.pdf │ ├── html_table_with_data_that_contains_entity_names.pdf │ ├── html_table_with_empty_cell_contents.pdf │ ├── html_table_with_font_tags_used_to_set_text_color.pdf │ ├── html_table_with_img.pdf │ ├── html_table_with_img_without_explicit_dimensions.pdf │ ├── html_table_with_imgs_captions_and_colspan.pdf │ ├── html_table_with_multi_lines_text.pdf │ ├── html_table_with_multiline_cells_and_split_over_page.pdf │ ├── html_table_with_null_text_in_span_cell.pdf │ ├── html_table_with_only_tds.pdf │ ├── html_table_with_width_and_align.pdf │ ├── html_title.pdf │ ├── html_title_duplicated.pdf │ ├── html_title_in_body.pdf │ ├── html_title_with_render_title_tag.pdf │ ├── html_ul_type.pdf │ ├── html_unorthodox_headings_hierarchy.pdf │ ├── html_whitespace_handling.pdf │ ├── issue_156.pdf │ ├── test_html.py │ └── test_html_table.py ├── hyperlinks.pdf ├── image │ ├── __init__.py │ ├── alt_text │ │ ├── alt_text_and_title.pdf │ │ ├── test_alt_text_on_two_pages.pdf │ │ └── test_image_alt_text.py │ ├── elliptic_clip.pdf │ ├── full_height_image.pdf │ ├── full_pdf_height_image.pdf │ ├── full_pdf_width_image.pdf │ ├── full_width_image.pdf │ ├── image_fit_in_rect.pdf │ ├── image_fit_in_rect_with_c_align_center.pdf │ ├── image_fit_in_rect_with_c_align_center_with_downscale.pdf │ ├── image_info.json │ ├── image_png_url.pdf │ ├── image_types │ │ ├── __init__.py │ │ ├── circle.bmp │ │ ├── circle.gif │ │ ├── image_types_insert_bmp.pdf │ │ ├── image_types_insert_gif.pdf │ │ ├── image_types_insert_jpg.pdf │ │ ├── image_types_insert_jpg_flatedecode.pdf │ │ ├── image_types_insert_jpg_flatedecode_windows.pdf │ │ ├── image_types_insert_jpg_icc.pdf │ │ ├── image_types_insert_jpg_icc_invalid.pdf │ │ ├── image_types_insert_jpg_jpxdecode.pdf │ │ ├── image_types_insert_jpg_lzwdecode.pdf │ │ ├── image_types_insert_jpg_lzwdecode_windows.pdf │ │ ├── image_types_insert_png.pdf │ │ ├── image_types_insert_png_alpha.pdf │ │ ├── image_types_insert_png_alpha_dctdecode.pdf │ │ ├── image_types_insert_png_alpha_dctdecode_windows.pdf │ │ ├── image_types_insert_png_disallow_transparency.pdf │ │ ├── image_types_insert_png_monochromatic.pdf │ │ ├── image_types_insert_tiff.pdf │ │ ├── image_types_insert_tiff_cmyk.pdf │ │ ├── images_types_insert_jpg_cmyk.pdf │ │ ├── insert_images_insert_jpg.jpg │ │ ├── insert_images_insert_jpg_cmyk.jpg │ │ ├── insert_images_insert_jpg_icc.jpg │ │ ├── insert_images_insert_jpg_icc_2.jpg │ │ ├── insert_images_insert_jpg_icc_invalid.jpg │ │ ├── insert_images_insert_png.png │ │ ├── insert_images_insert_tiff_cmyk.tiff │ │ ├── insert_pillow_issue_139.pdf │ │ ├── pythonknight.png │ │ ├── test.tiff │ │ └── test_insert_images.py │ ├── image_with_explicit_dimensions.pdf │ ├── image_x_align_center.pdf │ ├── image_x_align_right.pdf │ ├── load_base64_data.pdf │ ├── oversized_images_downscale_biggest_1st.pdf │ ├── oversized_images_downscale_biggest_2nd.pdf │ ├── oversized_images_downscale_simple.pdf │ ├── oversized_images_downscale_twice.pdf │ ├── oversized_images_downscaled_with_ratio_5.pdf │ ├── png_images │ │ ├── 0839d93f8e77e21acd0ac40a80b14b7b.png │ │ ├── 18f9baf3834980f4b80a3e82ad45be48.png │ │ ├── 1ebd73c1d3fbc89782f29507364128fc.png │ │ ├── 2d641a11233385bb37a524ff010a8531.png │ │ ├── 51a4d21670dc8dfa8ffc9e54afd62f5f.png │ │ ├── 66ac49ef3f48ac9482049e1ab57a53e9.png │ │ ├── 6c853ed9dacd5716bc54eb59cec30889.png │ │ ├── 93e6127b9c4e7a99459c558b81d31bc5.png │ │ ├── README.md │ │ ├── __init__.py │ │ ├── ac6343a98f8edabfcc6e536dd75aacb0.png │ │ ├── affc57dfffa5ec448a0795738d456018.png │ │ ├── b59d7a023a8dcd112da2eb859004199a.png │ │ ├── ba2b2b6e72ca0e4683bb640e2d5572f8.png │ │ ├── c-m1-66ac49ef3f48ac9482049e1ab57a53e9.png │ │ ├── c-m1-e0f25ec3373dfdca79ba7bcc3ad366f3.png │ │ ├── c-m3-66ac49ef3f48ac9482049e1ab57a53e9.png │ │ ├── c-m4-6bfb149151f58d124d6fa76eaad75520.png │ │ ├── c636287a4d7cb1a36362f7f236564cef.png │ │ ├── d2e515cfdabae699301dcf290382474d.png │ │ ├── e59ec0cfb8ab64558099543dc19f8378.png │ │ ├── ebfb1cd42314a557e72d4da75c21fc1c.png │ │ ├── image_png_insert_png_files.pdf │ │ └── test_png_file.py │ ├── png_indexed │ │ ├── __init__.py │ │ ├── flower1.png │ │ ├── flower2.png │ │ ├── flower3.png │ │ ├── image_png_indexed_no_transparency.pdf │ │ ├── image_png_indexed_transparency.pdf │ │ └── test_png_indexed.py │ ├── png_test_suite │ │ ├── basi0g01.png │ │ ├── basi0g02.png │ │ ├── basi0g04.png │ │ ├── basi0g08.png │ │ ├── basi0g16.png │ │ ├── basi2c08.png │ │ ├── basi2c16.png │ │ ├── basi3p01.png │ │ ├── basi3p02.png │ │ ├── basi3p04.png │ │ ├── basi3p08.png │ │ ├── basi4a08.png │ │ ├── basi4a16.png │ │ ├── basi6a08.png │ │ ├── basi6a16.png │ │ ├── basn0g01.png │ │ ├── basn0g02.png │ │ ├── basn0g04.png │ │ ├── basn0g08.png │ │ ├── basn0g16.png │ │ ├── basn2c08.png │ │ ├── basn2c16.png │ │ ├── basn3p01.png │ │ ├── basn3p02.png │ │ ├── basn3p04.png │ │ ├── basn3p08.png │ │ ├── basn4a08.png │ │ ├── basn4a16.png │ │ ├── basn6a08.png │ │ ├── basn6a16.png │ │ ├── bgai4a08.png │ │ ├── bgai4a16.png │ │ ├── bgan6a08.png │ │ ├── bgan6a16.png │ │ ├── bgbn4a08.png │ │ ├── bggn4a16.png │ │ ├── bgwn6a08.png │ │ ├── bgyn6a16.png │ │ ├── ccwn2c08.png │ │ ├── ccwn3p08.png │ │ ├── cdfn2c08.png │ │ ├── cdhn2c08.png │ │ ├── cdsn2c08.png │ │ ├── cdun2c08.png │ │ ├── ch1n3p04.png │ │ ├── ch2n3p08.png │ │ ├── cm0n0g04.png │ │ ├── cm7n0g04.png │ │ ├── cm9n0g04.png │ │ ├── cs3n2c16.png │ │ ├── cs3n3p08.png │ │ ├── cs5n2c08.png │ │ ├── cs5n3p08.png │ │ ├── cs8n2c08.png │ │ ├── cs8n3p08.png │ │ ├── ct0n0g04.png │ │ ├── ct1n0g04.png │ │ ├── cten0g04.png │ │ ├── ctfn0g04.png │ │ ├── ctgn0g04.png │ │ ├── cthn0g04.png │ │ ├── ctjn0g04.png │ │ ├── ctzn0g04.png │ │ ├── exif2c08.png │ │ ├── f00n0g08.png │ │ ├── f00n2c08.png │ │ ├── f01n0g08.png │ │ ├── f01n2c08.png │ │ ├── f02n0g08.png │ │ ├── f02n2c08.png │ │ ├── f03n0g08.png │ │ ├── f03n2c08.png │ │ ├── f04n0g08.png │ │ ├── f04n2c08.png │ │ ├── f99n0g04.png │ │ ├── g03n0g16.png │ │ ├── g03n2c08.png │ │ ├── g03n3p04.png │ │ ├── g04n0g16.png │ │ ├── g04n2c08.png │ │ ├── g04n3p04.png │ │ ├── g05n0g16.png │ │ ├── g05n2c08.png │ │ ├── g05n3p04.png │ │ ├── g07n0g16.png │ │ ├── g07n2c08.png │ │ ├── g07n3p04.png │ │ ├── g10n0g16.png │ │ ├── g10n2c08.png │ │ ├── g10n3p04.png │ │ ├── g25n0g16.png │ │ ├── g25n2c08.png │ │ ├── g25n3p04.png │ │ ├── oi1n0g16.png │ │ ├── oi1n2c16.png │ │ ├── oi2n0g16.png │ │ ├── oi2n2c16.png │ │ ├── oi4n0g16.png │ │ ├── oi4n2c16.png │ │ ├── oi9n0g16.png │ │ ├── oi9n2c16.png │ │ ├── pp0n2c16.png │ │ ├── pp0n6a08.png │ │ ├── ps1n0g08.png │ │ ├── ps1n2c16.png │ │ ├── ps2n0g08.png │ │ ├── ps2n2c16.png │ │ ├── s01i3p01.png │ │ ├── s01n3p01.png │ │ ├── s02i3p01.png │ │ ├── s02n3p01.png │ │ ├── s03i3p01.png │ │ ├── s03n3p01.png │ │ ├── s04i3p01.png │ │ ├── s04n3p01.png │ │ ├── s05i3p02.png │ │ ├── s05n3p02.png │ │ ├── s06i3p02.png │ │ ├── s06n3p02.png │ │ ├── s07i3p02.png │ │ ├── s07n3p02.png │ │ ├── s08i3p02.png │ │ ├── s08n3p02.png │ │ ├── s09i3p02.png │ │ ├── s09n3p02.png │ │ ├── s32i3p04.png │ │ ├── s32n3p04.png │ │ ├── s33i3p04.png │ │ ├── s33n3p04.png │ │ ├── s34i3p04.png │ │ ├── s34n3p04.png │ │ ├── s35i3p04.png │ │ ├── s35n3p04.png │ │ ├── s36i3p04.png │ │ ├── s36n3p04.png │ │ ├── s37i3p04.png │ │ ├── s37n3p04.png │ │ ├── s38i3p04.png │ │ ├── s38n3p04.png │ │ ├── s39i3p04.png │ │ ├── s39n3p04.png │ │ ├── s40i3p04.png │ │ ├── s40n3p04.png │ │ ├── tbbn0g04.png │ │ ├── tbbn2c16.png │ │ ├── tbbn3p08.png │ │ ├── tbgn2c16.png │ │ ├── tbgn3p08.png │ │ ├── tbrn2c08.png │ │ ├── tbwn0g16.png │ │ ├── tbwn3p08.png │ │ ├── tbyn3p08.png │ │ ├── tm3n3p02.png │ │ ├── tp0n0g08.png │ │ ├── tp0n2c08.png │ │ ├── tp0n3p08.png │ │ ├── tp1n3p08.png │ │ ├── xc1n0g08.png │ │ ├── xc9n2c08.png │ │ ├── xcrn0g04.png │ │ ├── xcsn0g01.png │ │ ├── xd0n2c08.png │ │ ├── xd3n2c08.png │ │ ├── xd9n2c08.png │ │ ├── xdtn0g01.png │ │ ├── xhdn0g08.png │ │ ├── xlfn0g04.png │ │ ├── xs1n0g01.png │ │ ├── xs2n0g01.png │ │ ├── xs4n0g01.png │ │ ├── xs7n0g01.png │ │ ├── z00n2c08.png │ │ ├── z03n2c08.png │ │ ├── z06n2c08.png │ │ └── z09n2c08.png │ ├── rect_clip.pdf │ ├── round_clip.pdf │ ├── svg_image.pdf │ ├── svg_image_alt_text_title.pdf │ ├── svg_image_alt_text_two_pages.pdf │ ├── svg_image_fit_rect.pdf │ ├── svg_image_fixed_dimensions.pdf │ ├── svg_image_from_bytesio.pdf │ ├── svg_image_no_dimensions.pdf │ ├── svg_image_no_viewbox.pdf │ ├── svg_image_style_inherited_from_fpdf.pdf │ ├── svg_image_with_custom_size.pdf │ ├── svg_image_with_custom_size_and_no_viewbox.pdf │ ├── svg_image_with_custom_width.pdf │ ├── svg_image_with_custom_width_and_no_dimensions.pdf │ ├── svg_image_with_custom_width_and_no_viewbox.pdf │ ├── svg_image_with_no_dimensions_and_custom_width.pdf │ ├── test_full_page_image.py │ ├── test_image_align.py │ ├── test_image_clipping.py │ ├── test_image_fit.py │ ├── test_image_info.py │ ├── test_load_image.py │ ├── test_oversized.py │ ├── test_url_images.py │ └── test_vector_image.py ├── ink_annotation.pdf ├── inserting_same_page_link_twice.pdf ├── internal_links.pdf ├── later_call_to_set_link.pdf ├── launch_action.pdf ├── layout │ ├── page_background.pdf │ ├── set_no_margin.pdf │ ├── test_margins.py │ ├── test_page_background.py │ ├── test_units.py │ ├── unit_cm.pdf │ ├── unit_default.pdf │ ├── unit_float.pdf │ ├── unit_in.pdf │ ├── unit_int.pdf │ ├── unit_mm.pdf │ └── unit_pt.pdf ├── link_alt_text.pdf ├── link_border.pdf ├── link_to_other_document.pdf ├── link_with_zoom_and_shift.pdf ├── local_context_font_size_and_header_footer.pdf ├── local_context_inherited_shared_props.pdf ├── local_context_init.pdf ├── local_context_shared_props.pdf ├── metadata │ ├── custom_file_id.pdf │ ├── custom_viewer_preferences.pdf │ ├── default_viewer_preferences.pdf │ ├── layout-alias-continuous.pdf │ ├── layout-alias-default.pdf │ ├── layout-alias-single.pdf │ ├── layout-alias-two.pdf │ ├── metadata_unicode.pdf │ ├── no_file_id.pdf │ ├── page-layout-ONE_COLUMN.pdf │ ├── page-layout-SINGLE_PAGE.pdf │ ├── page-layout-TWO_COLUMN_LEFT.pdf │ ├── page-layout-TWO_COLUMN_RIGHT.pdf │ ├── page-layout-TWO_PAGE_LEFT.pdf │ ├── page-layout-TWO_PAGE_RIGHT.pdf │ ├── page-mode-FULL_SCREEN.pdf │ ├── page-mode-USE_ATTACHMENTS.pdf │ ├── page-mode-USE_NONE.pdf │ ├── page-mode-USE_OC.pdf │ ├── page-mode-USE_OUTLINES.pdf │ ├── page-mode-USE_THUMBS.pdf │ ├── page-mode-zoom_numeric.pdf │ ├── put_info_all.pdf │ ├── put_info_some.pdf │ ├── setting_non_utc_date.pdf │ ├── setting_old_date.pdf │ ├── test_display_mode.py │ ├── test_file_id.py │ ├── test_info.py │ ├── test_set_date.py │ ├── test_viewer_preferences.py │ ├── xmp_metadata.pdf │ ├── xmp_metadata_unicode.pdf │ ├── zoom-default.pdf │ ├── zoom-fullpage.pdf │ ├── zoom-fullwidth.pdf │ └── zoom-real.pdf ├── mirror.pdf ├── mirror_cell.pdf ├── mirror_multi_cell.pdf ├── mirror_text.pdf ├── mirror_with_angle_as_number.pdf ├── multi_cell_skew_text.pdf ├── named_actions.pdf ├── named_destinations.pdf ├── new_page_graphics_state.pdf ├── outline │ ├── 2_pages_outline.pdf │ ├── __init__.py │ ├── footer_leaking_style_on_toc.pdf │ ├── html_toc.pdf │ ├── html_toc_2_pages.pdf │ ├── html_toc_with_custom_rendering.pdf │ ├── html_toc_with_h1_as_2nd_heading.pdf │ ├── insert_toc_placeholder_with_last_page_in_landscape.pdf │ ├── simple_outline.pdf │ ├── test_outline.py │ ├── test_outline_html.py │ ├── test_outline_serializer.py │ ├── test_start_section_horizontal_alignment.pdf │ ├── toc_no_reset_page_indices.pdf │ ├── toc_with_extra_page_0.pdf │ ├── toc_with_extra_page_1.pdf │ ├── toc_with_extra_page_2.pdf │ ├── toc_with_font_style_override_bold1.pdf │ ├── toc_with_font_style_override_bold2.pdf │ ├── toc_with_nb_and_footer.pdf │ ├── toc_with_right_aligned_page_numbers.pdf │ ├── toc_with_russian_heading.pdf │ ├── toc_with_table.pdf │ ├── toc_with_thai_headings.pdf │ └── toc_without_font_style.pdf ├── output_intents │ ├── __init__.py │ ├── sRGB2014.icc │ ├── test_output_intents.py │ ├── text_color_with_one_output_intent.pdf │ ├── text_color_with_one_output_intent_without_optionals.pdf │ ├── text_color_with_two_output_intents.pdf │ └── text_color_without_output_intent.pdf ├── page_label.pdf ├── pattern │ ├── linear_gradient_diagonal.pdf │ ├── linear_gradient_extend.pdf │ ├── linear_gradient_multiple_colors.pdf │ ├── linear_gradient_vertical.pdf │ ├── radial_custom_bounds.pdf │ ├── radial_gradient.pdf │ ├── radial_gradient_multiple_colors.pdf │ ├── test_linear_gradient.py │ └── test_radial_gradient.py ├── pdf-a │ ├── README.md │ ├── basic_pdfa.pdf │ ├── pdfa_1b_transparent_png.pdf │ ├── pdfa_2b_embed_pdf.pdf │ ├── pdfa_2b_transparent_png.pdf │ ├── pdfa_2u_embed_pdf.pdf │ ├── pdfa_2u_transparent_png.pdf │ ├── pdfa_3b_embed_txt.pdf │ ├── pdfa_3b_transparent_png.pdf │ ├── pdfa_3u_embed_txt.pdf │ ├── pdfa_3u_transparent_png.pdf │ ├── pdfa_4_embed_pdf.pdf │ ├── pdfa_4_transparent_png.pdf │ ├── pdfa_4e_embed_csv.pdf │ ├── pdfa_4e_transparent_png.pdf │ ├── pdfa_4f_embed_csv.pdf │ ├── pdfa_fallback_fonts.pdf │ ├── pdfa_image_png.pdf │ ├── test_pdf_a.py │ ├── test_pdf_a_embed.py │ └── test_pdf_a_restrictions.py ├── rotation.pdf ├── shapes │ ├── __init__.py │ ├── bezier_chaining.pdf │ ├── bezier_curve_line_settings.pdf │ ├── circle_draw_color.pdf │ ├── circle_fill_color.pdf │ ├── circle_line_width.pdf │ ├── circle_style.pdf │ ├── class_arc_clockwise.pdf │ ├── class_arc_draw_color.pdf │ ├── class_arc_end_at_center.pdf │ ├── class_arc_fill_color.pdf │ ├── class_arc_inclination.pdf │ ├── class_arc_line_width.pdf │ ├── class_arc_not_circle.pdf │ ├── class_arc_start_from_center.pdf │ ├── class_arc_start_from_center_and_end_at_center.pdf │ ├── class_arc_style.pdf │ ├── class_dash.pdf │ ├── class_ellipse_draw_color.pdf │ ├── class_ellipse_fill_color.pdf │ ├── class_ellipse_line_width.pdf │ ├── class_ellipse_not_circle.pdf │ ├── class_ellipse_style.pdf │ ├── class_line.pdf │ ├── class_rect_draw_color.pdf │ ├── class_rect_fill_color.pdf │ ├── class_rect_line_width.pdf │ ├── class_rect_not_square.pdf │ ├── class_rect_style.pdf │ ├── class_round_corners_rect.pdf │ ├── class_round_corners_rect_conditionals.pdf │ ├── class_round_corners_rect_draw_color.pdf │ ├── class_solid_arc_clockwise.pdf │ ├── class_solid_arc_draw_color.pdf │ ├── class_solid_arc_fill_color.pdf │ ├── class_solid_arc_inclination.pdf │ ├── class_solid_arc_line_width.pdf │ ├── class_solid_arc_not_circle.pdf │ ├── class_solid_arc_style.pdf │ ├── cubic_bezier_curve.pdf │ ├── dash_pattern.pdf │ ├── filled_polygon.pdf │ ├── quadratic_bezier_curve.pdf │ ├── regular_polygon.pdf │ ├── regular_polygon_with_bevel_joins.pdf │ ├── regular_polygon_with_round_joins.pdf │ ├── regular_star.pdf │ ├── round_corners_combined_fix.pdf │ ├── round_corners_draw_only.pdf │ ├── round_corners_fill_no_artifacts.pdf │ ├── round_corners_fill_only.pdf │ ├── round_corners_thick_border.pdf │ ├── test_arc.py │ ├── test_bezier.py │ ├── test_circle.py │ ├── test_dash_pattern.py │ ├── test_ellipse.py │ ├── test_line.py │ ├── test_polyline.py │ ├── test_rectangle.py │ ├── test_regular_polygon.py │ ├── test_round_corners.py │ ├── test_solid_arc.py │ └── test_star.py ├── signing │ ├── README.md │ ├── sign_pkcs12.pdf │ ├── sign_pkcs12_with_link.pdf │ ├── signing-certificate.crt │ ├── signing-certificate.p12 │ └── test_sign.py ├── skew.pdf ├── skew_text.pdf ├── svg │ ├── __init__.py │ ├── generated_pdf │ │ ├── Ghostscript_colorcircle.pdf │ │ ├── Ghostscript_escher.pdf │ │ ├── SVG_logo.pdf │ │ ├── SVG_logo_notransparency.pdf │ │ ├── arcs01-offset.pdf │ │ ├── arcs01.pdf │ │ ├── arcs02.pdf │ │ ├── circle01.pdf │ │ ├── clip_path.pdf │ │ ├── cubic01.pdf │ │ ├── cubic02.pdf │ │ ├── ellipse01.pdf │ │ ├── embedded-raster-images.pdf │ │ ├── gradient_linear.pdf │ │ ├── gradient_multiple.pdf │ │ ├── gradient_opacity.pdf │ │ ├── gradient_radial.pdf │ │ ├── gradient_spread_methods.pdf │ │ ├── issue-1076.pdf │ │ ├── issue_358.pdf │ │ ├── issue_358b.pdf │ │ ├── line01.pdf │ │ ├── ocanada.pdf │ │ ├── path_clippingpath.pdf │ │ ├── polygon01.pdf │ │ ├── polyline01.pdf │ │ ├── quad01.pdf │ │ ├── rect01.pdf │ │ ├── rect02.pdf │ │ ├── rgb-color-issue-480.pdf │ │ ├── search.pdf │ │ ├── shapes_def_test.pdf │ │ ├── simple_rect.pdf │ │ ├── simple_rect_current_color_black_by_default.pdf │ │ ├── simple_rect_current_color_red_fill_draw.pdf │ │ ├── simple_rect_in_a_tag.pdf │ │ ├── svg_rendering_image_over_page_break.pdf │ │ ├── text-samples.pdf │ │ ├── text01.pdf │ │ ├── transforms │ │ │ ├── matrix.pdf │ │ │ ├── multi.pdf │ │ │ ├── rotate.pdf │ │ │ ├── scale.pdf │ │ │ ├── skew.pdf │ │ │ └── translate.pdf │ │ ├── triangle01.pdf │ │ ├── tspan01.pdf │ │ ├── tspan02.pdf │ │ ├── use-image-def.pdf │ │ ├── use-xlink-href.pdf │ │ └── viewbox.pdf │ ├── parameters.py │ ├── svg_sources │ │ ├── Ghostscript_colorcircle.svg │ │ ├── Ghostscript_escher.svg │ │ ├── SVG_logo.svg │ │ ├── SVG_logo_fixed_dimensions.svg │ │ ├── SVG_logo_no_dimensions.svg │ │ ├── arcs01.svg │ │ ├── arcs02.svg │ │ ├── circle01.svg │ │ ├── clip_path.svg │ │ ├── cubic01.svg │ │ ├── cubic02.svg │ │ ├── ellipse01.svg │ │ ├── embedded-raster-images.svg │ │ ├── gradient_linear.svg │ │ ├── gradient_multiple.svg │ │ ├── gradient_opacity.svg │ │ ├── gradient_radial.svg │ │ ├── gradient_spread_methods.svg │ │ ├── issue-1076.svg │ │ ├── issue_358.svg │ │ ├── issue_358b.svg │ │ ├── line01.svg │ │ ├── ocanada.svg │ │ ├── path_clippingpath.svg │ │ ├── polygon01.svg │ │ ├── polyline01.svg │ │ ├── quad01.svg │ │ ├── rect01.svg │ │ ├── rect02.svg │ │ ├── rgb-color-issue-480.svg │ │ ├── search.svg │ │ ├── shapes_def_test.svg │ │ ├── simple_rect.svg │ │ ├── simple_rect_current_color.svg │ │ ├── simple_rect_in_a_tag.svg │ │ ├── simple_rect_no_viewbox.svg │ │ ├── simple_rect_no_viewbox_nor_width_and_height.svg │ │ ├── text-samples.svg │ │ ├── text01.svg │ │ ├── transforms │ │ │ ├── matrix.svg │ │ │ ├── multi.svg │ │ │ ├── rotate.svg │ │ │ ├── scale.svg │ │ │ ├── skew.svg │ │ │ └── translate.svg │ │ ├── triangle01.svg │ │ ├── tspan01.svg │ │ ├── tspan02.svg │ │ ├── unsupported-color.svg │ │ ├── use-image-def.svg │ │ ├── use-xlink-href.svg │ │ └── viewbox.svg │ ├── test_svg.py │ ├── test_svg_gradients.py │ └── test_transform_viewport.py ├── table │ ├── empty_table_with_internal_layout.pdf │ ├── table_align.pdf │ ├── table_capture_font_settings.pdf │ ├── table_cell_fill_mode.pdf │ ├── table_colspan_and_padding.pdf │ ├── table_colspan_and_padding_and_gutter.pdf │ ├── table_colspan_and_padding_and_gutter_and_width.pdf │ ├── table_draw_box_borders.pdf │ ├── table_min_row_height.pdf │ ├── table_padding_per_cell.pdf │ ├── table_page_break_with_table_in_header.pdf │ ├── table_simple.pdf │ ├── table_valign_per_cell.pdf │ ├── table_valign_per_row.pdf │ ├── table_vertical_alignment.pdf │ ├── table_with_cell_fill.pdf │ ├── table_with_cell_fill_custom_class.pdf │ ├── table_with_cell_overflow.pdf │ ├── table_with_cell_overflow_font_setting.pdf │ ├── table_with_colspan.pdf │ ├── table_with_colspan_and_gutter.pdf │ ├── table_with_custom_layout.pdf │ ├── table_with_fill_color_set_beforehand.pdf │ ├── table_with_fixed_col_width.pdf │ ├── table_with_fixed_col_width_and_align.pdf │ ├── table_with_fixed_row_height.pdf │ ├── table_with_fixed_width.pdf │ ├── table_with_gutter.pdf │ ├── table_with_gutter_and_padding_and_outer_border_width.pdf │ ├── table_with_gutter_and_width.pdf │ ├── table_with_heading_style_overrides.pdf │ ├── table_with_headings_styled.pdf │ ├── table_with_image_border_overlap.pdf │ ├── table_with_images.pdf │ ├── table_with_images_and_img_fill_width.pdf │ ├── table_with_images_and_links.pdf │ ├── table_with_internal_layout.pdf │ ├── table_with_links.pdf │ ├── table_with_minimal_layout.pdf │ ├── table_with_minimal_layout_and_multiple_headings.pdf │ ├── table_with_multiline_cells.pdf │ ├── table_with_multiline_cells_and_fixed_row_height.pdf │ ├── table_with_multiline_cells_and_images.pdf │ ├── table_with_multiline_cells_and_images_mixed.pdf │ ├── table_with_multiline_cells_and_images_padding_and_pagebreak.pdf │ ├── table_with_multiline_cells_and_split_over_3_pages.pdf │ ├── table_with_multiline_cells_and_without_headings.pdf │ ├── table_with_multiple_headings_and_no_horizontal_lines.pdf │ ├── table_with_multiple_headings_and_pagebreak.pdf │ ├── table_with_no_headers_nor_horizontal_lines.pdf │ ├── table_with_no_horizontal_lines_layout.pdf │ ├── table_with_only_images.pdf │ ├── table_with_outside_border_width.pdf │ ├── table_with_page_break_and_headings_repeated.pdf │ ├── table_with_page_break_over_image_with_heading.pdf │ ├── table_with_page_break_over_image_without_heading.pdf │ ├── table_with_qrcode.pdf │ ├── table_with_rowspan.pdf │ ├── table_with_rowspan_and_colspan.pdf │ ├── table_with_rowspan_and_pgbreak.pdf │ ├── table_with_rowspan_images.pdf │ ├── table_with_set_fill_color.pdf │ ├── table_with_single_row_of_images.pdf │ ├── table_with_single_top_line_layout.pdf │ ├── table_with_single_top_line_layout_and_multiple_headings.pdf │ ├── table_with_single_top_line_layout_and_page_break.pdf │ ├── table_with_ttf_font.pdf │ ├── table_with_ttf_font_and_headings.pdf │ ├── table_with_varying_col_count.pdf │ ├── table_with_varying_col_widths.pdf │ ├── table_without_headings.pdf │ ├── test_table.py │ ├── test_table_cell_border_all.pdf │ ├── test_table_cell_border_inherit.pdf │ ├── test_table_cell_border_none.pdf │ ├── test_table_cell_different_borders.pdf │ ├── test_table_extraction.py │ ├── test_table_padding.py │ ├── test_table_rowspan.py │ └── test_table_with_image.py ├── template │ ├── __init__.py │ ├── badcolor.json │ ├── badfloat.csv │ ├── badint.csv │ ├── badtype.csv │ ├── badtype.json │ ├── charwrap_test_elements.py │ ├── flextemplate_dashed_elements.pdf │ ├── flextemplate_elements.pdf │ ├── flextemplate_leak.pdf │ ├── flextemplate_multipage.pdf │ ├── flextemplate_multipage_parse_json.pdf │ ├── flextemplate_offset.pdf │ ├── flextemplate_rotation.pdf │ ├── flextemplate_wrapmode.pdf │ ├── mandmissing.csv │ ├── mandmissing.json │ ├── nominal.json │ ├── template_code39.pdf │ ├── template_code39_defaultheight.pdf │ ├── template_definition.csv │ ├── template_definition.json │ ├── template_justify.pdf │ ├── template_multipage.pdf │ ├── template_nominal_csv.pdf │ ├── template_nominal_hardcoded.pdf │ ├── template_qrcode.pdf │ ├── template_rect_background.pdf │ ├── template_textstyles.pdf │ ├── template_wrapmode.pdf │ ├── test_flextemplate.py │ └── test_template.py ├── test_add_page.py ├── test_alias.py ├── test_annotations.py ├── test_embed_file.py ├── test_enums.py ├── test_graphics_context.py ├── test_linearization.py ├── test_links.py ├── test_mirror.py ├── test_named_destinations.py ├── test_opacity.py ├── test_output.py ├── test_page_format.py ├── test_perfs.py ├── test_positioning.py ├── test_recorder.py ├── test_rotation.py ├── test_skew.py ├── test_structure_tree.py ├── test_transitions.py ├── text │ ├── __init__.py │ ├── cell_centering.pdf │ ├── cell_centering_and_align_x.pdf │ ├── cell_curfont_leak.pdf │ ├── cell_lasth.pdf │ ├── cell_ln_newpos.pdf │ ├── cell_markdown.pdf │ ├── cell_markdown_bleeding.pdf │ ├── cell_markdown_bold_italic.pdf │ ├── cell_markdown_bold_italic_escaped.pdf │ ├── cell_markdown_escaped.pdf │ ├── cell_markdown_right_aligned.pdf │ ├── cell_markdown_with_ttf_fonts.pdf │ ├── cell_markdown_with_ttf_fonts_escaped.pdf │ ├── cell_newpos.pdf │ ├── cell_newpos_charspaced.pdf │ ├── cell_newpos_combined.pdf │ ├── cell_newpos_stretched.pdf │ ├── cell_table_unbreakable.pdf │ ├── cell_table_with_pagebreak.pdf │ ├── cell_without_w_nor_h.pdf │ ├── clip_text_modes.pdf │ ├── header_footer_and_use_font_face.pdf │ ├── ln_0.pdf │ ├── ln_1.pdf │ ├── ln_positioning_and_page_breaking_for_cell.pdf │ ├── ln_positioning_and_page_breaking_for_multicell.pdf │ ├── long_text.txt.gz │ ├── multi_cell_align_with_padding.pdf │ ├── multi_cell_align_x.pdf │ ├── multi_cell_border_thickness.pdf │ ├── multi_cell_centering.pdf │ ├── multi_cell_centering_and_align_x.pdf │ ├── multi_cell_char_spacing.pdf │ ├── multi_cell_char_wrap.pdf │ ├── multi_cell_font_leakage.pdf │ ├── multi_cell_font_stretching.pdf │ ├── multi_cell_j_paragraphs.pdf │ ├── multi_cell_justified_with_unicode_font.pdf │ ├── multi_cell_ln_1.pdf │ ├── multi_cell_ln_3.pdf │ ├── multi_cell_ln_3_table.pdf │ ├── multi_cell_ln_newpos.pdf │ ├── multi_cell_markdown.pdf │ ├── multi_cell_markdown_bleeding.pdf │ ├── multi_cell_markdown_escaped.pdf │ ├── multi_cell_markdown_justified.pdf │ ├── multi_cell_markdown_link.pdf │ ├── multi_cell_markdown_strikethrough.pdf │ ├── multi_cell_markdown_with_fill_color.pdf │ ├── multi_cell_markdown_with_ttf_fonts.pdf │ ├── multi_cell_markdown_with_ttf_fonts_escaped.pdf │ ├── multi_cell_newpos.pdf │ ├── multi_cell_newpos_charspaced.pdf │ ├── multi_cell_newpos_combined.pdf │ ├── multi_cell_newpos_stretched.pdf │ ├── multi_cell_page_break_with_fill.pdf │ ├── multi_cell_return_value.pdf │ ├── multi_cell_table_unbreakable.pdf │ ├── multi_cell_table_unbreakable2.pdf │ ├── multi_cell_table_unbreakable_with_split_only.pdf │ ├── multi_cell_table_with_automatic_page_break.pdf │ ├── multi_cell_table_with_max_line_height.pdf │ ├── multi_cell_trailing_nl.pdf │ ├── multi_cell_with_empty_contents.pdf │ ├── multi_cell_with_padding.pdf │ ├── render_styled_newpos.pdf │ ├── table_with_headers_on_every_page.pdf │ ├── test_cell.py │ ├── test_line_break.py │ ├── test_markdown_parse.py │ ├── test_multi_cell.py │ ├── test_multi_cell_markdown.py │ ├── test_render_styled.py │ ├── test_text.py │ ├── test_text_mode.py │ ├── test_unbreakable.py │ ├── test_use_font_face.py │ ├── test_varied_fragments.py │ ├── test_write.py │ ├── text_color.pdf │ ├── text_modes.pdf │ ├── text_positioning.pdf │ ├── text_stretch_spacing.pdf │ ├── text_text_mode.pdf │ ├── varfrags_char_vpos.pdf │ ├── varfrags_fonts.pdf │ ├── varfrags_size_bold.pdf │ ├── varfrags_stretch_spacing.pdf │ ├── varfrags_text_mode.pdf │ ├── write_char_wrap.pdf │ ├── write_font_stretching.pdf │ ├── write_overflow_no_initial_newline.pdf │ ├── write_page_break.pdf │ ├── write_soft_hyphen.pdf │ ├── write_superscript.pdf │ └── write_trailing_nl.pdf ├── text_annotation.pdf ├── text_region │ ├── __init__.py │ ├── paragraph_emphasis.pdf │ ├── paragraph_first_line_indent.pdf │ ├── tcols_3cols.pdf │ ├── tcols_align.pdf │ ├── tcols_balance.pdf │ ├── tcols_break_top_margin.pdf │ ├── tcols_charwrap.pdf │ ├── tcols_images.pdf │ ├── test_text_columns.py │ ├── text_columns_with_shorter_2nd_column.pdf │ └── text_columns_with_text_shaping.pdf ├── text_shaping │ ├── BidiCharacterTest.txt.xz │ ├── BidiTest.txt.xz │ ├── Dumbledor3Thin.ttf │ ├── FiraCode-Regular.ttf │ ├── KFGQPC Uthmanic Script HAFS Regular.otf │ ├── KhmerOS.ttf │ ├── Mangal 400.ttf │ ├── NotoNaskhArabic-Regular.ttf │ ├── SBL_Hbrw.ttf │ ├── ViaodaLibre-Regular.ttf │ ├── __init__.py │ ├── arabic.pdf │ ├── bidi_arabic_lorem_ipsum.pdf │ ├── bidi_get_string_width.pdf │ ├── bidi_paragraph_direction.pdf │ ├── disabling_text_shaping.pdf │ ├── features.pdf │ ├── hebrew_diacritics.pdf │ ├── kerning.pdf │ ├── ligatures.pdf │ ├── multi_cell_markdown_with_styling.pdf │ ├── multilingual_string.pdf │ ├── shaping_hindi.pdf │ ├── test_bidirectional.py │ ├── test_text_shaping.py │ ├── text_mixed_text_shaping.pdf │ ├── text_replacement.pdf │ ├── text_shaping_and_offset_rendering.pdf │ └── text_with_parentheses.pdf ├── transitions.pdf ├── transparency.pdf └── utils │ ├── __init__.py │ ├── test_escape_parens.py │ └── test_unit_conversion.py ├── tox.ini └── tutorial ├── 20k_c1.txt ├── README.md ├── add_new_page_with_pdfrw.py ├── add_new_page_with_pypdf.py ├── add_on_page_with_pdfrw.py ├── add_on_page_with_pypdf.py ├── aztec_code.py ├── code128_barcode.py ├── core_fonts.py ├── countries.txt ├── csv2table.py ├── datamatrix_demo.py ├── datamatrix_method.py ├── equation_google_charts.py ├── equation_matplotlib.py ├── equation_matplotlib_raster.py ├── form.py ├── gif2pdf.py ├── graphics_state.py ├── invoice.csv ├── matplotlib_demo.py ├── matplotlib_pandas.py ├── matplotlib_pandas_df.py ├── md2pdf_markdown.py ├── md2pdf_markdown_it.py ├── md2pdf_mistletoe.py ├── md2pdf_mistletoe_unicode.py ├── md2pdf_mistune.py ├── notebook.ipynb ├── ods2table.py ├── plotly_demo.py ├── plotly_svg.py ├── sRGB2014.icc ├── tuto1.pdf ├── tuto1.py ├── tuto2.pdf ├── tuto2.py ├── tuto3.pdf ├── tuto3.py ├── tuto4.pdf ├── tuto4.py ├── tuto5.pdf ├── tuto5.py ├── tuto6.pdf ├── tuto6.py ├── tuto7.pdf ├── tuto7.py ├── unicode.pdf ├── unicode.py ├── watch_with_livereload.py └── xlsx2table.py /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.banditrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/.banditrc.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/.pylintrc -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/.typos.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/README.md -------------------------------------------------------------------------------- /contributors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/contributors/LICENSE -------------------------------------------------------------------------------- /contributors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/contributors/README.md -------------------------------------------------------------------------------- /contributors/contributors-map-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/contributors/contributors-map-small.png -------------------------------------------------------------------------------- /contributors/contributors.html.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/contributors/contributors.html.jinja2 -------------------------------------------------------------------------------- /contributors/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/contributors/package-lock.json -------------------------------------------------------------------------------- /contributors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/contributors/package.json -------------------------------------------------------------------------------- /contributors/requirements.txt: -------------------------------------------------------------------------------- 1 | agithub 2 | jinja2 3 | -------------------------------------------------------------------------------- /docs/Annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Annotations.md -------------------------------------------------------------------------------- /docs/AztecCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/AztecCode.png -------------------------------------------------------------------------------- /docs/Barcodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Barcodes.md -------------------------------------------------------------------------------- /docs/CombineWithBorb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/CombineWithBorb.md -------------------------------------------------------------------------------- /docs/CombineWithChartingLibs.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/CombineWithLivereload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/CombineWithLivereload.md -------------------------------------------------------------------------------- /docs/CombineWithMarkdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/CombineWithMarkdown.md -------------------------------------------------------------------------------- /docs/CombineWithPdfrw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/CombineWithPdfrw.md -------------------------------------------------------------------------------- /docs/CombineWithPyPDF2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/CombineWithPyPDF2.md -------------------------------------------------------------------------------- /docs/CombineWithPypdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/CombineWithPypdf.md -------------------------------------------------------------------------------- /docs/CombineWithRoughJS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/CombineWithRoughJS.md -------------------------------------------------------------------------------- /docs/DatabaseStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/DatabaseStorage.md -------------------------------------------------------------------------------- /docs/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Development.md -------------------------------------------------------------------------------- /docs/Drawing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Drawing.md -------------------------------------------------------------------------------- /docs/EmojisSymbolsDingbats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/EmojisSymbolsDingbats.md -------------------------------------------------------------------------------- /docs/Encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Encryption.md -------------------------------------------------------------------------------- /docs/FileAttachments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/FileAttachments.md -------------------------------------------------------------------------------- /docs/HTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/HTML.md -------------------------------------------------------------------------------- /docs/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/History.md -------------------------------------------------------------------------------- /docs/Images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Images.md -------------------------------------------------------------------------------- /docs/Internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Internals.md -------------------------------------------------------------------------------- /docs/LineBreaks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/LineBreaks.md -------------------------------------------------------------------------------- /docs/Links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Links.md -------------------------------------------------------------------------------- /docs/Logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Logging.md -------------------------------------------------------------------------------- /docs/Margins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Margins.md -------------------------------------------------------------------------------- /docs/Maths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Maths.md -------------------------------------------------------------------------------- /docs/Metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Metadata.md -------------------------------------------------------------------------------- /docs/NamedDestinations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/NamedDestinations.md -------------------------------------------------------------------------------- /docs/PageBreaks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/PageBreaks.md -------------------------------------------------------------------------------- /docs/PageFormatAndOrientation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/PageFormatAndOrientation.md -------------------------------------------------------------------------------- /docs/PageLabels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/PageLabels.md -------------------------------------------------------------------------------- /docs/Patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Patterns.md -------------------------------------------------------------------------------- /docs/Presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Presentations.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/RenderingSpreadsheetsAsPDFTables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/RenderingSpreadsheetsAsPDFTables.md -------------------------------------------------------------------------------- /docs/RoughJS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/RoughJS.png -------------------------------------------------------------------------------- /docs/SVG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/SVG.md -------------------------------------------------------------------------------- /docs/Shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Shapes.md -------------------------------------------------------------------------------- /docs/Signing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Signing.md -------------------------------------------------------------------------------- /docs/Symbol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Symbol.jpg -------------------------------------------------------------------------------- /docs/Tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tables.md -------------------------------------------------------------------------------- /docs/Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Templates.md -------------------------------------------------------------------------------- /docs/TemplatingWithJinja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/TemplatingWithJinja.md -------------------------------------------------------------------------------- /docs/Text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Text.md -------------------------------------------------------------------------------- /docs/TextColumns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/TextColumns.md -------------------------------------------------------------------------------- /docs/TextRegion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/TextRegion.md -------------------------------------------------------------------------------- /docs/TextShaping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/TextShaping.md -------------------------------------------------------------------------------- /docs/TextStyling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/TextStyling.md -------------------------------------------------------------------------------- /docs/Transformations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Transformations.md -------------------------------------------------------------------------------- /docs/Transparency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Transparency.md -------------------------------------------------------------------------------- /docs/Tutorial-bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-bn.md -------------------------------------------------------------------------------- /docs/Tutorial-de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-de.md -------------------------------------------------------------------------------- /docs/Tutorial-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-es.md -------------------------------------------------------------------------------- /docs/Tutorial-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-fr.md -------------------------------------------------------------------------------- /docs/Tutorial-gr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-gr.md -------------------------------------------------------------------------------- /docs/Tutorial-he.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-he.md -------------------------------------------------------------------------------- /docs/Tutorial-hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-hi.md -------------------------------------------------------------------------------- /docs/Tutorial-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-id.md -------------------------------------------------------------------------------- /docs/Tutorial-it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-it.md -------------------------------------------------------------------------------- /docs/Tutorial-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-ja.md -------------------------------------------------------------------------------- /docs/Tutorial-km.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-km.md -------------------------------------------------------------------------------- /docs/Tutorial-nl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-nl.md -------------------------------------------------------------------------------- /docs/Tutorial-pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-pl.md -------------------------------------------------------------------------------- /docs/Tutorial-pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-pt.md -------------------------------------------------------------------------------- /docs/Tutorial-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-ru.md -------------------------------------------------------------------------------- /docs/Tutorial-sl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-sl.md -------------------------------------------------------------------------------- /docs/Tutorial-tr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-tr.md -------------------------------------------------------------------------------- /docs/Tutorial-ua.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-ua.md -------------------------------------------------------------------------------- /docs/Tutorial-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial-zh.md -------------------------------------------------------------------------------- /docs/Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Tutorial.md -------------------------------------------------------------------------------- /docs/Unicode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/Unicode.md -------------------------------------------------------------------------------- /docs/UsageInWebAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/UsageInWebAPI.md -------------------------------------------------------------------------------- /docs/ZapfDingbats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/ZapfDingbats.jpg -------------------------------------------------------------------------------- /docs/add-unicode-font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/add-unicode-font.png -------------------------------------------------------------------------------- /docs/arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/arc.png -------------------------------------------------------------------------------- /docs/bezier-chaining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/bezier-chaining.png -------------------------------------------------------------------------------- /docs/bezier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/bezier.png -------------------------------------------------------------------------------- /docs/bidi_paragraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/bidi_paragraph.svg -------------------------------------------------------------------------------- /docs/blue_dashed_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/blue_dashed_line.png -------------------------------------------------------------------------------- /docs/char_spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/char_spacing.png -------------------------------------------------------------------------------- /docs/char_vpos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/char_vpos.png -------------------------------------------------------------------------------- /docs/chart-pandas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/chart-pandas.png -------------------------------------------------------------------------------- /docs/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/circle.png -------------------------------------------------------------------------------- /docs/code128_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/code128_barcode.png -------------------------------------------------------------------------------- /docs/code39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/code39.png -------------------------------------------------------------------------------- /docs/color_srgb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/color_srgb.csv -------------------------------------------------------------------------------- /docs/color_srgb.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/color_srgb.ods -------------------------------------------------------------------------------- /docs/color_srgb.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/color_srgb.xlsx -------------------------------------------------------------------------------- /docs/core_fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/core_fonts.png -------------------------------------------------------------------------------- /docs/datamatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/datamatrix.png -------------------------------------------------------------------------------- /docs/diagonal_mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/diagonal_mirror.png -------------------------------------------------------------------------------- /docs/document-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/document-outline.png -------------------------------------------------------------------------------- /docs/drawing/demo-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/drawing/demo-1.pdf -------------------------------------------------------------------------------- /docs/drawing/demo-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/drawing/demo-1.webp -------------------------------------------------------------------------------- /docs/drawing/demo-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/drawing/demo-2.pdf -------------------------------------------------------------------------------- /docs/drawing/demo-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/drawing/demo-2.webp -------------------------------------------------------------------------------- /docs/drawing/demo-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/drawing/demo-3.pdf -------------------------------------------------------------------------------- /docs/drawing/demo-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/drawing/demo-3.webp -------------------------------------------------------------------------------- /docs/drawing/demo-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/drawing/demo-4.pdf -------------------------------------------------------------------------------- /docs/drawing/demo-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/drawing/demo-4.webp -------------------------------------------------------------------------------- /docs/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/ellipse.png -------------------------------------------------------------------------------- /docs/equation-with-gcharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/equation-with-gcharts.png -------------------------------------------------------------------------------- /docs/equation-with-matplotlib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/equation-with-matplotlib.png -------------------------------------------------------------------------------- /docs/file_attachment_annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/file_attachment_annotation.png -------------------------------------------------------------------------------- /docs/font_stretching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/font_stretching.png -------------------------------------------------------------------------------- /docs/fpdf2-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/fpdf2-logo.png -------------------------------------------------------------------------------- /docs/free-text-annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/free-text-annotation.png -------------------------------------------------------------------------------- /docs/graphics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/graphics.svg -------------------------------------------------------------------------------- /docs/graphics_svg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/graphics_svg.pdf -------------------------------------------------------------------------------- /docs/highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/highlighted.png -------------------------------------------------------------------------------- /docs/horizontal_mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/horizontal_mirror.png -------------------------------------------------------------------------------- /docs/image-clipping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/image-clipping.png -------------------------------------------------------------------------------- /docs/image-colspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/image-colspan.png -------------------------------------------------------------------------------- /docs/image-rowspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/image-rowspan.png -------------------------------------------------------------------------------- /docs/img_table_padding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/img_table_padding.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/ink_annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/ink_annotation.png -------------------------------------------------------------------------------- /docs/interleaved2of5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/interleaved2of5.png -------------------------------------------------------------------------------- /docs/markdown-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/markdown-style.png -------------------------------------------------------------------------------- /docs/markdown2pdf_unicode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/markdown2pdf_unicode.png -------------------------------------------------------------------------------- /docs/matplotlib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/matplotlib.png -------------------------------------------------------------------------------- /docs/orange_plain_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/orange_plain_line.png -------------------------------------------------------------------------------- /docs/overrides/.hooks/log_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/overrides/.hooks/log_manager.py -------------------------------------------------------------------------------- /docs/overrides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/overrides/README.md -------------------------------------------------------------------------------- /docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/page-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/page-labels.png -------------------------------------------------------------------------------- /docs/pattern_linear_demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/pattern_linear_demo.pdf -------------------------------------------------------------------------------- /docs/pattern_radial_demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/pattern_radial_demo.pdf -------------------------------------------------------------------------------- /docs/pdf-text-modes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/pdf-text-modes.jpg -------------------------------------------------------------------------------- /docs/pdf417.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/pdf417.png -------------------------------------------------------------------------------- /docs/pdfa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/pdfa.md -------------------------------------------------------------------------------- /docs/pdfchecker-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/pdfchecker-logo.png -------------------------------------------------------------------------------- /docs/pdoc/config.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/pdoc/config.mako -------------------------------------------------------------------------------- /docs/plotly_png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/plotly_png.png -------------------------------------------------------------------------------- /docs/plotly_svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/plotly_svg.png -------------------------------------------------------------------------------- /docs/plugins/check_toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/plugins/check_toc.py -------------------------------------------------------------------------------- /docs/polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/polygon.png -------------------------------------------------------------------------------- /docs/pygal_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/pygal_chart.png -------------------------------------------------------------------------------- /docs/pygal_chart_cairo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/pygal_chart_cairo.png -------------------------------------------------------------------------------- /docs/qpdf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/qpdf-logo.svg -------------------------------------------------------------------------------- /docs/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/qrcode.png -------------------------------------------------------------------------------- /docs/regular_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/regular_polygon.png -------------------------------------------------------------------------------- /docs/regular_polygon_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/regular_polygon_rounded.png -------------------------------------------------------------------------------- /docs/rotation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/rotation.jpg -------------------------------------------------------------------------------- /docs/round_corners_rectangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/round_corners_rectangles.png -------------------------------------------------------------------------------- /docs/signature-valid-in-acrobat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/signature-valid-in-acrobat.png -------------------------------------------------------------------------------- /docs/slanted_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/slanted_circle.png -------------------------------------------------------------------------------- /docs/solid_arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/solid_arc.png -------------------------------------------------------------------------------- /docs/squares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/squares.png -------------------------------------------------------------------------------- /docs/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/star.png -------------------------------------------------------------------------------- /docs/symbol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/symbol.pdf -------------------------------------------------------------------------------- /docs/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/symbol.py -------------------------------------------------------------------------------- /docs/table-from-spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table-from-spreadsheet.png -------------------------------------------------------------------------------- /docs/table-pandas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table-pandas.png -------------------------------------------------------------------------------- /docs/table-simple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table-simple.jpg -------------------------------------------------------------------------------- /docs/table-styled-override.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table-styled-override.jpg -------------------------------------------------------------------------------- /docs/table-styled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table-styled.jpg -------------------------------------------------------------------------------- /docs/table-with-cells-filled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table-with-cells-filled.jpg -------------------------------------------------------------------------------- /docs/table-with-cells-filled2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table-with-cells-filled2.jpg -------------------------------------------------------------------------------- /docs/table-with-custom-border-layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table-with-custom-border-layout.jpg -------------------------------------------------------------------------------- /docs/table-with-fixed-column-widths.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table-with-fixed-column-widths.jpg -------------------------------------------------------------------------------- /docs/table_align.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table_align.jpg -------------------------------------------------------------------------------- /docs/table_with_cell_border_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table_with_cell_border_left.jpg -------------------------------------------------------------------------------- /docs/table_with_cell_border_left_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table_with_cell_border_left_top.jpg -------------------------------------------------------------------------------- /docs/table_with_cell_border_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table_with_cell_border_top.jpg -------------------------------------------------------------------------------- /docs/table_with_gutter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table_with_gutter.jpg -------------------------------------------------------------------------------- /docs/table_with_images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table_with_images.jpg -------------------------------------------------------------------------------- /docs/table_with_internal_layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table_with_internal_layout.jpg -------------------------------------------------------------------------------- /docs/table_with_minimal_layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table_with_minimal_layout.jpg -------------------------------------------------------------------------------- /docs/table_with_multiple_headings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/table_with_multiple_headings.png -------------------------------------------------------------------------------- /docs/tcols-balanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/tcols-balanced.png -------------------------------------------------------------------------------- /docs/tcols-paragraphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/tcols-paragraphs.png -------------------------------------------------------------------------------- /docs/tcols-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/tcols-single.png -------------------------------------------------------------------------------- /docs/tcols-three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/tcols-three.png -------------------------------------------------------------------------------- /docs/text-annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/text-annotation.png -------------------------------------------------------------------------------- /docs/text-modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/text-modes.png -------------------------------------------------------------------------------- /docs/text-shaping-kerning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/text-shaping-kerning.png -------------------------------------------------------------------------------- /docs/text-shaping-ligatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/text-shaping-ligatures.png -------------------------------------------------------------------------------- /docs/text-shaping-substitution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/text-shaping-substitution.png -------------------------------------------------------------------------------- /docs/transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/transparency.png -------------------------------------------------------------------------------- /docs/unicode_range_color_emojis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/unicode_range_color_emojis.png -------------------------------------------------------------------------------- /docs/vera-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/vera-logo.jpg -------------------------------------------------------------------------------- /docs/vertical_mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/vertical_mirror.png -------------------------------------------------------------------------------- /docs/x_axis_skewed_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/x_axis_skewed_text.png -------------------------------------------------------------------------------- /docs/y_axis_skewed_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/y_axis_skewed_text.png -------------------------------------------------------------------------------- /docs/zapfdingbats.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/zapfdingbats.pdf -------------------------------------------------------------------------------- /docs/zapfdingbats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/docs/zapfdingbats.py -------------------------------------------------------------------------------- /fpdf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/__init__.py -------------------------------------------------------------------------------- /fpdf/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/actions.py -------------------------------------------------------------------------------- /fpdf/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/annotations.py -------------------------------------------------------------------------------- /fpdf/bidi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/bidi.py -------------------------------------------------------------------------------- /fpdf/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fpdf/data/color_profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fpdf/data/color_profiles/sRGB2014.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/data/color_profiles/sRGB2014.icc -------------------------------------------------------------------------------- /fpdf/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/deprecation.py -------------------------------------------------------------------------------- /fpdf/drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/drawing.py -------------------------------------------------------------------------------- /fpdf/drawing_primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/drawing_primitives.py -------------------------------------------------------------------------------- /fpdf/encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/encryption.py -------------------------------------------------------------------------------- /fpdf/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/enums.py -------------------------------------------------------------------------------- /fpdf/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/errors.py -------------------------------------------------------------------------------- /fpdf/font_type_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/font_type_3.py -------------------------------------------------------------------------------- /fpdf/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/fonts.py -------------------------------------------------------------------------------- /fpdf/fpdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/fpdf.py -------------------------------------------------------------------------------- /fpdf/graphics_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/graphics_state.py -------------------------------------------------------------------------------- /fpdf/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/html.py -------------------------------------------------------------------------------- /fpdf/image_datastructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/image_datastructures.py -------------------------------------------------------------------------------- /fpdf/image_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/image_parsing.py -------------------------------------------------------------------------------- /fpdf/line_break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/line_break.py -------------------------------------------------------------------------------- /fpdf/linearization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/linearization.py -------------------------------------------------------------------------------- /fpdf/outline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/outline.py -------------------------------------------------------------------------------- /fpdf/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/output.py -------------------------------------------------------------------------------- /fpdf/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/pattern.py -------------------------------------------------------------------------------- /fpdf/prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/prefs.py -------------------------------------------------------------------------------- /fpdf/recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/recorder.py -------------------------------------------------------------------------------- /fpdf/sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/sign.py -------------------------------------------------------------------------------- /fpdf/structure_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/structure_tree.py -------------------------------------------------------------------------------- /fpdf/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/svg.py -------------------------------------------------------------------------------- /fpdf/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/syntax.py -------------------------------------------------------------------------------- /fpdf/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/table.py -------------------------------------------------------------------------------- /fpdf/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/template.py -------------------------------------------------------------------------------- /fpdf/text_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/text_region.py -------------------------------------------------------------------------------- /fpdf/transitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/transitions.py -------------------------------------------------------------------------------- /fpdf/unicode_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/unicode_script.py -------------------------------------------------------------------------------- /fpdf/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/fpdf/util.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scripts/add_pdoc_to_search_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/add_pdoc_to_search_index.py -------------------------------------------------------------------------------- /scripts/benchmark_borb_vs_fpdf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/benchmark_borb_vs_fpdf2.py -------------------------------------------------------------------------------- /scripts/changed_pdfs_comparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/changed_pdfs_comparison.html -------------------------------------------------------------------------------- /scripts/check-PDF-A-with-verapdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/check-PDF-A-with-verapdf.sh -------------------------------------------------------------------------------- /scripts/checker_commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/checker_commons.py -------------------------------------------------------------------------------- /scripts/compare-changed-pdfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/compare-changed-pdfs.py -------------------------------------------------------------------------------- /scripts/create-endesive-certificates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/create-endesive-certificates.sh -------------------------------------------------------------------------------- /scripts/generate-dependencies-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/generate-dependencies-list.py -------------------------------------------------------------------------------- /scripts/install-pdfchecker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/install-pdfchecker.sh -------------------------------------------------------------------------------- /scripts/install-verapdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/install-verapdf.sh -------------------------------------------------------------------------------- /scripts/pdfchecker-ignore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/pdfchecker-ignore.json -------------------------------------------------------------------------------- /scripts/pdfchecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/pdfchecker.py -------------------------------------------------------------------------------- /scripts/show_html_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/show_html_coverage.sh -------------------------------------------------------------------------------- /scripts/update_pypi_interactive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/update_pypi_interactive.sh -------------------------------------------------------------------------------- /scripts/verapdf-ignore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/verapdf-ignore.json -------------------------------------------------------------------------------- /scripts/verapdf.properties: -------------------------------------------------------------------------------- 1 | INSTALL_PATH=/tmp/verapdf 2 | -------------------------------------------------------------------------------- /scripts/verapdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/scripts/verapdf.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/add_page_duration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/add_page_duration.pdf -------------------------------------------------------------------------------- /test/add_page_format.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/add_page_format.pdf -------------------------------------------------------------------------------- /test/alias_nb_pages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/alias_nb_pages.pdf -------------------------------------------------------------------------------- /test/alias_with_text_shaping.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/alias_with_text_shaping.pdf -------------------------------------------------------------------------------- /test/barcodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/barcodes/barcodes_code39.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/barcodes/barcodes_code39.pdf -------------------------------------------------------------------------------- /test/barcodes/test_barcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/barcodes/test_barcodes.py -------------------------------------------------------------------------------- /test/break_or_add_page.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/break_or_add_page.pdf -------------------------------------------------------------------------------- /test/break_or_add_page_draw_fill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/break_or_add_page_draw_fill.pdf -------------------------------------------------------------------------------- /test/cell_skew_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/cell_skew_text.pdf -------------------------------------------------------------------------------- /test/color_font/Compyx-Regular-SBIX.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/Compyx-Regular-SBIX.ttf -------------------------------------------------------------------------------- /test/color_font/NotoColorEmoji-CBDT.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/NotoColorEmoji-CBDT.ttf -------------------------------------------------------------------------------- /test/color_font/Twemoji.Mozilla.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/Twemoji.Mozilla.ttf -------------------------------------------------------------------------------- /test/color_font/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/color_font/cbdt_noto_emoji_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/cbdt_noto_emoji_text.pdf -------------------------------------------------------------------------------- /test/color_font/colrv0-twemoji.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/colrv0-twemoji.pdf -------------------------------------------------------------------------------- /test/color_font/colrv0-twemoji_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/colrv0-twemoji_text.pdf -------------------------------------------------------------------------------- /test/color_font/colrv1_bungee.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/colrv1_bungee.pdf -------------------------------------------------------------------------------- /test/color_font/colrv1_nabla.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/colrv1_nabla.pdf -------------------------------------------------------------------------------- /test/color_font/out_of_range_palette.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/out_of_range_palette.pdf -------------------------------------------------------------------------------- /test/color_font/palette_defaults.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/palette_defaults.pdf -------------------------------------------------------------------------------- /test/color_font/sbix_bungee.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/sbix_bungee.pdf -------------------------------------------------------------------------------- /test/color_font/sbix_compyx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/sbix_compyx.pdf -------------------------------------------------------------------------------- /test/color_font/svg_bungee.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/svg_bungee.pdf -------------------------------------------------------------------------------- /test/color_font/svg_gilbert.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/svg_gilbert.pdf -------------------------------------------------------------------------------- /test/color_font/test_cbdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/test_cbdt.py -------------------------------------------------------------------------------- /test/color_font/test_colr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/test_colr.py -------------------------------------------------------------------------------- /test/color_font/test_sbix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/test_sbix.py -------------------------------------------------------------------------------- /test/color_font/test_svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/color_font/test_svg.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/drawing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/drawing/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/drawing/parameters.py -------------------------------------------------------------------------------- /test/drawing/test_bounding_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/drawing/test_bounding_boxes.py -------------------------------------------------------------------------------- /test/drawing/test_compositing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/drawing/test_compositing.py -------------------------------------------------------------------------------- /test/drawing/test_drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/drawing/test_drawing.py -------------------------------------------------------------------------------- /test/drawing/test_drawing_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/drawing/test_drawing_text.py -------------------------------------------------------------------------------- /test/drawing/test_gradient_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/drawing/test_gradient_fill.py -------------------------------------------------------------------------------- /test/embed_file_all_optionals.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/embed_file_all_optionals.pdf -------------------------------------------------------------------------------- /test/embed_file_from_bytes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/embed_file_from_bytes.pdf -------------------------------------------------------------------------------- /test/embed_file_self.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/embed_file_self.pdf -------------------------------------------------------------------------------- /test/encryption/encrypt_fonts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/encryption/encrypt_fonts.pdf -------------------------------------------------------------------------------- /test/encryption/encrypt_metadata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/encryption/encrypt_metadata.pdf -------------------------------------------------------------------------------- /test/encryption/encrypt_outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/encryption/encrypt_outline.pdf -------------------------------------------------------------------------------- /test/encryption/encryption_aes128.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/encryption/encryption_aes128.pdf -------------------------------------------------------------------------------- /test/encryption/encryption_aes256.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/encryption/encryption_aes256.pdf -------------------------------------------------------------------------------- /test/encryption/encryption_rc4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/encryption/encryption_rc4.pdf -------------------------------------------------------------------------------- /test/encryption/encryption_unicode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/encryption/encryption_unicode.pdf -------------------------------------------------------------------------------- /test/encryption/no_encryption.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/encryption/no_encryption.pdf -------------------------------------------------------------------------------- /test/encryption/test_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/encryption/test_encryption.py -------------------------------------------------------------------------------- /test/errors/__init__.py: -------------------------------------------------------------------------------- 1 | """This package contains error tests""" 2 | -------------------------------------------------------------------------------- /test/errors/flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/errors/flowers.png -------------------------------------------------------------------------------- /test/errors/test_FPDF_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/errors/test_FPDF_errors.py -------------------------------------------------------------------------------- /test/errors/test_deprecation_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/errors/test_deprecation_warnings.py -------------------------------------------------------------------------------- /test/file_attachment_annotation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/file_attachment_annotation.pdf -------------------------------------------------------------------------------- /test/fonts/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /test/fonts/DejaVuSans-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/DejaVuSans-BoldOblique.ttf -------------------------------------------------------------------------------- /test/fonts/DejaVuSans-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/DejaVuSans-Oblique.ttf -------------------------------------------------------------------------------- /test/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /test/fonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /test/fonts/DroidSansFallback.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/DroidSansFallback.ttf -------------------------------------------------------------------------------- /test/fonts/Garuda.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/Garuda.ttf -------------------------------------------------------------------------------- /test/fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /test/fonts/Quicksand-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/Quicksand-Bold.otf -------------------------------------------------------------------------------- /test/fonts/Quicksand-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/Quicksand-Italic.otf -------------------------------------------------------------------------------- /test/fonts/Quicksand-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/Quicksand-Regular.otf -------------------------------------------------------------------------------- /test/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/README.md -------------------------------------------------------------------------------- /test/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /test/fonts/Roboto-BoldItalic.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/Roboto-BoldItalic.TTF -------------------------------------------------------------------------------- /test/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /test/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /test/fonts/Roboto-Variable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/Roboto-Variable.ttf -------------------------------------------------------------------------------- /test/fonts/TwitterEmoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/TwitterEmoji.ttf -------------------------------------------------------------------------------- /test/fonts/Waree.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/Waree.ttf -------------------------------------------------------------------------------- /test/fonts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fonts/add_font_unicode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/add_font_unicode.pdf -------------------------------------------------------------------------------- /test/fonts/cmss12.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/cmss12.ttf -------------------------------------------------------------------------------- /test/fonts/emoji_restricted_range.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/emoji_restricted_range.pdf -------------------------------------------------------------------------------- /test/fonts/fallback_font.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/fallback_font.pdf -------------------------------------------------------------------------------- /test/fonts/fonts_emoji_glyph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/fonts_emoji_glyph.pdf -------------------------------------------------------------------------------- /test/fonts/fonts_issue_66.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/fonts_issue_66.pdf -------------------------------------------------------------------------------- /test/fonts/fonts_otf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/fonts_otf.pdf -------------------------------------------------------------------------------- /test/fonts/fonts_remap_nb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/fonts_remap_nb.pdf -------------------------------------------------------------------------------- /test/fonts/fonts_set_builtin_font.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/fonts_set_builtin_font.pdf -------------------------------------------------------------------------------- /test/fonts/fonts_two_mappings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/fonts_two_mappings.pdf -------------------------------------------------------------------------------- /test/fonts/markdown_unicode_range.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/markdown_unicode_range.pdf -------------------------------------------------------------------------------- /test/fonts/multi_cell_unicode_range.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/multi_cell_unicode_range.pdf -------------------------------------------------------------------------------- /test/fonts/multiple_emoji_fonts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/multiple_emoji_fonts.pdf -------------------------------------------------------------------------------- /test/fonts/render_en_dash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/render_en_dash.pdf -------------------------------------------------------------------------------- /test/fonts/specialized_punctuation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/specialized_punctuation.pdf -------------------------------------------------------------------------------- /test/fonts/test_add_font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/test_add_font.py -------------------------------------------------------------------------------- /test/fonts/test_charmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/test_charmap.py -------------------------------------------------------------------------------- /test/fonts/test_combine_fontface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/test_combine_fontface.py -------------------------------------------------------------------------------- /test/fonts/test_font_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/test_font_fallback.py -------------------------------------------------------------------------------- /test/fonts/test_font_internals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/test_font_internals.py -------------------------------------------------------------------------------- /test/fonts/test_font_remap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/test_font_remap.py -------------------------------------------------------------------------------- /test/fonts/test_set_font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/test_set_font.py -------------------------------------------------------------------------------- /test/fonts/test_unicode_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/test_unicode_range.py -------------------------------------------------------------------------------- /test/fonts/test_unused_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/test_unused_fonts.py -------------------------------------------------------------------------------- /test/fonts/test_variable_font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/test_variable_font.py -------------------------------------------------------------------------------- /test/fonts/test_wraps_zerowidthspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/test_wraps_zerowidthspace.py -------------------------------------------------------------------------------- /test/fonts/thai_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/thai_text.pdf -------------------------------------------------------------------------------- /test/fonts/thai_wraps_zerowidthspace.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/thai_wraps_zerowidthspace.pdf -------------------------------------------------------------------------------- /test/fonts/unicode_range_combining.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/fonts/unicode_range_combining.pdf -------------------------------------------------------------------------------- /test/goto_action.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/goto_action.pdf -------------------------------------------------------------------------------- /test/goto_action_named_destination.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/goto_action_named_destination.pdf -------------------------------------------------------------------------------- /test/goto_remote_action.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/goto_remote_action.pdf -------------------------------------------------------------------------------- /test/graphics_context.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/graphics_context.pdf -------------------------------------------------------------------------------- /test/highlighted.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/highlighted.pdf -------------------------------------------------------------------------------- /test/highlighted_over_page_break.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/highlighted_over_page_break.pdf -------------------------------------------------------------------------------- /test/html/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/html/html_align_paragraph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_align_paragraph.pdf -------------------------------------------------------------------------------- /test/html/html_blockquote_color.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_blockquote_color.pdf -------------------------------------------------------------------------------- /test/html/html_blockquote_indent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_blockquote_indent.pdf -------------------------------------------------------------------------------- /test/html/html_bold_italic_underline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_bold_italic_underline.pdf -------------------------------------------------------------------------------- /test/html/html_custom_heading_sizes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_custom_heading_sizes.pdf -------------------------------------------------------------------------------- /test/html/html_custom_line_height.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_custom_line_height.pdf -------------------------------------------------------------------------------- /test/html/html_custom_pre_code_font.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_custom_pre_code_font.pdf -------------------------------------------------------------------------------- /test/html/html_customize_ul.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_customize_ul.pdf -------------------------------------------------------------------------------- /test/html/html_description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_description.pdf -------------------------------------------------------------------------------- /test/html/html_features.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_features.pdf -------------------------------------------------------------------------------- /test/html/html_font_color_name.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_font_color_name.pdf -------------------------------------------------------------------------------- /test/html/html_font_family.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_font_family.pdf -------------------------------------------------------------------------------- /test/html/html_font_tag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_font_tag.pdf -------------------------------------------------------------------------------- /test/html/html_format_within_p.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_format_within_p.pdf -------------------------------------------------------------------------------- /test/html/html_heading_above_below.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_heading_above_below.pdf -------------------------------------------------------------------------------- /test/html/html_heading_hebrew.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_heading_hebrew.pdf -------------------------------------------------------------------------------- /test/html/html_headings_color.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_headings_color.pdf -------------------------------------------------------------------------------- /test/html/html_headings_line_height.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_headings_line_height.pdf -------------------------------------------------------------------------------- /test/html/html_images.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_images.pdf -------------------------------------------------------------------------------- /test/html/html_img_not_overlapping.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_img_not_overlapping.pdf -------------------------------------------------------------------------------- /test/html/html_li_prefix_color.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_li_prefix_color.pdf -------------------------------------------------------------------------------- /test/html/html_li_tag_indent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_li_tag_indent.pdf -------------------------------------------------------------------------------- /test/html/html_link_style.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_link_style.pdf -------------------------------------------------------------------------------- /test/html/html_link_underline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_link_underline.pdf -------------------------------------------------------------------------------- /test/html/html_list_vertical_margin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_list_vertical_margin.pdf -------------------------------------------------------------------------------- /test/html/html_list_with_custom_font.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_list_with_custom_font.pdf -------------------------------------------------------------------------------- /test/html/html_ln_outside_p.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_ln_outside_p.pdf -------------------------------------------------------------------------------- /test/html/html_long_list_entries.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_long_list_entries.pdf -------------------------------------------------------------------------------- /test/html/html_long_ol_bullets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_long_ol_bullets.pdf -------------------------------------------------------------------------------- /test/html/html_measurement_units.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_measurement_units.pdf -------------------------------------------------------------------------------- /test/html/html_ol_nested_in_ul.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_ol_nested_in_ul.pdf -------------------------------------------------------------------------------- /test/html/html_ol_start_and_type.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_ol_start_and_type.pdf -------------------------------------------------------------------------------- /test/html/html_ol_ul_line_height.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_ol_ul_line_height.pdf -------------------------------------------------------------------------------- /test/html/html_page_break_after.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_page_break_after.pdf -------------------------------------------------------------------------------- /test/html/html_page_break_before.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_page_break_before.pdf -------------------------------------------------------------------------------- /test/html/html_sections.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_sections.pdf -------------------------------------------------------------------------------- /test/html/html_strikethrough.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_strikethrough.pdf -------------------------------------------------------------------------------- /test/html/html_superscript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_superscript.pdf -------------------------------------------------------------------------------- /test/html/html_table_honoring_align.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_table_honoring_align.pdf -------------------------------------------------------------------------------- /test/html/html_table_line_separators.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_table_line_separators.pdf -------------------------------------------------------------------------------- /test/html/html_table_simple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_table_simple.pdf -------------------------------------------------------------------------------- /test/html/html_table_with_bgcolor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_table_with_bgcolor.pdf -------------------------------------------------------------------------------- /test/html/html_table_with_border.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_table_with_border.pdf -------------------------------------------------------------------------------- /test/html/html_table_with_img.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_table_with_img.pdf -------------------------------------------------------------------------------- /test/html/html_table_with_only_tds.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_table_with_only_tds.pdf -------------------------------------------------------------------------------- /test/html/html_title.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_title.pdf -------------------------------------------------------------------------------- /test/html/html_title_duplicated.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_title_duplicated.pdf -------------------------------------------------------------------------------- /test/html/html_title_in_body.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_title_in_body.pdf -------------------------------------------------------------------------------- /test/html/html_ul_type.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_ul_type.pdf -------------------------------------------------------------------------------- /test/html/html_whitespace_handling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/html_whitespace_handling.pdf -------------------------------------------------------------------------------- /test/html/issue_156.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/issue_156.pdf -------------------------------------------------------------------------------- /test/html/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/test_html.py -------------------------------------------------------------------------------- /test/html/test_html_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/html/test_html_table.py -------------------------------------------------------------------------------- /test/hyperlinks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/hyperlinks.pdf -------------------------------------------------------------------------------- /test/image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/__init__.py -------------------------------------------------------------------------------- /test/image/elliptic_clip.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/elliptic_clip.pdf -------------------------------------------------------------------------------- /test/image/full_height_image.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/full_height_image.pdf -------------------------------------------------------------------------------- /test/image/full_pdf_height_image.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/full_pdf_height_image.pdf -------------------------------------------------------------------------------- /test/image/full_pdf_width_image.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/full_pdf_width_image.pdf -------------------------------------------------------------------------------- /test/image/full_width_image.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/full_width_image.pdf -------------------------------------------------------------------------------- /test/image/image_fit_in_rect.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/image_fit_in_rect.pdf -------------------------------------------------------------------------------- /test/image/image_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/image_info.json -------------------------------------------------------------------------------- /test/image/image_png_url.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/image_png_url.pdf -------------------------------------------------------------------------------- /test/image/image_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/image_types/__init__.py -------------------------------------------------------------------------------- /test/image/image_types/circle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/image_types/circle.bmp -------------------------------------------------------------------------------- /test/image/image_types/circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/image_types/circle.gif -------------------------------------------------------------------------------- /test/image/image_types/pythonknight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/image_types/pythonknight.png -------------------------------------------------------------------------------- /test/image/image_types/test.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/image_types/test.tiff -------------------------------------------------------------------------------- /test/image/image_x_align_center.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/image_x_align_center.pdf -------------------------------------------------------------------------------- /test/image/image_x_align_right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/image_x_align_right.pdf -------------------------------------------------------------------------------- /test/image/load_base64_data.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/load_base64_data.pdf -------------------------------------------------------------------------------- /test/image/png_images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_images/README.md -------------------------------------------------------------------------------- /test/image/png_images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/image/png_images/test_png_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_images/test_png_file.py -------------------------------------------------------------------------------- /test/image/png_indexed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/image/png_indexed/flower1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_indexed/flower1.png -------------------------------------------------------------------------------- /test/image/png_indexed/flower2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_indexed/flower2.png -------------------------------------------------------------------------------- /test/image/png_indexed/flower3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_indexed/flower3.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi0g01.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi0g02.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi0g04.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi0g08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi0g16.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi2c08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi2c16.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi3p01.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi3p02.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi3p04.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi3p08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi4a08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi4a16.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi6a08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basi6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basi6a16.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn0g01.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn0g02.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn0g04.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn0g08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn0g16.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn2c08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn2c16.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn3p01.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn3p02.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn3p04.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn3p08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn4a08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn4a16.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn6a08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/basn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/basn6a16.png -------------------------------------------------------------------------------- /test/image/png_test_suite/bgai4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/bgai4a08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/bgai4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/bgai4a16.png -------------------------------------------------------------------------------- /test/image/png_test_suite/bgan6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/bgan6a08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/bgan6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/bgan6a16.png -------------------------------------------------------------------------------- /test/image/png_test_suite/bgbn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/bgbn4a08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/bggn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/bggn4a16.png -------------------------------------------------------------------------------- /test/image/png_test_suite/bgwn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/bgwn6a08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/bgyn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/bgyn6a16.png -------------------------------------------------------------------------------- /test/image/png_test_suite/ccwn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/ccwn2c08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/ccwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/ccwn3p08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/cdfn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/cdfn2c08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/cdhn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/cdhn2c08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/cdsn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/cdsn2c08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/cdun2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/cdun2c08.png -------------------------------------------------------------------------------- /test/image/png_test_suite/ch1n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/ch1n3p04.png -------------------------------------------------------------------------------- /test/image/png_test_suite/ch2n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/png_test_suite/ch2n3p08.png -------------------------------------------------------------------------------- /test/image/rect_clip.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/rect_clip.pdf -------------------------------------------------------------------------------- /test/image/round_clip.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/round_clip.pdf -------------------------------------------------------------------------------- /test/image/svg_image.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/svg_image.pdf -------------------------------------------------------------------------------- /test/image/svg_image_fit_rect.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/svg_image_fit_rect.pdf -------------------------------------------------------------------------------- /test/image/svg_image_from_bytesio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/svg_image_from_bytesio.pdf -------------------------------------------------------------------------------- /test/image/svg_image_no_viewbox.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/svg_image_no_viewbox.pdf -------------------------------------------------------------------------------- /test/image/test_full_page_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/test_full_page_image.py -------------------------------------------------------------------------------- /test/image/test_image_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/test_image_align.py -------------------------------------------------------------------------------- /test/image/test_image_clipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/test_image_clipping.py -------------------------------------------------------------------------------- /test/image/test_image_fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/test_image_fit.py -------------------------------------------------------------------------------- /test/image/test_image_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/test_image_info.py -------------------------------------------------------------------------------- /test/image/test_load_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/test_load_image.py -------------------------------------------------------------------------------- /test/image/test_oversized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/test_oversized.py -------------------------------------------------------------------------------- /test/image/test_url_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/test_url_images.py -------------------------------------------------------------------------------- /test/image/test_vector_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/image/test_vector_image.py -------------------------------------------------------------------------------- /test/ink_annotation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/ink_annotation.pdf -------------------------------------------------------------------------------- /test/internal_links.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/internal_links.pdf -------------------------------------------------------------------------------- /test/later_call_to_set_link.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/later_call_to_set_link.pdf -------------------------------------------------------------------------------- /test/launch_action.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/launch_action.pdf -------------------------------------------------------------------------------- /test/layout/page_background.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/layout/page_background.pdf -------------------------------------------------------------------------------- /test/layout/set_no_margin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/layout/set_no_margin.pdf -------------------------------------------------------------------------------- /test/layout/test_margins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/layout/test_margins.py -------------------------------------------------------------------------------- /test/layout/test_page_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/layout/test_page_background.py -------------------------------------------------------------------------------- /test/layout/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/layout/test_units.py -------------------------------------------------------------------------------- /test/layout/unit_cm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/layout/unit_cm.pdf -------------------------------------------------------------------------------- /test/layout/unit_default.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/layout/unit_default.pdf -------------------------------------------------------------------------------- /test/layout/unit_float.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/layout/unit_float.pdf -------------------------------------------------------------------------------- /test/layout/unit_in.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/layout/unit_in.pdf -------------------------------------------------------------------------------- /test/layout/unit_int.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/layout/unit_int.pdf -------------------------------------------------------------------------------- /test/layout/unit_mm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/layout/unit_mm.pdf -------------------------------------------------------------------------------- /test/layout/unit_pt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/layout/unit_pt.pdf -------------------------------------------------------------------------------- /test/link_alt_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/link_alt_text.pdf -------------------------------------------------------------------------------- /test/link_border.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/link_border.pdf -------------------------------------------------------------------------------- /test/link_to_other_document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/link_to_other_document.pdf -------------------------------------------------------------------------------- /test/link_with_zoom_and_shift.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/link_with_zoom_and_shift.pdf -------------------------------------------------------------------------------- /test/local_context_init.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/local_context_init.pdf -------------------------------------------------------------------------------- /test/local_context_shared_props.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/local_context_shared_props.pdf -------------------------------------------------------------------------------- /test/metadata/custom_file_id.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/custom_file_id.pdf -------------------------------------------------------------------------------- /test/metadata/layout-alias-single.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/layout-alias-single.pdf -------------------------------------------------------------------------------- /test/metadata/layout-alias-two.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/layout-alias-two.pdf -------------------------------------------------------------------------------- /test/metadata/metadata_unicode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/metadata_unicode.pdf -------------------------------------------------------------------------------- /test/metadata/no_file_id.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/no_file_id.pdf -------------------------------------------------------------------------------- /test/metadata/page-mode-USE_NONE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/page-mode-USE_NONE.pdf -------------------------------------------------------------------------------- /test/metadata/page-mode-USE_OC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/page-mode-USE_OC.pdf -------------------------------------------------------------------------------- /test/metadata/put_info_all.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/put_info_all.pdf -------------------------------------------------------------------------------- /test/metadata/put_info_some.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/put_info_some.pdf -------------------------------------------------------------------------------- /test/metadata/setting_old_date.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/setting_old_date.pdf -------------------------------------------------------------------------------- /test/metadata/test_display_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/test_display_mode.py -------------------------------------------------------------------------------- /test/metadata/test_file_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/test_file_id.py -------------------------------------------------------------------------------- /test/metadata/test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/test_info.py -------------------------------------------------------------------------------- /test/metadata/test_set_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/test_set_date.py -------------------------------------------------------------------------------- /test/metadata/xmp_metadata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/xmp_metadata.pdf -------------------------------------------------------------------------------- /test/metadata/zoom-default.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/zoom-default.pdf -------------------------------------------------------------------------------- /test/metadata/zoom-fullpage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/zoom-fullpage.pdf -------------------------------------------------------------------------------- /test/metadata/zoom-fullwidth.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/zoom-fullwidth.pdf -------------------------------------------------------------------------------- /test/metadata/zoom-real.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/metadata/zoom-real.pdf -------------------------------------------------------------------------------- /test/mirror.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/mirror.pdf -------------------------------------------------------------------------------- /test/mirror_cell.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/mirror_cell.pdf -------------------------------------------------------------------------------- /test/mirror_multi_cell.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/mirror_multi_cell.pdf -------------------------------------------------------------------------------- /test/mirror_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/mirror_text.pdf -------------------------------------------------------------------------------- /test/mirror_with_angle_as_number.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/mirror_with_angle_as_number.pdf -------------------------------------------------------------------------------- /test/multi_cell_skew_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/multi_cell_skew_text.pdf -------------------------------------------------------------------------------- /test/named_actions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/named_actions.pdf -------------------------------------------------------------------------------- /test/named_destinations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/named_destinations.pdf -------------------------------------------------------------------------------- /test/new_page_graphics_state.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/new_page_graphics_state.pdf -------------------------------------------------------------------------------- /test/outline/2_pages_outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/outline/2_pages_outline.pdf -------------------------------------------------------------------------------- /test/outline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/outline/html_toc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/outline/html_toc.pdf -------------------------------------------------------------------------------- /test/outline/html_toc_2_pages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/outline/html_toc_2_pages.pdf -------------------------------------------------------------------------------- /test/outline/simple_outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/outline/simple_outline.pdf -------------------------------------------------------------------------------- /test/outline/test_outline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/outline/test_outline.py -------------------------------------------------------------------------------- /test/outline/test_outline_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/outline/test_outline_html.py -------------------------------------------------------------------------------- /test/outline/toc_with_table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/outline/toc_with_table.pdf -------------------------------------------------------------------------------- /test/output_intents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/output_intents/sRGB2014.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/output_intents/sRGB2014.icc -------------------------------------------------------------------------------- /test/page_label.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/page_label.pdf -------------------------------------------------------------------------------- /test/pattern/radial_custom_bounds.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pattern/radial_custom_bounds.pdf -------------------------------------------------------------------------------- /test/pattern/radial_gradient.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pattern/radial_gradient.pdf -------------------------------------------------------------------------------- /test/pattern/test_linear_gradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pattern/test_linear_gradient.py -------------------------------------------------------------------------------- /test/pattern/test_radial_gradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pattern/test_radial_gradient.py -------------------------------------------------------------------------------- /test/pdf-a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/README.md -------------------------------------------------------------------------------- /test/pdf-a/basic_pdfa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/basic_pdfa.pdf -------------------------------------------------------------------------------- /test/pdf-a/pdfa_2b_embed_pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/pdfa_2b_embed_pdf.pdf -------------------------------------------------------------------------------- /test/pdf-a/pdfa_2u_embed_pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/pdfa_2u_embed_pdf.pdf -------------------------------------------------------------------------------- /test/pdf-a/pdfa_3b_embed_txt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/pdfa_3b_embed_txt.pdf -------------------------------------------------------------------------------- /test/pdf-a/pdfa_3u_embed_txt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/pdfa_3u_embed_txt.pdf -------------------------------------------------------------------------------- /test/pdf-a/pdfa_4_embed_pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/pdfa_4_embed_pdf.pdf -------------------------------------------------------------------------------- /test/pdf-a/pdfa_4_transparent_png.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/pdfa_4_transparent_png.pdf -------------------------------------------------------------------------------- /test/pdf-a/pdfa_4e_embed_csv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/pdfa_4e_embed_csv.pdf -------------------------------------------------------------------------------- /test/pdf-a/pdfa_4f_embed_csv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/pdfa_4f_embed_csv.pdf -------------------------------------------------------------------------------- /test/pdf-a/pdfa_fallback_fonts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/pdfa_fallback_fonts.pdf -------------------------------------------------------------------------------- /test/pdf-a/pdfa_image_png.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/pdfa_image_png.pdf -------------------------------------------------------------------------------- /test/pdf-a/test_pdf_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/test_pdf_a.py -------------------------------------------------------------------------------- /test/pdf-a/test_pdf_a_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/test_pdf_a_embed.py -------------------------------------------------------------------------------- /test/pdf-a/test_pdf_a_restrictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/pdf-a/test_pdf_a_restrictions.py -------------------------------------------------------------------------------- /test/rotation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/rotation.pdf -------------------------------------------------------------------------------- /test/shapes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/shapes/bezier_chaining.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/bezier_chaining.pdf -------------------------------------------------------------------------------- /test/shapes/circle_draw_color.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/circle_draw_color.pdf -------------------------------------------------------------------------------- /test/shapes/circle_fill_color.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/circle_fill_color.pdf -------------------------------------------------------------------------------- /test/shapes/circle_line_width.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/circle_line_width.pdf -------------------------------------------------------------------------------- /test/shapes/circle_style.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/circle_style.pdf -------------------------------------------------------------------------------- /test/shapes/class_arc_clockwise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_arc_clockwise.pdf -------------------------------------------------------------------------------- /test/shapes/class_arc_draw_color.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_arc_draw_color.pdf -------------------------------------------------------------------------------- /test/shapes/class_arc_fill_color.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_arc_fill_color.pdf -------------------------------------------------------------------------------- /test/shapes/class_arc_inclination.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_arc_inclination.pdf -------------------------------------------------------------------------------- /test/shapes/class_arc_line_width.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_arc_line_width.pdf -------------------------------------------------------------------------------- /test/shapes/class_arc_not_circle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_arc_not_circle.pdf -------------------------------------------------------------------------------- /test/shapes/class_arc_style.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_arc_style.pdf -------------------------------------------------------------------------------- /test/shapes/class_dash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_dash.pdf -------------------------------------------------------------------------------- /test/shapes/class_ellipse_style.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_ellipse_style.pdf -------------------------------------------------------------------------------- /test/shapes/class_line.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_line.pdf -------------------------------------------------------------------------------- /test/shapes/class_rect_draw_color.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_rect_draw_color.pdf -------------------------------------------------------------------------------- /test/shapes/class_rect_fill_color.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_rect_fill_color.pdf -------------------------------------------------------------------------------- /test/shapes/class_rect_line_width.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_rect_line_width.pdf -------------------------------------------------------------------------------- /test/shapes/class_rect_not_square.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_rect_not_square.pdf -------------------------------------------------------------------------------- /test/shapes/class_rect_style.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_rect_style.pdf -------------------------------------------------------------------------------- /test/shapes/class_solid_arc_style.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/class_solid_arc_style.pdf -------------------------------------------------------------------------------- /test/shapes/cubic_bezier_curve.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/cubic_bezier_curve.pdf -------------------------------------------------------------------------------- /test/shapes/dash_pattern.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/dash_pattern.pdf -------------------------------------------------------------------------------- /test/shapes/filled_polygon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/filled_polygon.pdf -------------------------------------------------------------------------------- /test/shapes/regular_polygon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/regular_polygon.pdf -------------------------------------------------------------------------------- /test/shapes/regular_star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/regular_star.pdf -------------------------------------------------------------------------------- /test/shapes/test_arc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/test_arc.py -------------------------------------------------------------------------------- /test/shapes/test_bezier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/test_bezier.py -------------------------------------------------------------------------------- /test/shapes/test_circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/test_circle.py -------------------------------------------------------------------------------- /test/shapes/test_dash_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/test_dash_pattern.py -------------------------------------------------------------------------------- /test/shapes/test_ellipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/test_ellipse.py -------------------------------------------------------------------------------- /test/shapes/test_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/test_line.py -------------------------------------------------------------------------------- /test/shapes/test_polyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/test_polyline.py -------------------------------------------------------------------------------- /test/shapes/test_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/test_rectangle.py -------------------------------------------------------------------------------- /test/shapes/test_regular_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/test_regular_polygon.py -------------------------------------------------------------------------------- /test/shapes/test_round_corners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/test_round_corners.py -------------------------------------------------------------------------------- /test/shapes/test_solid_arc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/test_solid_arc.py -------------------------------------------------------------------------------- /test/shapes/test_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/shapes/test_star.py -------------------------------------------------------------------------------- /test/signing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/signing/README.md -------------------------------------------------------------------------------- /test/signing/sign_pkcs12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/signing/sign_pkcs12.pdf -------------------------------------------------------------------------------- /test/signing/signing-certificate.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/signing/signing-certificate.crt -------------------------------------------------------------------------------- /test/signing/signing-certificate.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/signing/signing-certificate.p12 -------------------------------------------------------------------------------- /test/signing/test_sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/signing/test_sign.py -------------------------------------------------------------------------------- /test/skew.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/skew.pdf -------------------------------------------------------------------------------- /test/skew_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/skew_text.pdf -------------------------------------------------------------------------------- /test/svg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/svg/generated_pdf/SVG_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/SVG_logo.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/arcs01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/arcs01.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/arcs02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/arcs02.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/circle01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/circle01.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/clip_path.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/clip_path.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/cubic01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/cubic01.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/cubic02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/cubic02.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/ellipse01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/ellipse01.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/issue-1076.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/issue-1076.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/issue_358.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/issue_358.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/issue_358b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/issue_358b.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/line01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/line01.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/ocanada.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/ocanada.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/polygon01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/polygon01.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/polyline01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/polyline01.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/quad01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/quad01.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/rect01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/rect01.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/rect02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/rect02.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/search.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/search.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/text01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/text01.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/triangle01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/triangle01.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/tspan01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/tspan01.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/tspan02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/tspan02.pdf -------------------------------------------------------------------------------- /test/svg/generated_pdf/viewbox.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/generated_pdf/viewbox.pdf -------------------------------------------------------------------------------- /test/svg/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/parameters.py -------------------------------------------------------------------------------- /test/svg/svg_sources/SVG_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/SVG_logo.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/arcs01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/arcs01.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/arcs02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/arcs02.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/circle01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/circle01.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/clip_path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/clip_path.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/cubic01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/cubic01.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/cubic02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/cubic02.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/ellipse01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/ellipse01.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/issue-1076.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/issue-1076.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/issue_358.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/issue_358.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/issue_358b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/issue_358b.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/line01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/line01.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/ocanada.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/ocanada.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/polygon01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/polygon01.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/polyline01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/polyline01.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/quad01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/quad01.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/rect01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/rect01.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/rect02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/rect02.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/search.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/simple_rect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/simple_rect.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/text-samples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/text-samples.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/text01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/text01.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/triangle01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/triangle01.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/tspan01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/tspan01.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/tspan02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/tspan02.svg -------------------------------------------------------------------------------- /test/svg/svg_sources/viewbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/svg_sources/viewbox.svg -------------------------------------------------------------------------------- /test/svg/test_svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/test_svg.py -------------------------------------------------------------------------------- /test/svg/test_svg_gradients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/test_svg_gradients.py -------------------------------------------------------------------------------- /test/svg/test_transform_viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/svg/test_transform_viewport.py -------------------------------------------------------------------------------- /test/table/table_align.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_align.pdf -------------------------------------------------------------------------------- /test/table/table_cell_fill_mode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_cell_fill_mode.pdf -------------------------------------------------------------------------------- /test/table/table_draw_box_borders.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_draw_box_borders.pdf -------------------------------------------------------------------------------- /test/table/table_min_row_height.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_min_row_height.pdf -------------------------------------------------------------------------------- /test/table/table_padding_per_cell.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_padding_per_cell.pdf -------------------------------------------------------------------------------- /test/table/table_simple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_simple.pdf -------------------------------------------------------------------------------- /test/table/table_valign_per_cell.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_valign_per_cell.pdf -------------------------------------------------------------------------------- /test/table/table_valign_per_row.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_valign_per_row.pdf -------------------------------------------------------------------------------- /test/table/table_with_cell_fill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_with_cell_fill.pdf -------------------------------------------------------------------------------- /test/table/table_with_colspan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_with_colspan.pdf -------------------------------------------------------------------------------- /test/table/table_with_fixed_width.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_with_fixed_width.pdf -------------------------------------------------------------------------------- /test/table/table_with_gutter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_with_gutter.pdf -------------------------------------------------------------------------------- /test/table/table_with_images.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_with_images.pdf -------------------------------------------------------------------------------- /test/table/table_with_links.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_with_links.pdf -------------------------------------------------------------------------------- /test/table/table_with_only_images.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_with_only_images.pdf -------------------------------------------------------------------------------- /test/table/table_with_qrcode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_with_qrcode.pdf -------------------------------------------------------------------------------- /test/table/table_with_rowspan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_with_rowspan.pdf -------------------------------------------------------------------------------- /test/table/table_with_ttf_font.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_with_ttf_font.pdf -------------------------------------------------------------------------------- /test/table/table_without_headings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/table_without_headings.pdf -------------------------------------------------------------------------------- /test/table/test_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/test_table.py -------------------------------------------------------------------------------- /test/table/test_table_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/test_table_extraction.py -------------------------------------------------------------------------------- /test/table/test_table_padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/test_table_padding.py -------------------------------------------------------------------------------- /test/table/test_table_rowspan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/test_table_rowspan.py -------------------------------------------------------------------------------- /test/table/test_table_with_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/table/test_table_with_image.py -------------------------------------------------------------------------------- /test/template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/template/badcolor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/badcolor.json -------------------------------------------------------------------------------- /test/template/badfloat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/badfloat.csv -------------------------------------------------------------------------------- /test/template/badint.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/badint.csv -------------------------------------------------------------------------------- /test/template/badtype.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/badtype.csv -------------------------------------------------------------------------------- /test/template/badtype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/badtype.json -------------------------------------------------------------------------------- /test/template/flextemplate_leak.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/flextemplate_leak.pdf -------------------------------------------------------------------------------- /test/template/flextemplate_offset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/flextemplate_offset.pdf -------------------------------------------------------------------------------- /test/template/mandmissing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/mandmissing.csv -------------------------------------------------------------------------------- /test/template/mandmissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/mandmissing.json -------------------------------------------------------------------------------- /test/template/nominal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/nominal.json -------------------------------------------------------------------------------- /test/template/template_code39.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/template_code39.pdf -------------------------------------------------------------------------------- /test/template/template_definition.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/template_definition.csv -------------------------------------------------------------------------------- /test/template/template_justify.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/template_justify.pdf -------------------------------------------------------------------------------- /test/template/template_multipage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/template_multipage.pdf -------------------------------------------------------------------------------- /test/template/template_qrcode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/template_qrcode.pdf -------------------------------------------------------------------------------- /test/template/template_textstyles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/template_textstyles.pdf -------------------------------------------------------------------------------- /test/template/template_wrapmode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/template_wrapmode.pdf -------------------------------------------------------------------------------- /test/template/test_flextemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/test_flextemplate.py -------------------------------------------------------------------------------- /test/template/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/template/test_template.py -------------------------------------------------------------------------------- /test/test_add_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_add_page.py -------------------------------------------------------------------------------- /test/test_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_alias.py -------------------------------------------------------------------------------- /test/test_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_annotations.py -------------------------------------------------------------------------------- /test/test_embed_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_embed_file.py -------------------------------------------------------------------------------- /test/test_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_enums.py -------------------------------------------------------------------------------- /test/test_graphics_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_graphics_context.py -------------------------------------------------------------------------------- /test/test_linearization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_linearization.py -------------------------------------------------------------------------------- /test/test_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_links.py -------------------------------------------------------------------------------- /test/test_mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_mirror.py -------------------------------------------------------------------------------- /test/test_named_destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_named_destinations.py -------------------------------------------------------------------------------- /test/test_opacity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_opacity.py -------------------------------------------------------------------------------- /test/test_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_output.py -------------------------------------------------------------------------------- /test/test_page_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_page_format.py -------------------------------------------------------------------------------- /test/test_perfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_perfs.py -------------------------------------------------------------------------------- /test/test_positioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_positioning.py -------------------------------------------------------------------------------- /test/test_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_recorder.py -------------------------------------------------------------------------------- /test/test_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_rotation.py -------------------------------------------------------------------------------- /test/test_skew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_skew.py -------------------------------------------------------------------------------- /test/test_structure_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_structure_tree.py -------------------------------------------------------------------------------- /test/test_transitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/test_transitions.py -------------------------------------------------------------------------------- /test/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/text/cell_centering.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/cell_centering.pdf -------------------------------------------------------------------------------- /test/text/cell_curfont_leak.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/cell_curfont_leak.pdf -------------------------------------------------------------------------------- /test/text/cell_lasth.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/cell_lasth.pdf -------------------------------------------------------------------------------- /test/text/cell_ln_newpos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/cell_ln_newpos.pdf -------------------------------------------------------------------------------- /test/text/cell_markdown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/cell_markdown.pdf -------------------------------------------------------------------------------- /test/text/cell_markdown_bleeding.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/cell_markdown_bleeding.pdf -------------------------------------------------------------------------------- /test/text/cell_markdown_escaped.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/cell_markdown_escaped.pdf -------------------------------------------------------------------------------- /test/text/cell_newpos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/cell_newpos.pdf -------------------------------------------------------------------------------- /test/text/cell_newpos_charspaced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/cell_newpos_charspaced.pdf -------------------------------------------------------------------------------- /test/text/cell_newpos_combined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/cell_newpos_combined.pdf -------------------------------------------------------------------------------- /test/text/cell_newpos_stretched.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/cell_newpos_stretched.pdf -------------------------------------------------------------------------------- /test/text/cell_table_unbreakable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/cell_table_unbreakable.pdf -------------------------------------------------------------------------------- /test/text/cell_without_w_nor_h.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/cell_without_w_nor_h.pdf -------------------------------------------------------------------------------- /test/text/clip_text_modes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/clip_text_modes.pdf -------------------------------------------------------------------------------- /test/text/ln_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/ln_0.pdf -------------------------------------------------------------------------------- /test/text/ln_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/ln_1.pdf -------------------------------------------------------------------------------- /test/text/long_text.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/long_text.txt.gz -------------------------------------------------------------------------------- /test/text/multi_cell_align_x.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_align_x.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_centering.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_centering.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_char_spacing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_char_spacing.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_char_wrap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_char_wrap.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_font_leakage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_font_leakage.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_j_paragraphs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_j_paragraphs.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_ln_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_ln_1.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_ln_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_ln_3.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_ln_3_table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_ln_3_table.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_ln_newpos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_ln_newpos.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_markdown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_markdown.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_newpos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_newpos.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_return_value.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_return_value.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_trailing_nl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_trailing_nl.pdf -------------------------------------------------------------------------------- /test/text/multi_cell_with_padding.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/multi_cell_with_padding.pdf -------------------------------------------------------------------------------- /test/text/render_styled_newpos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/render_styled_newpos.pdf -------------------------------------------------------------------------------- /test/text/test_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/test_cell.py -------------------------------------------------------------------------------- /test/text/test_line_break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/test_line_break.py -------------------------------------------------------------------------------- /test/text/test_markdown_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/test_markdown_parse.py -------------------------------------------------------------------------------- /test/text/test_multi_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/test_multi_cell.py -------------------------------------------------------------------------------- /test/text/test_multi_cell_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/test_multi_cell_markdown.py -------------------------------------------------------------------------------- /test/text/test_render_styled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/test_render_styled.py -------------------------------------------------------------------------------- /test/text/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/test_text.py -------------------------------------------------------------------------------- /test/text/test_text_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/test_text_mode.py -------------------------------------------------------------------------------- /test/text/test_unbreakable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/test_unbreakable.py -------------------------------------------------------------------------------- /test/text/test_use_font_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/test_use_font_face.py -------------------------------------------------------------------------------- /test/text/test_varied_fragments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/test_varied_fragments.py -------------------------------------------------------------------------------- /test/text/test_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/test_write.py -------------------------------------------------------------------------------- /test/text/text_color.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/text_color.pdf -------------------------------------------------------------------------------- /test/text/text_modes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/text_modes.pdf -------------------------------------------------------------------------------- /test/text/text_positioning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/text_positioning.pdf -------------------------------------------------------------------------------- /test/text/text_stretch_spacing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/text_stretch_spacing.pdf -------------------------------------------------------------------------------- /test/text/text_text_mode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/text_text_mode.pdf -------------------------------------------------------------------------------- /test/text/varfrags_char_vpos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/varfrags_char_vpos.pdf -------------------------------------------------------------------------------- /test/text/varfrags_fonts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/varfrags_fonts.pdf -------------------------------------------------------------------------------- /test/text/varfrags_size_bold.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/varfrags_size_bold.pdf -------------------------------------------------------------------------------- /test/text/varfrags_text_mode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/varfrags_text_mode.pdf -------------------------------------------------------------------------------- /test/text/write_char_wrap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/write_char_wrap.pdf -------------------------------------------------------------------------------- /test/text/write_font_stretching.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/write_font_stretching.pdf -------------------------------------------------------------------------------- /test/text/write_page_break.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/write_page_break.pdf -------------------------------------------------------------------------------- /test/text/write_soft_hyphen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/write_soft_hyphen.pdf -------------------------------------------------------------------------------- /test/text/write_superscript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/write_superscript.pdf -------------------------------------------------------------------------------- /test/text/write_trailing_nl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text/write_trailing_nl.pdf -------------------------------------------------------------------------------- /test/text_annotation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_annotation.pdf -------------------------------------------------------------------------------- /test/text_region/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/text_region/tcols_3cols.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_region/tcols_3cols.pdf -------------------------------------------------------------------------------- /test/text_region/tcols_align.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_region/tcols_align.pdf -------------------------------------------------------------------------------- /test/text_region/tcols_balance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_region/tcols_balance.pdf -------------------------------------------------------------------------------- /test/text_region/tcols_charwrap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_region/tcols_charwrap.pdf -------------------------------------------------------------------------------- /test/text_region/tcols_images.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_region/tcols_images.pdf -------------------------------------------------------------------------------- /test/text_region/test_text_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_region/test_text_columns.py -------------------------------------------------------------------------------- /test/text_shaping/BidiTest.txt.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_shaping/BidiTest.txt.xz -------------------------------------------------------------------------------- /test/text_shaping/Dumbledor3Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_shaping/Dumbledor3Thin.ttf -------------------------------------------------------------------------------- /test/text_shaping/KhmerOS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_shaping/KhmerOS.ttf -------------------------------------------------------------------------------- /test/text_shaping/Mangal 400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_shaping/Mangal 400.ttf -------------------------------------------------------------------------------- /test/text_shaping/SBL_Hbrw.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_shaping/SBL_Hbrw.ttf -------------------------------------------------------------------------------- /test/text_shaping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/text_shaping/arabic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_shaping/arabic.pdf -------------------------------------------------------------------------------- /test/text_shaping/features.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_shaping/features.pdf -------------------------------------------------------------------------------- /test/text_shaping/kerning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_shaping/kerning.pdf -------------------------------------------------------------------------------- /test/text_shaping/ligatures.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_shaping/ligatures.pdf -------------------------------------------------------------------------------- /test/text_shaping/shaping_hindi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/text_shaping/shaping_hindi.pdf -------------------------------------------------------------------------------- /test/transitions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/transitions.pdf -------------------------------------------------------------------------------- /test/transparency.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/transparency.pdf -------------------------------------------------------------------------------- /test/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """This package tests auxiliary and utility functions""" 2 | -------------------------------------------------------------------------------- /test/utils/test_escape_parens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/utils/test_escape_parens.py -------------------------------------------------------------------------------- /test/utils/test_unit_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/test/utils/test_unit_conversion.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tox.ini -------------------------------------------------------------------------------- /tutorial/20k_c1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/20k_c1.txt -------------------------------------------------------------------------------- /tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/README.md -------------------------------------------------------------------------------- /tutorial/add_new_page_with_pdfrw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/add_new_page_with_pdfrw.py -------------------------------------------------------------------------------- /tutorial/add_new_page_with_pypdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/add_new_page_with_pypdf.py -------------------------------------------------------------------------------- /tutorial/add_on_page_with_pdfrw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/add_on_page_with_pdfrw.py -------------------------------------------------------------------------------- /tutorial/add_on_page_with_pypdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/add_on_page_with_pypdf.py -------------------------------------------------------------------------------- /tutorial/aztec_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/aztec_code.py -------------------------------------------------------------------------------- /tutorial/code128_barcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/code128_barcode.py -------------------------------------------------------------------------------- /tutorial/core_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/core_fonts.py -------------------------------------------------------------------------------- /tutorial/countries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/countries.txt -------------------------------------------------------------------------------- /tutorial/csv2table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/csv2table.py -------------------------------------------------------------------------------- /tutorial/datamatrix_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/datamatrix_demo.py -------------------------------------------------------------------------------- /tutorial/datamatrix_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/datamatrix_method.py -------------------------------------------------------------------------------- /tutorial/equation_google_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/equation_google_charts.py -------------------------------------------------------------------------------- /tutorial/equation_matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/equation_matplotlib.py -------------------------------------------------------------------------------- /tutorial/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/form.py -------------------------------------------------------------------------------- /tutorial/gif2pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/gif2pdf.py -------------------------------------------------------------------------------- /tutorial/graphics_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/graphics_state.py -------------------------------------------------------------------------------- /tutorial/invoice.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/invoice.csv -------------------------------------------------------------------------------- /tutorial/matplotlib_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/matplotlib_demo.py -------------------------------------------------------------------------------- /tutorial/matplotlib_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/matplotlib_pandas.py -------------------------------------------------------------------------------- /tutorial/matplotlib_pandas_df.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/matplotlib_pandas_df.py -------------------------------------------------------------------------------- /tutorial/md2pdf_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/md2pdf_markdown.py -------------------------------------------------------------------------------- /tutorial/md2pdf_markdown_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/md2pdf_markdown_it.py -------------------------------------------------------------------------------- /tutorial/md2pdf_mistletoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/md2pdf_mistletoe.py -------------------------------------------------------------------------------- /tutorial/md2pdf_mistletoe_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/md2pdf_mistletoe_unicode.py -------------------------------------------------------------------------------- /tutorial/md2pdf_mistune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/md2pdf_mistune.py -------------------------------------------------------------------------------- /tutorial/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/notebook.ipynb -------------------------------------------------------------------------------- /tutorial/ods2table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/ods2table.py -------------------------------------------------------------------------------- /tutorial/plotly_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/plotly_demo.py -------------------------------------------------------------------------------- /tutorial/plotly_svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/plotly_svg.py -------------------------------------------------------------------------------- /tutorial/sRGB2014.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/sRGB2014.icc -------------------------------------------------------------------------------- /tutorial/tuto1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto1.pdf -------------------------------------------------------------------------------- /tutorial/tuto1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto1.py -------------------------------------------------------------------------------- /tutorial/tuto2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto2.pdf -------------------------------------------------------------------------------- /tutorial/tuto2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto2.py -------------------------------------------------------------------------------- /tutorial/tuto3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto3.pdf -------------------------------------------------------------------------------- /tutorial/tuto3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto3.py -------------------------------------------------------------------------------- /tutorial/tuto4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto4.pdf -------------------------------------------------------------------------------- /tutorial/tuto4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto4.py -------------------------------------------------------------------------------- /tutorial/tuto5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto5.pdf -------------------------------------------------------------------------------- /tutorial/tuto5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto5.py -------------------------------------------------------------------------------- /tutorial/tuto6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto6.pdf -------------------------------------------------------------------------------- /tutorial/tuto6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto6.py -------------------------------------------------------------------------------- /tutorial/tuto7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto7.pdf -------------------------------------------------------------------------------- /tutorial/tuto7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/tuto7.py -------------------------------------------------------------------------------- /tutorial/unicode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/unicode.pdf -------------------------------------------------------------------------------- /tutorial/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/unicode.py -------------------------------------------------------------------------------- /tutorial/watch_with_livereload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/watch_with_livereload.py -------------------------------------------------------------------------------- /tutorial/xlsx2table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-pdf/fpdf2/HEAD/tutorial/xlsx2table.py --------------------------------------------------------------------------------