{"id":17323086,"url":"https://github.com/danieleds/html2pdf_fork","last_synced_at":"2025-04-14T16:16:31.977Z","repository":{"id":3110259,"uuid":"4136583","full_name":"danieleds/html2pdf_fork","owner":"danieleds","description":"This is an html2pdf repo containing fixes and updates not included in the original source (which is unmantained since 2011-05)","archived":false,"fork":false,"pushed_at":"2012-04-25T14:04:49.000Z","size":9687,"stargazers_count":6,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-14T16:16:18.044Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/danieleds.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-04-25T13:07:49.000Z","updated_at":"2021-07-22T06:17:08.000Z","dependencies_parsed_at":"2022-08-17T15:40:20.895Z","dependency_job_id":null,"html_url":"https://github.com/danieleds/html2pdf_fork","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danieleds%2Fhtml2pdf_fork","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danieleds%2Fhtml2pdf_fork/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danieleds%2Fhtml2pdf_fork/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danieleds%2Fhtml2pdf_fork/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danieleds","download_url":"https://codeload.github.com/danieleds/html2pdf_fork/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248914116,"owners_count":21182359,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-15T13:45:19.799Z","updated_at":"2025-04-14T16:16:31.945Z","avatar_url":"https://github.com/danieleds.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"*********************************************************\nThis program is distributed under the LGPL License,\nfor more information see file _LGPL.txt or\nhttp://www.gnu.org/licenses/lgpl.html\n\nCopyright 2008-2011 by Laurent Minguet\n*******************************\nThis is an html2pdf repo containing fixes and updates\nnot included in the original source (unmantained since 2011-05).\n\nThis code is based on: HTML2PDF v4.03 - 2011-05-27\n\nPatched by Daniele Di Sarli. Look at commit history for info.\n*******************************\n\nHow to use :\n------------\n - You need at least PHP 5\n\n - Look at the examples provided to see how it works.\n\n - It is very important to provide valid HTML 4.01 to the converter,\n   but only what is in the \u003cbody\u003e\n\n - for borders: it is advised that they are like \"solid 1mm #000000\"\n\n - for padding, they are applicable only on tags table, th, td, div, li\n\n - A default font can be specified, if the requested font does not exist or if no font is specified:\n     $html2pdf-\u003esetDefaultFont('Arial');\n\n - The possibility to protect your PDF is present, CF Example 7.\n\n - Some tests can be enabled (true) or disabled (false) :\n     * setTestIsImage method:      test that images must exist\n     * setTestTdInOnePage method:  test that the contents of TDs fit on one page\n     * setTestIsDeprecated method: test that old properties of specific tags are not used anymore\n\n  - A DEBUG mode to know the resources used is present\n   It is activated by adding the following command just after the contructor (see Example 0):\n      $htmlpdf-\u003esetModeDebug();\n\n - Some specific tags have been introduced:\n     * \u003cpage\u003e\u003c/page\u003e  (CF Exemple 7 \u0026 wiki)\n       determines the orientation, margins left, right, top and bottom, the background image\n       and the background color of a page, its size and position, the footer.\n       It is also possible to keep the header and footer of the previous pages,\n       through the attribut pageset=\"old\" (see Example 3 \u0026 4 \u0026 wiki)\n\n     * \u003cpage_header\u003e\u003c/page_header\u003e (CF Example 3 \u0026 wiki)\n\n     * \u003cpage_footer\u003e\u003c/page_footer\u003e (CF Example 3 \u0026 wiki)\n\n     * \u003cnobreak\u003e\u003c/nobreak\u003e (cd wiki)\n         used to force the display of a section on the same page.\n         If this section does not fit into the rest of the page, a page break is done before.\n\n     * \u003cbarcode\u003e\u003c/barcode\u003e  (CF Examples 0 \u0026 9 \u0026 wiki)\n         can insert barcodes in pdfs, CF Examples 0 and 9\n         The possible types of codebar are alls of TCPDF\n\n     * \u003cqrcode\u003e\u003c/qrcode\u003e (CF Example 13 \u0026 wiki)\n         can insert QRcode 2D barcodes\n         (QR Code is registered trademark of DENSO WAVE INCORPORATED | http://www.denso-wave.com/qrcode/)\n\n     * \u003cbookmark\u003e\u003c/bookmark\u003e  (CF Examples 7 \u0026 About \u0026 wiki)\n         can insert bookmark in pdfs, CF Example 7 and About.\n         It is also possible to automatically create an index at the end of\n         document  (CF Example About \u0026 wiki)\n\n     * css property \"rotate\" :\n         values : 0, 90, 180, 270\n         works only on div (cf example 8)\n\nchange log :\n-----------\n see on this page : http://html2pdf.fr/en/download\n\nHelp \u0026 Support :\n---------------\n For questions and bug reports, thank you to use only the support link below.\n I will answer to your questions only on it...\n\nInformations :\n-------------\n Programmer : Spipu\n      email    : webmaster@html2pdf.fr\n      web site : http://html2pdf.fr/\n      wiki     : http://html2pdf.fr/en/wiki\n      support  : http://html2pdf.fr/en/forum\n\nThanks :\n-------\n * Olivier Plathey: for have made FPDF\n * Nicola Asuni: for the changes he has agreed to make to TCPDF\n * yAronet: for hosting support forum\n * everyone who helped me to develop this library and to bring the texts\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanieleds%2Fhtml2pdf_fork","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanieleds%2Fhtml2pdf_fork","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanieleds%2Fhtml2pdf_fork/lists"}