From 504f0293ac26f3a2eeed67fc58334ed6a17f4b51 Mon Sep 17 00:00:00 2001 From: Artur Savitskiy Date: Mon, 20 May 2024 18:13:17 +0200 Subject: [PATCH] Add registration and confirmation emails Fix minor bugs in registration --- backend/api/courses/get.php | 2 +- backend/api/enroll/get.php | 2 +- backend/api/enroll/set.php | 2 +- backend/api/registrations/footer.png | Bin 0 -> 1105 bytes backend/api/registrations/get.php | 2 +- backend/api/registrations/header.png | Bin 0 -> 1354 bytes backend/api/registrations/logo.jpg | Bin 0 -> 143979 bytes backend/api/registrations/set.php | 177 +- backend/api/students/del.php | 2 +- backend/api/students/get.php | 2 +- backend/api/students/set.php | 2 +- backend/api/visits/del.php | 2 +- backend/api/visits/get.php | 2 +- backend/api/visits/set.php | 2 +- backend/libs/.htaccess | 1 + backend/libs/fpdf/FAQ.htm | 270 ++ backend/libs/fpdf/changelog.htm | 188 ++ backend/libs/fpdf/doc/__construct.htm | 63 + backend/libs/fpdf/doc/acceptpagebreak.htm | 63 + backend/libs/fpdf/doc/addfont.htm | 67 + backend/libs/fpdf/doc/addlink.htm | 26 + backend/libs/fpdf/doc/addpage.htm | 61 + backend/libs/fpdf/doc/aliasnbpages.htm | 45 + backend/libs/fpdf/doc/cell.htm | 104 + backend/libs/fpdf/doc/close.htm | 21 + backend/libs/fpdf/doc/error.htm | 26 + backend/libs/fpdf/doc/footer.htm | 35 + backend/libs/fpdf/doc/getpageheight.htm | 18 + backend/libs/fpdf/doc/getpagewidth.htm | 18 + backend/libs/fpdf/doc/getstringwidth.htm | 23 + backend/libs/fpdf/doc/getx.htm | 20 + backend/libs/fpdf/doc/gety.htm | 20 + backend/libs/fpdf/doc/header.htm | 37 + backend/libs/fpdf/doc/image.htm | 99 + backend/libs/fpdf/doc/index.htm | 59 + backend/libs/fpdf/doc/line.htm | 38 + backend/libs/fpdf/doc/link.htm | 46 + backend/libs/fpdf/doc/ln.htm | 28 + backend/libs/fpdf/doc/multicell.htm | 76 + backend/libs/fpdf/doc/output.htm | 55 + backend/libs/fpdf/doc/pageno.htm | 18 + backend/libs/fpdf/doc/rect.htm | 48 + backend/libs/fpdf/doc/setauthor.htm | 33 + backend/libs/fpdf/doc/setautopagebreak.htm | 33 + backend/libs/fpdf/doc/setcompression.htm | 31 + backend/libs/fpdf/doc/setcreator.htm | 34 + backend/libs/fpdf/doc/setdisplaymode.htm | 45 + backend/libs/fpdf/doc/setdrawcolor.htm | 41 + backend/libs/fpdf/doc/setfillcolor.htm | 40 + backend/libs/fpdf/doc/setfont.htm | 78 + backend/libs/fpdf/doc/setfontsize.htm | 25 + backend/libs/fpdf/doc/setkeywords.htm | 33 + backend/libs/fpdf/doc/setleftmargin.htm | 30 + backend/libs/fpdf/doc/setlinewidth.htm | 29 + backend/libs/fpdf/doc/setlink.htm | 34 + backend/libs/fpdf/doc/setmargins.htm | 37 + backend/libs/fpdf/doc/setrightmargin.htm | 28 + backend/libs/fpdf/doc/setsubject.htm | 33 + backend/libs/fpdf/doc/settextcolor.htm | 40 + backend/libs/fpdf/doc/settitle.htm | 33 + backend/libs/fpdf/doc/settopmargin.htm | 28 + backend/libs/fpdf/doc/setx.htm | 29 + backend/libs/fpdf/doc/setxy.htm | 31 + backend/libs/fpdf/doc/sety.htm | 33 + backend/libs/fpdf/doc/text.htm | 39 + backend/libs/fpdf/doc/write.htm | 51 + backend/libs/fpdf/font/courier.php | 10 + backend/libs/fpdf/font/courierb.php | 10 + backend/libs/fpdf/font/courierbi.php | 10 + backend/libs/fpdf/font/courieri.php | 10 + backend/libs/fpdf/font/helvetica.php | 21 + backend/libs/fpdf/font/helveticab.php | 21 + backend/libs/fpdf/font/helveticabi.php | 21 + backend/libs/fpdf/font/helveticai.php | 21 + backend/libs/fpdf/font/symbol.php | 20 + backend/libs/fpdf/font/times.php | 21 + backend/libs/fpdf/font/timesb.php | 21 + backend/libs/fpdf/font/timesbi.php | 21 + backend/libs/fpdf/font/timesi.php | 21 + backend/libs/fpdf/font/zapfdingbats.php | 20 + backend/libs/fpdf/fpdf.css | 21 + backend/libs/fpdf/fpdf.php | 1934 ++++++++++++++ backend/libs/fpdf/install.txt | 15 + backend/libs/fpdf/license.txt | 6 + backend/libs/fpdf/makefont/cp1250.map | 251 ++ backend/libs/fpdf/makefont/cp1251.map | 255 ++ backend/libs/fpdf/makefont/cp1252.map | 251 ++ backend/libs/fpdf/makefont/cp1253.map | 239 ++ backend/libs/fpdf/makefont/cp1254.map | 249 ++ backend/libs/fpdf/makefont/cp1255.map | 233 ++ backend/libs/fpdf/makefont/cp1257.map | 244 ++ backend/libs/fpdf/makefont/cp1258.map | 247 ++ backend/libs/fpdf/makefont/cp874.map | 225 ++ backend/libs/fpdf/makefont/iso-8859-1.map | 256 ++ backend/libs/fpdf/makefont/iso-8859-11.map | 248 ++ backend/libs/fpdf/makefont/iso-8859-15.map | 256 ++ backend/libs/fpdf/makefont/iso-8859-16.map | 256 ++ backend/libs/fpdf/makefont/iso-8859-2.map | 256 ++ backend/libs/fpdf/makefont/iso-8859-4.map | 256 ++ backend/libs/fpdf/makefont/iso-8859-5.map | 256 ++ backend/libs/fpdf/makefont/iso-8859-7.map | 250 ++ backend/libs/fpdf/makefont/iso-8859-9.map | 256 ++ backend/libs/fpdf/makefont/koi8-r.map | 256 ++ backend/libs/fpdf/makefont/koi8-u.map | 256 ++ backend/libs/fpdf/makefont/makefont.php | 447 ++++ backend/libs/fpdf/makefont/ttfparser.php | 714 +++++ .../o/o/o/SmallLogo.altform-lightunplated.png | Bin 0 -> 570 bytes ...o.altform-lightunplated_targetsize-256.png | Bin 0 -> 1660 bytes .../o/o/o/o/SmallLogo.altform-unplated.png | Bin 0 -> 570 bytes ...llLogo.altform-unplated_targetsize-256.png | Bin 0 -> 1660 bytes .../fpdf/o/o/o/o/SmallLogo.contrast-black.png | Bin 0 -> 570 bytes ...-black_altform-unplated_targetsize-256.png | Bin 0 -> 1660 bytes .../fpdf/o/o/o/o/SmallLogo.contrast-high.png | Bin 0 -> 570 bytes ...t-high_altform-unplated_targetsize-256.png | Bin 0 -> 1660 bytes .../fpdf/o/o/o/o/SmallLogo.contrast-white.png | Bin 0 -> 570 bytes ...-white_altform-unplated_targetsize-256.png | Bin 0 -> 1660 bytes backend/libs/fpdf/o/o/o/o/SmallLogo.png | Bin 0 -> 570 bytes .../libs/fpdf/o/o/o/o/SmallLogo.scale-200.png | Bin 0 -> 877 bytes .../libs/fpdf/o/o/o/o/SmallLogo.scale-400.png | Bin 0 -> 1299 bytes backend/libs/fpdf/o/o/o/o/SplashScreen.png | Bin 0 -> 76339 bytes backend/libs/fpdf/o/o/o/o/StoreLogo.png | Bin 0 -> 615 bytes backend/libs/fpdf/o/o/o/o/resources.pri | Bin 0 -> 3128 bytes backend/libs/fpdf/tfpdf.php | 2371 +++++++++++++++++ backend/libs/fpdf/tutorial/20k_c1.txt | 10 + backend/libs/fpdf/tutorial/20k_c2.txt | 23 + .../tutorial/CevicheOne-Regular-Licence.txt | 94 + .../libs/fpdf/tutorial/CevicheOne-Regular.php | 25 + .../libs/fpdf/tutorial/CevicheOne-Regular.ttf | Bin 0 -> 35576 bytes .../libs/fpdf/tutorial/CevicheOne-Regular.z | Bin 0 -> 15498 bytes backend/libs/fpdf/tutorial/countries.txt | 15 + backend/libs/fpdf/tutorial/index.htm | 20 + backend/libs/fpdf/tutorial/logo.png | Bin 0 -> 2373 bytes backend/libs/fpdf/tutorial/makefont.php | 6 + backend/libs/fpdf/tutorial/tuto1.htm | 76 + backend/libs/fpdf/tutorial/tuto1.php | 9 + backend/libs/fpdf/tutorial/tuto2.htm | 80 + backend/libs/fpdf/tutorial/tuto2.php | 41 + backend/libs/fpdf/tutorial/tuto3.htm | 115 + backend/libs/fpdf/tutorial/tuto3.php | 81 + backend/libs/fpdf/tutorial/tuto4.htm | 132 + backend/libs/fpdf/tutorial/tuto4.php | 109 + backend/libs/fpdf/tutorial/tuto5.htm | 134 + backend/libs/fpdf/tutorial/tuto5.php | 102 + backend/libs/fpdf/tutorial/tuto6.htm | 154 ++ backend/libs/fpdf/tutorial/tuto6.php | 113 + backend/libs/fpdf/tutorial/tuto7.htm | 182 ++ backend/libs/fpdf/tutorial/tuto7.php | 10 + backend/libs/registration/logo.jpg | Bin 0 -> 143979 bytes backend/libs/registration/registration.php | 270 ++ backend/utils/config.php | 4 +- backend/utils/tools.php | 26 +- frontend/src/app/app.component.ts | 16 +- .../registration-list.component.html | 2 +- .../registration-list.component.scss | 13 +- .../registration-wizard.component.html | 17 +- .../registration-wizard.component.scss | 10 +- .../registration-wizard.component.ts | 4 +- .../student-list/student-list.component.html | 6 +- .../student-list/student-list.component.scss | 13 +- frontend/src/app/pipes/enroll.pipe.ts | 2 +- .../app/services/courses/courses.service.ts | 2 +- .../src/app/services/enroll/enroll.service.ts | 2 +- .../registrations/registrations.service.ts | 2 +- .../app/services/students/students.service.ts | 2 +- .../src/app/services/visits/visits.service.ts | 2 +- frontend/src/environments/environment.prod.ts | 3 +- frontend/src/environments/environment.ts | 3 +- frontend/src/index.html | 2 +- 168 files changed, 15190 insertions(+), 132 deletions(-) create mode 100644 backend/api/registrations/footer.png create mode 100644 backend/api/registrations/header.png create mode 100644 backend/api/registrations/logo.jpg create mode 100644 backend/libs/.htaccess create mode 100644 backend/libs/fpdf/FAQ.htm create mode 100644 backend/libs/fpdf/changelog.htm create mode 100644 backend/libs/fpdf/doc/__construct.htm create mode 100644 backend/libs/fpdf/doc/acceptpagebreak.htm create mode 100644 backend/libs/fpdf/doc/addfont.htm create mode 100644 backend/libs/fpdf/doc/addlink.htm create mode 100644 backend/libs/fpdf/doc/addpage.htm create mode 100644 backend/libs/fpdf/doc/aliasnbpages.htm create mode 100644 backend/libs/fpdf/doc/cell.htm create mode 100644 backend/libs/fpdf/doc/close.htm create mode 100644 backend/libs/fpdf/doc/error.htm create mode 100644 backend/libs/fpdf/doc/footer.htm create mode 100644 backend/libs/fpdf/doc/getpageheight.htm create mode 100644 backend/libs/fpdf/doc/getpagewidth.htm create mode 100644 backend/libs/fpdf/doc/getstringwidth.htm create mode 100644 backend/libs/fpdf/doc/getx.htm create mode 100644 backend/libs/fpdf/doc/gety.htm create mode 100644 backend/libs/fpdf/doc/header.htm create mode 100644 backend/libs/fpdf/doc/image.htm create mode 100644 backend/libs/fpdf/doc/index.htm create mode 100644 backend/libs/fpdf/doc/line.htm create mode 100644 backend/libs/fpdf/doc/link.htm create mode 100644 backend/libs/fpdf/doc/ln.htm create mode 100644 backend/libs/fpdf/doc/multicell.htm create mode 100644 backend/libs/fpdf/doc/output.htm create mode 100644 backend/libs/fpdf/doc/pageno.htm create mode 100644 backend/libs/fpdf/doc/rect.htm create mode 100644 backend/libs/fpdf/doc/setauthor.htm create mode 100644 backend/libs/fpdf/doc/setautopagebreak.htm create mode 100644 backend/libs/fpdf/doc/setcompression.htm create mode 100644 backend/libs/fpdf/doc/setcreator.htm create mode 100644 backend/libs/fpdf/doc/setdisplaymode.htm create mode 100644 backend/libs/fpdf/doc/setdrawcolor.htm create mode 100644 backend/libs/fpdf/doc/setfillcolor.htm create mode 100644 backend/libs/fpdf/doc/setfont.htm create mode 100644 backend/libs/fpdf/doc/setfontsize.htm create mode 100644 backend/libs/fpdf/doc/setkeywords.htm create mode 100644 backend/libs/fpdf/doc/setleftmargin.htm create mode 100644 backend/libs/fpdf/doc/setlinewidth.htm create mode 100644 backend/libs/fpdf/doc/setlink.htm create mode 100644 backend/libs/fpdf/doc/setmargins.htm create mode 100644 backend/libs/fpdf/doc/setrightmargin.htm create mode 100644 backend/libs/fpdf/doc/setsubject.htm create mode 100644 backend/libs/fpdf/doc/settextcolor.htm create mode 100644 backend/libs/fpdf/doc/settitle.htm create mode 100644 backend/libs/fpdf/doc/settopmargin.htm create mode 100644 backend/libs/fpdf/doc/setx.htm create mode 100644 backend/libs/fpdf/doc/setxy.htm create mode 100644 backend/libs/fpdf/doc/sety.htm create mode 100644 backend/libs/fpdf/doc/text.htm create mode 100644 backend/libs/fpdf/doc/write.htm create mode 100644 backend/libs/fpdf/font/courier.php create mode 100644 backend/libs/fpdf/font/courierb.php create mode 100644 backend/libs/fpdf/font/courierbi.php create mode 100644 backend/libs/fpdf/font/courieri.php create mode 100644 backend/libs/fpdf/font/helvetica.php create mode 100644 backend/libs/fpdf/font/helveticab.php create mode 100644 backend/libs/fpdf/font/helveticabi.php create mode 100644 backend/libs/fpdf/font/helveticai.php create mode 100644 backend/libs/fpdf/font/symbol.php create mode 100644 backend/libs/fpdf/font/times.php create mode 100644 backend/libs/fpdf/font/timesb.php create mode 100644 backend/libs/fpdf/font/timesbi.php create mode 100644 backend/libs/fpdf/font/timesi.php create mode 100644 backend/libs/fpdf/font/zapfdingbats.php create mode 100644 backend/libs/fpdf/fpdf.css create mode 100644 backend/libs/fpdf/fpdf.php create mode 100644 backend/libs/fpdf/install.txt create mode 100644 backend/libs/fpdf/license.txt create mode 100644 backend/libs/fpdf/makefont/cp1250.map create mode 100644 backend/libs/fpdf/makefont/cp1251.map create mode 100644 backend/libs/fpdf/makefont/cp1252.map create mode 100644 backend/libs/fpdf/makefont/cp1253.map create mode 100644 backend/libs/fpdf/makefont/cp1254.map create mode 100644 backend/libs/fpdf/makefont/cp1255.map create mode 100644 backend/libs/fpdf/makefont/cp1257.map create mode 100644 backend/libs/fpdf/makefont/cp1258.map create mode 100644 backend/libs/fpdf/makefont/cp874.map create mode 100644 backend/libs/fpdf/makefont/iso-8859-1.map create mode 100644 backend/libs/fpdf/makefont/iso-8859-11.map create mode 100644 backend/libs/fpdf/makefont/iso-8859-15.map create mode 100644 backend/libs/fpdf/makefont/iso-8859-16.map create mode 100644 backend/libs/fpdf/makefont/iso-8859-2.map create mode 100644 backend/libs/fpdf/makefont/iso-8859-4.map create mode 100644 backend/libs/fpdf/makefont/iso-8859-5.map create mode 100644 backend/libs/fpdf/makefont/iso-8859-7.map create mode 100644 backend/libs/fpdf/makefont/iso-8859-9.map create mode 100644 backend/libs/fpdf/makefont/koi8-r.map create mode 100644 backend/libs/fpdf/makefont/koi8-u.map create mode 100644 backend/libs/fpdf/makefont/makefont.php create mode 100644 backend/libs/fpdf/makefont/ttfparser.php create mode 100644 backend/libs/fpdf/o/o/o/o/SmallLogo.altform-lightunplated.png create mode 100644 backend/libs/fpdf/o/o/o/o/SmallLogo.altform-lightunplated_targetsize-256.png create mode 100644 backend/libs/fpdf/o/o/o/o/SmallLogo.altform-unplated.png create mode 100644 backend/libs/fpdf/o/o/o/o/SmallLogo.altform-unplated_targetsize-256.png create mode 100644 backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-black.png create mode 100644 backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-black_altform-unplated_targetsize-256.png create mode 100644 backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-high.png create mode 100644 backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-high_altform-unplated_targetsize-256.png create mode 100644 backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-white.png create mode 100644 backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-white_altform-unplated_targetsize-256.png create mode 100644 backend/libs/fpdf/o/o/o/o/SmallLogo.png create mode 100644 backend/libs/fpdf/o/o/o/o/SmallLogo.scale-200.png create mode 100644 backend/libs/fpdf/o/o/o/o/SmallLogo.scale-400.png create mode 100644 backend/libs/fpdf/o/o/o/o/SplashScreen.png create mode 100644 backend/libs/fpdf/o/o/o/o/StoreLogo.png create mode 100644 backend/libs/fpdf/o/o/o/o/resources.pri create mode 100644 backend/libs/fpdf/tfpdf.php create mode 100644 backend/libs/fpdf/tutorial/20k_c1.txt create mode 100644 backend/libs/fpdf/tutorial/20k_c2.txt create mode 100644 backend/libs/fpdf/tutorial/CevicheOne-Regular-Licence.txt create mode 100644 backend/libs/fpdf/tutorial/CevicheOne-Regular.php create mode 100644 backend/libs/fpdf/tutorial/CevicheOne-Regular.ttf create mode 100644 backend/libs/fpdf/tutorial/CevicheOne-Regular.z create mode 100644 backend/libs/fpdf/tutorial/countries.txt create mode 100644 backend/libs/fpdf/tutorial/index.htm create mode 100644 backend/libs/fpdf/tutorial/logo.png create mode 100644 backend/libs/fpdf/tutorial/makefont.php create mode 100644 backend/libs/fpdf/tutorial/tuto1.htm create mode 100644 backend/libs/fpdf/tutorial/tuto1.php create mode 100644 backend/libs/fpdf/tutorial/tuto2.htm create mode 100644 backend/libs/fpdf/tutorial/tuto2.php create mode 100644 backend/libs/fpdf/tutorial/tuto3.htm create mode 100644 backend/libs/fpdf/tutorial/tuto3.php create mode 100644 backend/libs/fpdf/tutorial/tuto4.htm create mode 100644 backend/libs/fpdf/tutorial/tuto4.php create mode 100644 backend/libs/fpdf/tutorial/tuto5.htm create mode 100644 backend/libs/fpdf/tutorial/tuto5.php create mode 100644 backend/libs/fpdf/tutorial/tuto6.htm create mode 100644 backend/libs/fpdf/tutorial/tuto6.php create mode 100644 backend/libs/fpdf/tutorial/tuto7.htm create mode 100644 backend/libs/fpdf/tutorial/tuto7.php create mode 100644 backend/libs/registration/logo.jpg create mode 100644 backend/libs/registration/registration.php diff --git a/backend/api/courses/get.php b/backend/api/courses/get.php index d741fa7..8626a2a 100644 --- a/backend/api/courses/get.php +++ b/backend/api/courses/get.php @@ -9,7 +9,7 @@ require_once('../../utils/strings.php'); $authorization = $_SERVER["HTTP_AUTHORIZATION"]; - if(strcmp($authorization, API_KEY) !== 0) { + if(strcmp($authorization, INTERNAL_API_KEY) !== 0) { echo 'STOP TRYING TO STEAL MY DATA!'; exit; } diff --git a/backend/api/enroll/get.php b/backend/api/enroll/get.php index 592fab7..f02a05e 100644 --- a/backend/api/enroll/get.php +++ b/backend/api/enroll/get.php @@ -4,7 +4,7 @@ require_once('../../utils/strings.php'); $authorization = $_SERVER["HTTP_AUTHORIZATION"]; - if(strcmp($authorization, API_KEY) !== 0) { + if(strcmp($authorization, INTERNAL_API_KEY) !== 0) { echo 'STOP TRYING TO STEAL MY DATA!'; exit; } diff --git a/backend/api/enroll/set.php b/backend/api/enroll/set.php index 99d8d6f..8d66611 100644 --- a/backend/api/enroll/set.php +++ b/backend/api/enroll/set.php @@ -9,7 +9,7 @@ require_once('../../utils/tools.php'); $authorization = $_SERVER["HTTP_AUTHORIZATION"]; - if(strcmp($authorization, API_KEY) !== 0) { + if(strcmp($authorization, INTERNAL_API_KEY) !== 0) { echo 'STOP TRYING TO STEAL MY DATA!'; exit; } diff --git a/backend/api/registrations/footer.png b/backend/api/registrations/footer.png new file mode 100644 index 0000000000000000000000000000000000000000..c633644ea4009734be74e702a864b6ed0d01403e GIT binary patch literal 1105 zcmV-X1g`suP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D1LjFYK~!i%?bQ2k z&37EfasNPnkcceHg2=K=Mn)D3!elZs*%q=bW?2wKuqP)B$Gd^ZUSHj&0e?quB;ZKS0L3~eU z_9CG-34KWTjD)@r0XclKd4ZUz73;se?!z%Zl8`+b{ z{+%U%uyiuZrm%b}In&6Q&WZpl<5(4BRfyGL*2J@RCVwZgE{WV^a#L8J%7!`QrID9T z{ya8iP>@N%d^TsXWdU0kvTYIDvngCc;Zk-iXJ-z(Rn(T;%yXf=V&3vc5r+rCw5b^hmyUN?xS=+Cl7GyAZ10A9pdz1 z&K%)vG37@oKSsrIDo${&g!3g-{!3*k7fy1qjH=UAo#E11%jI&aE2ud~&3Ud=a`l3x z_9C@aT)SkcyG&g*H)<^PSE#?r&05Q?YmwA(`?{s!1`YMxxoNq3%hGt;a<3thJC^%* zEe{$axyQpu9^H@Rf#vZ-%M+JJmZy)S@`PtkoAUfwRGwR2MCXO&rOV6LdFArz&1vCj z_Q|G1zVQF=w?ux|67^@?-;4gk(J!L+ihfP^;_eXKfw;qQ2jvb;r)Oz=eWdPq-BG(^ zcUR!9L-(TFao42#au??=QMai(b(ed++V0w2x^7<`aAi;{)D1O6JyBa+ZPXvNNL^B+ z)GM`19aGcPH?>aPQv=mQwNaf^Gu2PER9#hL)myb!9afXoXSG`0R>ReEwOyT8^VNT? zKwHovvwCtfDIVml> znVj-dikhVowUg;;#!A|brmorB&Kx$4WpZ2d*_4j)UVE>-*U|A_d#}CM-fQo*_u6~y zz4l&vuf5ln7M^CGY>M~Vd+ojUUVE>-*WPRIwfEY4?Y(|;T6mg$vMJtc@Acc`b!^Ok X8VHV}j)Ka#00000NkvXXu0mjfTbv@z literal 0 HcmV?d00001 diff --git a/backend/api/registrations/get.php b/backend/api/registrations/get.php index b5c2cd9..21819f0 100644 --- a/backend/api/registrations/get.php +++ b/backend/api/registrations/get.php @@ -9,7 +9,7 @@ require_once('../../utils/strings.php'); $authorization = $_SERVER["HTTP_AUTHORIZATION"]; - if(strcmp($authorization, API_KEY) !== 0) { + if(strcmp($authorization, INTERNAL_API_KEY) !== 0) { echo 'STOP TRYING TO STEAL MY DATA!'; exit; } diff --git a/backend/api/registrations/header.png b/backend/api/registrations/header.png new file mode 100644 index 0000000000000000000000000000000000000000..8342ab3524a842da94c486e16e6445e0f7814ed9 GIT binary patch literal 1354 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⁣O1fye-nqS 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 P{#V+P{%S7D-$(yHT~*Dc literal 0 HcmV?d00001 diff --git a/backend/api/registrations/set.php b/backend/api/registrations/set.php index 449055c..62d3e94 100644 --- a/backend/api/registrations/set.php +++ b/backend/api/registrations/set.php @@ -1,96 +1,123 @@ format('Y-m-d'); - $registrationfrom = registrationDate()->format('Y-m-d'); + $querystr = "SELECT * FROM li_registrations + WHERE li_registrations.rid = ${rid}"; - $querystr = "SELECT * FROM li_registrations - WHERE li_registrations.rid = ${rid}"; - - $result = mysqli_query($connection, $querystr); - if($result->num_rows !== 0) { - $querystr = "UPDATE li_registrations SET firstname='${firstname}', lastname='${lastname}', birthday='${birthday}', - gender=${gender}, street='${street}', house=${house}, - zip='${zip}', city='${city}', phone='${phone}', email='${email}', - accountholder='${accountHolder}', iban='${iban}', bic='${bic}', bank='${bank}', - applicationconsent=${applicationconsent}, datachangeconsent=${datachangeconsent}, privacypolicyconsent=${privacypolicyconsent}, - directdebitconsent=${directdebitconsent}, returndebitconsent=${returndebitconsent}, datastorageconsent=${datastorageconsent}, multimediaconsent=${multimediaconsent}, - WHERE rid=${rid}"; - } else { - $querystr = "INSERT INTO li_registrations (firstname, lastname, birthday, gender, street, house, zip, city, phone, email, - accountholder, iban, bic, bank, - applicationconsent, datachangeconsent, privacypolicyconsent, directdebitconsent, - returndebitconsent, datastorageconsent, multimediaconsent, registrationfrom) - - VALUES('{$firstname}', '{$lastname}', '{$birthday}', {$gender}, '{$street}', {$house}, '{$zip}', '{$city}', '{$phone}', '{$email}', - '{$accountholder}', '{$iban}', '{$bic}', '{$bank}', - {$applicationconsent}, {$datachangeconsent}, {$privacypolicyconsent}, {$directdebitconsent}, - {$returndebitconsent}, {$datastorageconsent}, {$multimediaconsent}, '{$registrationfrom}')"; - - echo json_encode('{ "result": "' . $querystr . '" }'); - } + $result = mysqli_query($connection, $querystr); + if($result->num_rows !== 0) { + $querystr = "UPDATE li_registrations SET firstname='${firstname}', lastname='${lastname}', birthday='${birthday}', + gender=${gender}, street='${street}', house=${house}, + zip='${zip}', city='${city}', phone='${phone}', email='${email}', + accountholder='${accountHolder}', iban='${iban}', bic='${bic}', bank='${bank}', + applicationconsent=${applicationconsent}, datachangeconsent=${datachangeconsent}, privacypolicyconsent=${privacypolicyconsent}, + directdebitconsent=${directdebitconsent}, returndebitconsent=${returndebitconsent}, datastorageconsent=${datastorageconsent}, + multimediaconsent=${multimediaconsent}, + WHERE rid=${rid}"; + } else { + $querystr = "INSERT INTO li_registrations (firstname, lastname, birthday, gender, street, house, zip, city, phone, email, + accountholder, iban, bic, bank, + applicationconsent, datachangeconsent, privacypolicyconsent, directdebitconsent, + returndebitconsent, datastorageconsent, multimediaconsent, registrationfrom) - $result = mysqli_query($connection, $querystr); - - $to = REGISTRATION_MAIL; - $title = 'Neue Anmeldung bei Li-Dance'; - $message = " - Neue Anmeldung bei Li-Dance -

{$firstname} {$lastname} aus {$city} hat sich angemeldet.

-
- "; + VALUES('{$firstname}', '{$lastname}', '{$birthday}', {$gender}, '{$street}', {$house}, '{$zip}', '{$city}', '{$phone}', '{$email}', + '{$accountholder}', '{$iban}', '{$bic}', '{$bank}', + {$applicationconsent}, {$datachangeconsent}, {$privacypolicyconsent}, {$directdebitconsent}, + {$returndebitconsent}, {$datastorageconsent}, {$multimediaconsent}, '{$registrationfrom}')"; + } + + $result = mysqli_query($connection, $querystr); + + $currentDate = new DateTime(); + $formattedRegistrationFrom = new DateTime($registrationfrom); + $formattedBirthday = new DateTime($birthday); - $header[] = 'MIME-Version: 1.0'; - $header[] = 'Content-type: text/html; charset=iso-8859-1'; - $header[] = 'To: ' . REGISTRATION_MAIL; - $header[] = 'From: Li-Dance Registrierung '; - $header[] = 'X-Mailer: PHP/' . phpversion(); - - mb_send_mail($to, $title, $message, implode("\r\n", $header)); + $data = (object) [ + 'firstname' => $firstname, + 'lastname' => $lastname, + 'birthdate' => $formattedBirthday->format('d.m.Y'), + 'gender' => gender($gender), + 'street' => $street, + 'house' => $house, + 'zip' => $zip, + 'city' => $city, + 'phone' => $phone, + 'email' => $email, + 'accountholder' => $accountholder, + 'iban' => $iban, + 'bic' => $bic, + 'bank' => $bank, + 'registrationFrom' => $formattedRegistrationFrom->format('d.m.Y'), + 'rate' => getRegistrationPrice($birthday) . ',00' . chr(128), + 'pdfname' => "{$currentDate->format('Y-m-d')}-lidance-registrierung.pdf", + 'pdfcontent' => '' + ]; + + $data->pdfcontent = getRegistrationPdf($data); + + sendRegistrationMail($data); + sendConfirmationMail($data); + + } catch (Exception $e) { + $result = $e; + } + echo json_encode('{ "result": "' . $result . '" }'); ?> \ No newline at end of file diff --git a/backend/api/students/del.php b/backend/api/students/del.php index 87b856d..23ac518 100644 --- a/backend/api/students/del.php +++ b/backend/api/students/del.php @@ -9,7 +9,7 @@ require_once('../../utils/strings.php'); $authorization = $_SERVER["HTTP_AUTHORIZATION"]; - if(strcmp($authorization, API_KEY) !== 0) { + if(strcmp($authorization, INTERNAL_API_KEY) !== 0) { echo 'STOP TRYING TO STEAL MY DATA!'; exit; } diff --git a/backend/api/students/get.php b/backend/api/students/get.php index 5422d93..9ceacd7 100644 --- a/backend/api/students/get.php +++ b/backend/api/students/get.php @@ -7,7 +7,7 @@ header("Access-Control-Allow-Headers: Authorization"); $authorization = $_SERVER["HTTP_AUTHORIZATION"]; - if(strcmp($authorization, API_KEY) !== 0) { + if(strcmp($authorization, INTERNAL_API_KEY) !== 0) { echo 'STOP TRYING TO STEAL MY DATA!'; exit; } diff --git a/backend/api/students/set.php b/backend/api/students/set.php index 223a773..81d0b00 100644 --- a/backend/api/students/set.php +++ b/backend/api/students/set.php @@ -9,7 +9,7 @@ require_once('../../utils/tools.php'); $authorization = $_SERVER["HTTP_AUTHORIZATION"]; - if(strcmp($authorization, API_KEY) !== 0) { + if(strcmp($authorization, INTERNAL_API_KEY) !== 0) { echo 'STOP TRYING TO STEAL MY DATA!'; exit; } diff --git a/backend/api/visits/del.php b/backend/api/visits/del.php index be99ae6..43ecc91 100644 --- a/backend/api/visits/del.php +++ b/backend/api/visits/del.php @@ -9,7 +9,7 @@ require_once('../../utils/strings.php'); $authorization = $_SERVER["HTTP_AUTHORIZATION"]; - if(strcmp($authorization, API_KEY) !== 0) { + if(strcmp($authorization, INTERNAL_API_KEY) !== 0) { echo 'STOP TRYING TO STEAL MY DATA!'; exit; } diff --git a/backend/api/visits/get.php b/backend/api/visits/get.php index b3b0393..13516d2 100644 --- a/backend/api/visits/get.php +++ b/backend/api/visits/get.php @@ -9,7 +9,7 @@ require_once('../../utils/strings.php'); $authorization = $_SERVER["HTTP_AUTHORIZATION"]; - if(strcmp($authorization, API_KEY) !== 0) { + if(strcmp($authorization, INTERNAL_API_KEY) !== 0) { echo 'STOP TRYING TO STEAL MY DATA!'; exit; } diff --git a/backend/api/visits/set.php b/backend/api/visits/set.php index 6926841..dc64f8d 100644 --- a/backend/api/visits/set.php +++ b/backend/api/visits/set.php @@ -9,7 +9,7 @@ require_once('../../utils/strings.php'); $authorization = $_SERVER["HTTP_AUTHORIZATION"]; - if(strcmp($authorization, API_KEY) !== 0) { + if(strcmp($authorization, INTERNAL_API_KEY) !== 0) { echo 'STOP TRYING TO STEAL MY DATA!'; exit; } diff --git a/backend/libs/.htaccess b/backend/libs/.htaccess new file mode 100644 index 0000000..14249c5 --- /dev/null +++ b/backend/libs/.htaccess @@ -0,0 +1 @@ +Deny from all \ No newline at end of file diff --git a/backend/libs/fpdf/FAQ.htm b/backend/libs/fpdf/FAQ.htm new file mode 100644 index 0000000..d8a6d51 --- /dev/null +++ b/backend/libs/fpdf/FAQ.htm @@ -0,0 +1,270 @@ + + + + +FAQ + + + + +

FAQ

+ + +
    +
  • +

    1. What's exactly the license of FPDF? Are there any usage restrictions?

    +FPDF is released under a permissive license: there is no usage restriction. You may embed it +freely in your application (commercial or not), with or without modifications. +
  • + +
  • +

    2. I get the following error when I try to generate a PDF: Some data has already been output, can't send PDF file

    +You must send nothing to the browser except the PDF itself: no HTML, no space, no carriage return. A common +case is having extra blank at the end of an included script file.
    +
    +The message may be followed by this indication:
    +
    +(output started at script.php:X)
    +
    +which gives you exactly the script and line number responsible for the output. If you don't see it, +try adding this line at the very beginning of your script: +
    +
    ob_end_clean();
    +
    +
  • + +
  • +

    3. Accented letters are replaced by some strange characters like é.

    +Don't use UTF-8 with the standard fonts; they expect text encoded in windows-1252. +You can perform a conversion with iconv: +
    +
    $str = iconv('UTF-8', 'windows-1252', $str);
    +
    +Or with mbstring: +
    +
    $str = mb_convert_encoding($str, 'windows-1252', 'UTF-8');
    +
    +In case you need characters outside windows-1252, take a look at tutorial #7 or +tFPDF. +
  • + +
  • +

    4. I try to display the Euro symbol but it doesn't work.

    +The standard fonts have the Euro character at position 128. You can define a constant like this +for convenience: +
    +
    define('EURO', chr(128));
    +
    +
  • + +
  • +

    5. I try to display a variable in the Header method but nothing prints.

    +You have to use the global keyword to access global variables, for example: +
    +
    function Header()
    +{
    +    global $title;
    +
    +    $this->SetFont('Arial', 'B', 15);
    +    $this->Cell(0, 10, $title, 1, 1, 'C');
    +}
    +
    +$title = 'My title';
    +
    +Alternatively, you can use an object property: +
    +
    function Header()
    +{
    +    $this->SetFont('Arial', 'B', 15);
    +    $this->Cell(0, 10, $this->title, 1, 1, 'C');
    +}
    +
    +$pdf->title = 'My title';
    +
    +
  • + +
  • +

    6. I have defined the Header and Footer methods in my PDF class but nothing shows.

    +You have to create an object from the PDF class, not FPDF: +
    +
    $pdf = new PDF();
    +
    +
  • + +
  • +

    7. I can't make line breaks work. I put \n in the string printed by MultiCell but it doesn't work.

    +You have to enclose your string with double quotes, not single ones. +
  • + +
  • +

    8. I use jQuery to generate the PDF but it doesn't show.

    +Don't use an AJAX request to retrieve the PDF. +
  • + +
  • +

    9. I draw a frame with very precise dimensions, but when printed I notice some differences.

    +To respect dimensions, select "None" for the Page Scaling setting instead of "Shrink to Printable Area" in the print dialog box. +
  • + +
  • +

    10. I'd like to use the whole surface of the page, but when printed I always have some margins. How can I get rid of them?

    +Printers have physical margins (different depending on the models); it is therefore impossible to remove +them and print on the whole surface of the paper. +
  • + +
  • +

    11. How can I put a background in my PDF?

    +For a picture, call Image() in the Header() method, before any other output. To set a background color, use Rect(). +
  • + +
  • +

    12. How can I set a specific header or footer on the first page?

    +Just test the page number: +
    +
    function Header()
    +{
    +    if($this->PageNo()==1)
    +    {
    +        //First page
    +        ...
    +    }
    +    else
    +    {
    +        //Other pages
    +        ...
    +    }
    +}
    +
    +
  • + +
  • +

    13. I'd like to use extensions provided by different scripts. How can I combine them?

    +Use an inheritance chain. If you have two classes, say A in a.php: +
    +
    require('fpdf.php');
    +
    +class A extends FPDF
    +{
    +...
    +}
    +
    +and B in b.php: +
    +
    require('fpdf.php');
    +
    +class B extends FPDF
    +{
    +...
    +}
    +
    +then make B extend A: +
    +
    require('a.php');
    +
    +class B extends A
    +{
    +...
    +}
    +
    +and make your own class extend B: +
    +
    require('b.php');
    +
    +class PDF extends B
    +{
    +...
    +}
    +
    +$pdf = new PDF();
    +
    +
  • + +
  • +

    14. How can I open the PDF in a new tab?

    +Just do the same as you would for an HTML page or anything else: add a target="_blank" to your link or form. +
  • + +
  • +

    15. How can I send the PDF by email?

    +As for any other file, but an easy way is to use PHPMailer and +its in-memory attachment: +
    +
    $mail = new PHPMailer();
    +...
    +$doc = $pdf->Output('S');
    +$mail->AddStringAttachment($doc, 'doc.pdf', 'base64', 'application/pdf');
    +$mail->Send();
    +
    +
  • + +
  • +

    16. What's the limit of the file sizes I can generate with FPDF?

    +There is no particular limit. There are some constraints, however: +
    +
    +- There is usually a maximum memory size allocated to PHP scripts. For very big documents, +especially with images, the limit may be reached (the file being built in memory). The +parameter is configured in the php.ini file. +
    +
    +- The maximum execution time allocated to scripts defaults to 30 seconds. This limit can of course +be easily reached. It is configured in php.ini and may be altered dynamically with set_time_limit(). +
    +
    +You can work around the memory limit with this script. +
  • + +
  • +

    17. Can I modify a PDF with FPDF?

    +It's possible to import pages from an existing PDF document thanks to the +FPDI extension. +Then you can add some content to them. +
  • + +
  • +

    18. I'd like to make a search engine in PHP and index PDF files. Can I do it with FPDF?

    +No. But a GPL C utility does exist, pdftotext, which is able to extract the textual content from a PDF. +It's provided with the Xpdf package. +
  • + +
  • +

    19. Can I convert an HTML page to PDF with FPDF?

    +Not real-world pages. But a GPL C utility does exist, HTMLDOC, +which allows to do it and gives good results. +
  • + +
  • +

    20. Can I concatenate PDF files with FPDF?

    +Not directly, but it's possible to use FPDI +to perform that task. Some free command-line tools also exist: +pdftk and +mbtPdfAsm. +
  • +
+ + diff --git a/backend/libs/fpdf/changelog.htm b/backend/libs/fpdf/changelog.htm new file mode 100644 index 0000000..72d38e1 --- /dev/null +++ b/backend/libs/fpdf/changelog.htm @@ -0,0 +1,188 @@ + + + + +Changelog + + + + +

Changelog

+
+
v1.86 (2023-06-25)
+
+- Added a parameter to AddFont() to specify the directory where to load the font definition file.
+- Fixed a bug related to the PDF creation date.
+
+
v1.85 (2022-11-10)
+
+- Removed deprecation notices on PHP 8.2.
+- Removed notices when passing null values instead of strings.
+- The FPDF_VERSION constant was replaced by a class constant.
+- The creation date of the PDF now includes the timezone.
+- The content-type is now always application/pdf, even for downloads.
+
+
v1.84 (2021-08-28)
+
+- Fixed an issue related to annotations.
+
+
v1.83 (2021-04-18)
+
+- Fixed an issue related to annotations.
+
+
v1.82 (2019-12-07)
+
+- Removed a deprecation notice on PHP 7.4.
+
+
v1.81 (2015-12-20)
+
+- Added GetPageWidth() and GetPageHeight().
+- Fixed a bug in SetXY().
+
+
v1.8 (2015-11-29)
+
+- PHP 5.1.0 or higher is now required.
+- The MakeFont utility now subsets fonts, which can greatly reduce font sizes.
+- Added ToUnicode CMaps to improve text extraction.
+- Added a parameter to AddPage() to rotate the page.
+- Added a parameter to SetY() to indicate whether the x position should be reset or not.
+- Added a parameter to Output() to specify the encoding of the name, and special characters are now properly encoded. Additionally the order of the first two parameters was reversed to be more logical (however the old order is still supported for compatibility).
+- The Error() method now throws an exception.
+- Adding contents before the first AddPage() or after Close() now raises an error.
+- Outputting text with no font selected now raises an error.
+
+
v1.7 (2011-06-18)
+
+- The MakeFont utility has been completely rewritten and doesn't depend on ttf2pt1 anymore.
+- Alpha channel is now supported for PNGs.
+- When inserting an image, it's now possible to specify its resolution.
+- Default resolution for images was increased from 72 to 96 dpi.
+- When inserting a GIF image, no temporary file is used anymore if the PHP version is 5.1 or higher.
+- When output buffering is enabled and the PDF is about to be sent, the buffer is now cleared if it contains only a UTF-8 BOM and/or whitespace (instead of throwing an error).
+- Symbol and ZapfDingbats fonts now support underline style.
+- Custom page sizes are now checked to ensure that width is smaller than height.
+- Standard font files were changed to use the same format as user fonts.
+- A bug in the embedding of Type1 fonts was fixed.
+- A bug related to SetDisplayMode() and the current locale was fixed.
+- A display issue occurring with the Adobe Reader X plug-in was fixed.
+- An issue related to transparency with some versions of Adobe Reader was fixed.
+- The Content-Length header was removed because it caused an issue when the HTTP server applies compression.
+
+
v1.6 (2008-08-03)
+
+- PHP 4.3.10 or higher is now required.
+- GIF image support.
+- Images can now trigger page breaks.
+- Possibility to have different page formats in a single document.
+- Document properties (author, creator, keywords, subject and title) can now be specified in UTF-8.
+- Fixed a bug: when a PNG was inserted through a URL, an error sometimes occurred.
+- An automatic page break in Header() doesn't cause an infinite loop any more.
+- Removed some warning messages appearing with recent PHP versions.
+- Added HTTP headers to reduce problems with IE.
+
+
v1.53 (2004-12-31)
+
+- When the font subdirectory is in the same directory as fpdf.php, it's no longer necessary to define the FPDF_FONTPATH constant.
+- The array $HTTP_SERVER_VARS is no longer used. It could cause trouble on PHP5-based configurations with the register_long_arrays option disabled.
+- Fixed a problem related to Type1 font embedding which caused trouble to some PDF processors.
+- The file name sent to the browser could not contain a space character.
+- The Cell() method could not print the number 0 (you had to pass the string '0').
+
+
v1.52 (2003-12-30)
+
+- Image() now displays the image at 72 dpi if no dimension is given.
+- Output() takes a string as second parameter to indicate destination.
+- Open() is now called automatically by AddPage().
+- Inserting remote JPEG images doesn't generate an error any longer.
+- Decimal separator is forced to dot in the constructor.
+- Added several encodings (Turkish, Thai, Hebrew, Ukrainian and Vietnamese).
+- The last line of a right-aligned MultiCell() was not correctly aligned if it was terminated by a carriage return.
+- No more error message about already sent headers when outputting the PDF to the standard output from the command line.
+- The underlining was going too far for text containing characters \, ( or ).
+- $HTTP_ENV_VARS has been replaced by $HTTP_SERVER_VARS.
+
+
v1.51 (2002-08-03)
+
+- Type1 font support.
+- Added Baltic encoding.
+- The class now works internally in points with the origin at the bottom in order to avoid two bugs occurring with Acrobat 5:
  * The line thickness was too large when printed on Windows 98 SE and ME.
  * TrueType fonts didn't appear immediately inside the plug-in (a substitution font was used), one had to cause a window refresh to make them show up.
+- It's no longer necessary to set the decimal separator as dot to produce valid documents.
+- The clickable area in a cell was always on the left independently from the text alignment.
+- JPEG images in CMYK mode appeared in inverted colors.
+- Transparent PNG images in grayscale or true color mode were incorrectly handled.
+- Adding new fonts now works correctly even with the magic_quotes_runtime option set to on.
+
+
v1.5 (2002-05-28)
+
+- TrueType font (AddFont()) and encoding support (Western and Eastern Europe, Cyrillic and Greek).
+- Added Write() method.
+- Added underlined style.
+- Internal and external link support (AddLink(), SetLink(), Link()).
+- Added right margin management and methods SetRightMargin(), SetTopMargin().
+- Modification of SetDisplayMode() to select page layout.
+- The border parameter of MultiCell() now lets choose borders to draw as Cell().
+- When a document contains no page, Close() now calls AddPage() instead of causing a fatal error.
+
+
v1.41 (2002-03-13)
+
+- Fixed SetDisplayMode() which no longer worked (the PDF viewer used its default display).
+
+
v1.4 (2002-03-02)
+
+- PHP3 is no longer supported.
+- Page compression (SetCompression()).
+- Choice of page format and possibility to change orientation inside document.
+- Added AcceptPageBreak() method.
+- Ability to print the total number of pages (AliasNbPages()).
+- Choice of cell borders to draw.
+- New mode for Cell(): the current position can now move under the cell.
+- Ability to include an image by specifying height only (width is calculated automatically).
+- Fixed a bug: when a justified line triggered a page break, the footer inherited the corresponding word spacing.
+
+
v1.31 (2002-01-12)
+
+- Fixed a bug in drawing frame with MultiCell(): the last line always started from the left margin.
+- Removed Expires HTTP header (gives trouble in some situations).
+- Added Content-disposition HTTP header (seems to help in some situations).
+
+
v1.3 (2001-12-03)
+
+- Line break and text justification support (MultiCell()).
+- Color support (SetDrawColor(), SetFillColor(), SetTextColor()). Possibility to draw filled rectangles and paint cell background.
+- A cell whose width is declared null extends up to the right margin of the page.
+- Line width is now retained from page to page and defaults to 0.2 mm.
+- Added SetXY() method.
+- Fixed a passing by reference done in a deprecated manner for PHP4.
+
+
v1.2 (2001-11-11)
+
+- Added font metric files and GetStringWidth() method.
+- Centering and right-aligning text in cells.
+- Display mode control (SetDisplayMode()).
+- Added methods to set document properties (SetAuthor(), SetCreator(), SetKeywords(), SetSubject(), SetTitle()).
+- Possibility to force PDF download by browser.
+- Added SetX() and GetX() methods.
+- During automatic page break, current abscissa is now retained.
+
+
v1.11 (2001-10-20)
+
+- PNG support doesn't require PHP4/zlib any more. Data are now put directly into PDF without any decompression/recompression stage.
+- Image insertion now works correctly even with magic_quotes_runtime option set to on.
+
+
v1.1 (2001-10-07)
+
+- JPEG and PNG image support.
+
+
v1.01 (2001-10-03)
+
+- Fixed a bug involving page break: in case when Header() doesn't specify a font, the one from previous page was not restored and produced an incorrect document.
+
+
v1.0 (2001-09-17)
+
+- First version.
+
+
+ + diff --git a/backend/libs/fpdf/doc/__construct.htm b/backend/libs/fpdf/doc/__construct.htm new file mode 100644 index 0000000..2340022 --- /dev/null +++ b/backend/libs/fpdf/doc/__construct.htm @@ -0,0 +1,63 @@ + + + + +__construct + + + +

__construct

+__construct([string orientation [, string unit [, mixed size]]]) +

Description

+This is the class constructor. It allows to set up the page size, the orientation and the +unit of measure used in all methods (except for font sizes). +

Parameters

+
+
orientation
+
+Default page orientation. Possible values are (case insensitive): +
    +
  • P or Portrait
  • +
  • L or Landscape
  • +
+Default value is P. +
+
unit
+
+User unit. Possible values are: +
    +
  • pt: point
  • +
  • mm: millimeter
  • +
  • cm: centimeter
  • +
  • in: inch
  • +
+A point equals 1/72 of inch, that is to say about 0.35 mm (an inch being 2.54 cm). This +is a very common unit in typography; font sizes are expressed in that unit. +
+
+Default value is mm. +
+
size
+
+The size used for pages. It can be either one of the following values (case insensitive): +
    +
  • A3
  • +
  • A4
  • +
  • A5
  • +
  • Letter
  • +
  • Legal
  • +
+or an array containing the width and the height (expressed in the unit given by unit).
+
+Default value is A4. +
+
+

Example

+Document with a custom 100x150 mm page size: +
+
$pdf = new FPDF('P', 'mm', array(100,150));
+
+
+ + + diff --git a/backend/libs/fpdf/doc/acceptpagebreak.htm b/backend/libs/fpdf/doc/acceptpagebreak.htm new file mode 100644 index 0000000..0287399 --- /dev/null +++ b/backend/libs/fpdf/doc/acceptpagebreak.htm @@ -0,0 +1,63 @@ + + + + +AcceptPageBreak + + + +

AcceptPageBreak

+boolean AcceptPageBreak() +

Description

+Whenever a page break condition is met, the method is called, and the break is issued or not +depending on the returned value. The default implementation returns a value according to the +mode selected by SetAutoPageBreak(). +
+This method is called automatically and should not be called directly by the application. +

Example

+The method is overriden in an inherited class in order to obtain a 3 column layout: +
+
class PDF extends FPDF
+{
+    protected $col = 0;
+
+    function SetCol($col)
+    {
+        // Move position to a column
+        $this->col = $col;
+        $x = 10 + $col*65;
+        $this->SetLeftMargin($x);
+        $this->SetX($x);
+    }
+
+    function AcceptPageBreak()
+    {
+        if($this->col<2)
+        {
+            // Go to next column
+            $this->SetCol($this->col+1);
+            $this->SetY(10);
+            return false;
+        }
+        else
+        {
+            // Go back to first column and issue page break
+            $this->SetCol(0);
+            return true;
+        }
+    }
+}
+
+$pdf = new PDF();
+$pdf->AddPage();
+$pdf->SetFont('Arial', '', 12);
+for($i=1;$i<=300;$i++)
+    $pdf->Cell(0, 5, "Line $i", 0, 1);
+$pdf->Output();
+
+

See also

+SetAutoPageBreak +
+ + + diff --git a/backend/libs/fpdf/doc/addfont.htm b/backend/libs/fpdf/doc/addfont.htm new file mode 100644 index 0000000..d92ed49 --- /dev/null +++ b/backend/libs/fpdf/doc/addfont.htm @@ -0,0 +1,67 @@ + + + + +AddFont + + + +

AddFont

+AddFont(string family [, string style [, string file [, string dir]]]) +

Description

+Imports a TrueType, OpenType or Type1 font and makes it available. It is necessary to generate a font +definition file first with the MakeFont utility. +
+
+The definition file (and the font file itself in case of embedding) must be present in: +
    +
  • The directory indicated by the 4th parameter (if that parameter is set)
  • +
  • The directory indicated by the FPDF_FONTPATH constant (if that constant is defined)
  • +
  • The font directory located in the same directory as fpdf.php
  • +
+If the file is not found, the error "Could not include font definition file" is raised. +

Parameters

+
+
family
+
+Font family. The name can be chosen arbitrarily. If it is a standard family name, it will +override the corresponding font. +
+
style
+
+Font style. Possible values are (case insensitive): +
    +
  • empty string: regular
  • +
  • B: bold
  • +
  • I: italic
  • +
  • BI or IB: bold italic
  • +
+The default value is regular. +
+
file
+
+The name of the font definition file. +
+By default, it is built from the family and style, in lower case with no space. +
+
dir
+
+The directory where to load the definition file. +
+If not specified, the default directory will be used. +
+
+

Example

+
+
$pdf->AddFont('Comic', 'I');
+
+is equivalent to: +
+
$pdf->AddFont('Comic', 'I', 'comici.php');
+
+

See also

+SetFont +
+ + + diff --git a/backend/libs/fpdf/doc/addlink.htm b/backend/libs/fpdf/doc/addlink.htm new file mode 100644 index 0000000..9769613 --- /dev/null +++ b/backend/libs/fpdf/doc/addlink.htm @@ -0,0 +1,26 @@ + + + + +AddLink + + + +

AddLink

+int AddLink() +

Description

+Creates a new internal link and returns its identifier. An internal link is a clickable area +which directs to another place within the document. +
+The identifier can then be passed to Cell(), Write(), Image() or Link(). The destination is +defined with SetLink(). +

See also

+Cell, +Write, +Image, +Link, +SetLink +
+ + + diff --git a/backend/libs/fpdf/doc/addpage.htm b/backend/libs/fpdf/doc/addpage.htm new file mode 100644 index 0000000..45e6808 --- /dev/null +++ b/backend/libs/fpdf/doc/addpage.htm @@ -0,0 +1,61 @@ + + + + +AddPage + + + +

AddPage

+AddPage([string orientation [, mixed size [, int rotation]]]) +

Description

+Adds a new page to the document. If a page is already present, the Footer() method is called +first to output the footer. Then the page is added, the current position set to the top-left +corner according to the left and top margins, and Header() is called to display the header. +
+The font which was set before calling is automatically restored. There is no need to call +SetFont() again if you want to continue with the same font. The same is true for colors and +line width. +
+The origin of the coordinate system is at the top-left corner and increasing ordinates go +downwards. +

Parameters

+
+
orientation
+
+Page orientation. Possible values are (case insensitive): +
    +
  • P or Portrait
  • +
  • L or Landscape
  • +
+The default value is the one passed to the constructor. +
+
size
+
+Page size. It can be either one of the following values (case insensitive): +
    +
  • A3
  • +
  • A4
  • +
  • A5
  • +
  • Letter
  • +
  • Legal
  • +
+or an array containing the width and the height (expressed in user unit).
+
+The default value is the one passed to the constructor. +
+
rotation
+
+Angle by which to rotate the page. It must be a multiple of 90; positive values +mean clockwise rotation. The default value is 0. +
+
+

See also

+__construct, +Header, +Footer, +SetMargins +
+ + + diff --git a/backend/libs/fpdf/doc/aliasnbpages.htm b/backend/libs/fpdf/doc/aliasnbpages.htm new file mode 100644 index 0000000..279f7bb --- /dev/null +++ b/backend/libs/fpdf/doc/aliasnbpages.htm @@ -0,0 +1,45 @@ + + + + +AliasNbPages + + + +

AliasNbPages

+AliasNbPages([string alias]) +

Description

+Defines an alias for the total number of pages. It will be substituted as the document is +closed. +

Parameters

+
+
alias
+
+The alias. Default value: {nb}. +
+
+

Example

+
+
class PDF extends FPDF
+{
+    function Footer()
+    {
+        // Go to 1.5 cm from bottom
+        $this->SetY(-15);
+        // Select Arial italic 8
+        $this->SetFont('Arial', 'I', 8);
+        // Print current and total page numbers
+        $this->Cell(0, 10, 'Page '.$this->PageNo().'/{nb}', 0, 0, 'C');
+    }
+}
+
+$pdf = new PDF();
+$pdf->AliasNbPages();
+
+

See also

+PageNo, +Footer +
+ + + diff --git a/backend/libs/fpdf/doc/cell.htm b/backend/libs/fpdf/doc/cell.htm new file mode 100644 index 0000000..24f56d2 --- /dev/null +++ b/backend/libs/fpdf/doc/cell.htm @@ -0,0 +1,104 @@ + + + + +Cell + + + +

Cell

+Cell(float w [, float h [, string txt [, mixed border [, int ln [, string align [, boolean fill [, mixed link]]]]]]]) +

Description

+Prints a cell (rectangular area) with optional borders, background color and character string. +The upper-left corner of the cell corresponds to the current position. The text can be aligned +or centered. After the call, the current position moves to the right or to the next line. It is +possible to put a link on the text. +
+If automatic page breaking is enabled and the cell goes beyond the limit, a page break is +done before outputting. +

Parameters

+
+
w
+
+Cell width. If 0, the cell extends up to the right margin. +
+
h
+
+Cell height. +Default value: 0. +
+
txt
+
+String to print. +Default value: empty string. +
+
border
+
+Indicates if borders must be drawn around the cell. The value can be either a number: +
    +
  • 0: no border
  • +
  • 1: frame
  • +
+or a string containing some or all of the following characters (in any order): +
    +
  • L: left
  • +
  • T: top
  • +
  • R: right
  • +
  • B: bottom
  • +
+Default value: 0. +
+
ln
+
+Indicates where the current position should go after the call. Possible values are: +
    +
  • 0: to the right
  • +
  • 1: to the beginning of the next line
  • +
  • 2: below
  • +
+Putting 1 is equivalent to putting 0 and calling Ln() just after. +Default value: 0. +
+
align
+
+Allows to center or align the text. Possible values are: +
    +
  • L or empty string: left align (default value)
  • +
  • C: center
  • +
  • R: right align
  • +
+
+
fill
+
+Indicates if the cell background must be painted (true) or transparent (false). +Default value: false. +
+
link
+
+URL or identifier returned by AddLink(). +
+
+

Example

+
+
// Set font
+$pdf->SetFont('Arial', 'B', 16);
+// Move to 8 cm to the right
+$pdf->Cell(80);
+// Centered text in a framed 20*10 mm cell and line break
+$pdf->Cell(20, 10, 'Title', 1, 1, 'C');
+
+

See also

+SetFont, +SetDrawColor, +SetFillColor, +SetTextColor, +SetLineWidth, +AddLink, +Ln, +MultiCell, +Write, +SetAutoPageBreak +
+ + + diff --git a/backend/libs/fpdf/doc/close.htm b/backend/libs/fpdf/doc/close.htm new file mode 100644 index 0000000..081b237 --- /dev/null +++ b/backend/libs/fpdf/doc/close.htm @@ -0,0 +1,21 @@ + + + + +Close + + + +

Close

+Close() +

Description

+Terminates the PDF document. It is not necessary to call this method explicitly because Output() +does it automatically. +
+If the document contains no page, AddPage() is called to prevent from getting an invalid document. +

See also

+Output +
+ + + diff --git a/backend/libs/fpdf/doc/error.htm b/backend/libs/fpdf/doc/error.htm new file mode 100644 index 0000000..bbc3643 --- /dev/null +++ b/backend/libs/fpdf/doc/error.htm @@ -0,0 +1,26 @@ + + + + +Error + + + +

Error

+Error(string msg) +

Description

+This method is automatically called in case of a fatal error; it simply throws an exception +with the provided message.
+An inherited class may override it to customize the error handling but the method should +never return, otherwise the resulting document would probably be invalid. +

Parameters

+
+
msg
+
+The error message. +
+
+
+ + + diff --git a/backend/libs/fpdf/doc/footer.htm b/backend/libs/fpdf/doc/footer.htm new file mode 100644 index 0000000..085064e --- /dev/null +++ b/backend/libs/fpdf/doc/footer.htm @@ -0,0 +1,35 @@ + + + + +Footer + + + +

Footer

+Footer() +

Description

+This method is used to render the page footer. It is automatically called by AddPage() and +Close() and should not be called directly by the application. The implementation in FPDF is +empty, so you have to subclass it and override the method if you want a specific processing. +

Example

+
+
class PDF extends FPDF
+{
+    function Footer()
+    {
+        // Go to 1.5 cm from bottom
+        $this->SetY(-15);
+        // Select Arial italic 8
+        $this->SetFont('Arial', 'I', 8);
+        // Print centered page number
+        $this->Cell(0, 10, 'Page '.$this->PageNo(), 0, 0, 'C');
+    }
+}
+
+

See also

+Header +
+ + + diff --git a/backend/libs/fpdf/doc/getpageheight.htm b/backend/libs/fpdf/doc/getpageheight.htm new file mode 100644 index 0000000..01f06b6 --- /dev/null +++ b/backend/libs/fpdf/doc/getpageheight.htm @@ -0,0 +1,18 @@ + + + + +GetPageHeight + + + +

GetPageHeight

+float GetPageHeight() +

Description

+Returns the current page height. +

See also

+GetPageWidth +
+ + + diff --git a/backend/libs/fpdf/doc/getpagewidth.htm b/backend/libs/fpdf/doc/getpagewidth.htm new file mode 100644 index 0000000..ba8c6b4 --- /dev/null +++ b/backend/libs/fpdf/doc/getpagewidth.htm @@ -0,0 +1,18 @@ + + + + +GetPageWidth + + + +

GetPageWidth

+float GetPageWidth() +

Description

+Returns the current page width. +

See also

+GetPageHeight +
+ + + diff --git a/backend/libs/fpdf/doc/getstringwidth.htm b/backend/libs/fpdf/doc/getstringwidth.htm new file mode 100644 index 0000000..068ba92 --- /dev/null +++ b/backend/libs/fpdf/doc/getstringwidth.htm @@ -0,0 +1,23 @@ + + + + +GetStringWidth + + + +

GetStringWidth

+float GetStringWidth(string s) +

Description

+Returns the length of a string in user unit. A font must be selected. +

Parameters

+
+
s
+
+The string whose length is to be computed. +
+
+
+ + + diff --git a/backend/libs/fpdf/doc/getx.htm b/backend/libs/fpdf/doc/getx.htm new file mode 100644 index 0000000..a5bc02b --- /dev/null +++ b/backend/libs/fpdf/doc/getx.htm @@ -0,0 +1,20 @@ + + + + +GetX + + + +

GetX

+float GetX() +

Description

+Returns the abscissa of the current position. +

See also

+SetX, +GetY, +SetY +
+ + + diff --git a/backend/libs/fpdf/doc/gety.htm b/backend/libs/fpdf/doc/gety.htm new file mode 100644 index 0000000..44177a9 --- /dev/null +++ b/backend/libs/fpdf/doc/gety.htm @@ -0,0 +1,20 @@ + + + + +GetY + + + +

GetY

+float GetY() +

Description

+Returns the ordinate of the current position. +

See also

+SetY, +GetX, +SetX +
+ + + diff --git a/backend/libs/fpdf/doc/header.htm b/backend/libs/fpdf/doc/header.htm new file mode 100644 index 0000000..14eaa58 --- /dev/null +++ b/backend/libs/fpdf/doc/header.htm @@ -0,0 +1,37 @@ + + + + +Header + + + +

Header

+Header() +

Description

+This method is used to render the page header. It is automatically called by AddPage() and +should not be called directly by the application. The implementation in FPDF is empty, so +you have to subclass it and override the method if you want a specific processing. +

Example

+
+
class PDF extends FPDF
+{
+    function Header()
+    {
+        // Select Arial bold 15
+        $this->SetFont('Arial', 'B', 15);
+        // Move to the right
+        $this->Cell(80);
+        // Framed title
+        $this->Cell(30, 10, 'Title', 1, 0, 'C');
+        // Line break
+        $this->Ln(20);
+    }
+}
+
+

See also

+Footer +
+ + + diff --git a/backend/libs/fpdf/doc/image.htm b/backend/libs/fpdf/doc/image.htm new file mode 100644 index 0000000..f53a242 --- /dev/null +++ b/backend/libs/fpdf/doc/image.htm @@ -0,0 +1,99 @@ + + + + +Image + + + +

Image

+Image(string file [, float x [, float y [, float w [, float h [, string type [, mixed link]]]]]]) +

Description

+Puts an image. The size it will take on the page can be specified in different ways: +
    +
  • explicit width and height (expressed in user unit or dpi)
  • +
  • one explicit dimension, the other being calculated automatically in order to keep the original proportions
  • +
  • no explicit dimension, in which case the image is put at 96 dpi
  • +
+Supported formats are JPEG, PNG and GIF. The GD extension is required for GIF. +
+
+For JPEGs, all flavors are allowed: +
    +
  • gray scales
  • +
  • true colors (24 bits)
  • +
  • CMYK (32 bits)
  • +
+For PNGs, are allowed: +
    +
  • gray scales on at most 8 bits (256 levels)
  • +
  • indexed colors
  • +
  • true colors (24 bits)
  • +
+For GIFs: in case of an animated GIF, only the first frame is displayed.
+
+Transparency is supported.
+
+The format can be specified explicitly or inferred from the file extension.
+
+It is possible to put a link on the image.
+
+Remark: if an image is used several times, only one copy is embedded in the file. +

Parameters

+
+
file
+
+Path or URL of the image. +
+
x
+
+Abscissa of the upper-left corner. If not specified or equal to null, the current abscissa +is used. +
+
y
+
+Ordinate of the upper-left corner. If not specified or equal to null, the current ordinate +is used; moreover, a page break is triggered first if necessary (in case automatic page breaking is enabled) +and, after the call, the current ordinate is moved to the bottom of the image. +
+
w
+
+Width of the image in the page. There are three cases: +
    +
  • If the value is positive, it represents the width in user unit
  • +
  • If the value is negative, the absolute value represents the horizontal resolution in dpi
  • +
  • If the value is not specified or equal to zero, it is automatically calculated
  • +
+
+
h
+
+Height of the image in the page. There are three cases: +
    +
  • If the value is positive, it represents the height in user unit
  • +
  • If the value is negative, the absolute value represents the vertical resolution in dpi
  • +
  • If the value is not specified or equal to zero, it is automatically calculated
  • +
+
+
type
+
+Image format. Possible values are (case insensitive): JPG, JPEG, PNG and GIF. +If not specified, the type is inferred from the file extension. +
+
link
+
+URL or identifier returned by AddLink(). +
+
+

Example

+
+
// Insert a logo in the top-left corner at 300 dpi
+$pdf->Image('logo.png', 10, 10, -300);
+// Insert a dynamic image from a URL
+$pdf->Image('http://chart.googleapis.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World', 60, 30, 90, 0, 'PNG');
+
+

See also

+AddLink +
+ + + diff --git a/backend/libs/fpdf/doc/index.htm b/backend/libs/fpdf/doc/index.htm new file mode 100644 index 0000000..4c4750e --- /dev/null +++ b/backend/libs/fpdf/doc/index.htm @@ -0,0 +1,59 @@ + + + + +Documentation + + + +

Documentation

+__construct - constructor
+AcceptPageBreak - accept or not automatic page break
+AddFont - add a new font
+AddLink - create an internal link
+AddPage - add a new page
+AliasNbPages - define an alias for number of pages
+Cell - print a cell
+Close - terminate the document
+Error - fatal error
+Footer - page footer
+GetPageHeight - get current page height
+GetPageWidth - get current page width
+GetStringWidth - compute string length
+GetX - get current x position
+GetY - get current y position
+Header - page header
+Image - output an image
+Line - draw a line
+Link - put a link
+Ln - line break
+MultiCell - print text with line breaks
+Output - save or send the document
+PageNo - page number
+Rect - draw a rectangle
+SetAuthor - set the document author
+SetAutoPageBreak - set the automatic page breaking mode
+SetCompression - turn compression on or off
+SetCreator - set document creator
+SetDisplayMode - set display mode
+SetDrawColor - set drawing color
+SetFillColor - set filling color
+SetFont - set font
+SetFontSize - set font size
+SetKeywords - associate keywords with document
+SetLeftMargin - set left margin
+SetLineWidth - set line width
+SetLink - set internal link destination
+SetMargins - set margins
+SetRightMargin - set right margin
+SetSubject - set document subject
+SetTextColor - set text color
+SetTitle - set document title
+SetTopMargin - set top margin
+SetX - set current x position
+SetXY - set current x and y positions
+SetY - set current y position and optionally reset x
+Text - print a string
+Write - print flowing text
+ + diff --git a/backend/libs/fpdf/doc/line.htm b/backend/libs/fpdf/doc/line.htm new file mode 100644 index 0000000..172339c --- /dev/null +++ b/backend/libs/fpdf/doc/line.htm @@ -0,0 +1,38 @@ + + + + +Line + + + +

Line

+Line(float x1, float y1, float x2, float y2) +

Description

+Draws a line between two points. +

Parameters

+
+
x1
+
+Abscissa of first point. +
+
y1
+
+Ordinate of first point. +
+
x2
+
+Abscissa of second point. +
+
y2
+
+Ordinate of second point. +
+
+

See also

+SetLineWidth, +SetDrawColor +
+ + + diff --git a/backend/libs/fpdf/doc/link.htm b/backend/libs/fpdf/doc/link.htm new file mode 100644 index 0000000..cdca7c8 --- /dev/null +++ b/backend/libs/fpdf/doc/link.htm @@ -0,0 +1,46 @@ + + + + +Link + + + +

Link

+Link(float x, float y, float w, float h, mixed link) +

Description

+Puts a link on a rectangular area of the page. Text or image links are generally put via Cell(), +Write() or Image(), but this method can be useful for instance to define a clickable area inside +an image. +

Parameters

+
+
x
+
+Abscissa of the upper-left corner of the rectangle. +
+
y
+
+Ordinate of the upper-left corner of the rectangle. +
+
w
+
+Width of the rectangle. +
+
h
+
+Height of the rectangle. +
+
link
+
+URL or identifier returned by AddLink(). +
+
+

See also

+AddLink, +Cell, +Write, +Image +
+ + + diff --git a/backend/libs/fpdf/doc/ln.htm b/backend/libs/fpdf/doc/ln.htm new file mode 100644 index 0000000..de02ddc --- /dev/null +++ b/backend/libs/fpdf/doc/ln.htm @@ -0,0 +1,28 @@ + + + + +Ln + + + +

Ln

+Ln([float h]) +

Description

+Performs a line break. The current abscissa goes back to the left margin and the ordinate +increases by the amount passed in parameter. +

Parameters

+
+
h
+
+The height of the break. +
+By default, the value equals the height of the last printed cell. +
+
+

See also

+Cell +
+ + + diff --git a/backend/libs/fpdf/doc/multicell.htm b/backend/libs/fpdf/doc/multicell.htm new file mode 100644 index 0000000..7669370 --- /dev/null +++ b/backend/libs/fpdf/doc/multicell.htm @@ -0,0 +1,76 @@ + + + + +MultiCell + + + +

MultiCell

+MultiCell(float w, float h, string txt [, mixed border [, string align [, boolean fill]]]) +

Description

+This method allows printing text with line breaks. They can be automatic (as soon as the +text reaches the right border of the cell) or explicit (via the \n character). As many cells +as necessary are output, one below the other. +
+Text can be aligned, centered or justified. The cell block can be framed and the background +painted. +

Parameters

+
+
w
+
+Width of cells. If 0, they extend up to the right margin of the page. +
+
h
+
+Height of cells. +
+
txt
+
+String to print. +
+
border
+
+Indicates if borders must be drawn around the cell block. The value can be either a number: +
    +
  • 0: no border
  • +
  • 1: frame
  • +
+or a string containing some or all of the following characters (in any order): +
    +
  • L: left
  • +
  • T: top
  • +
  • R: right
  • +
  • B: bottom
  • +
+Default value: 0. +
+
align
+
+Sets the text alignment. Possible values are: +
    +
  • L: left alignment
  • +
  • C: center
  • +
  • R: right alignment
  • +
  • J: justification (default value)
  • +
+
+
fill
+
+Indicates if the cell background must be painted (true) or transparent (false). +Default value: false. +
+
+

See also

+SetFont, +SetDrawColor, +SetFillColor, +SetTextColor, +SetLineWidth, +Cell, +Write, +SetAutoPageBreak +
+ + + diff --git a/backend/libs/fpdf/doc/output.htm b/backend/libs/fpdf/doc/output.htm new file mode 100644 index 0000000..b8d6e2b --- /dev/null +++ b/backend/libs/fpdf/doc/output.htm @@ -0,0 +1,55 @@ + + + + +Output + + + +

Output

+string Output([string dest [, string name [, boolean isUTF8]]]) +

Description

+Send the document to a given destination: browser, file or string. In the case of a browser, the +PDF viewer may be used or a download may be forced. +
+The method first calls Close() if necessary to terminate the document. +

Parameters

+
+
dest
+
+Destination where to send the document. It can be one of the following: +
    +
  • I: send the file inline to the browser. The PDF viewer is used if available.
  • +
  • D: send to the browser and force a file download with the name given by name.
  • +
  • F: save to a local file with the name given by name (may include a path).
  • +
  • S: return the document as a string.
  • +
+The default value is I. +
+
name
+
+The name of the file. It is ignored in case of destination S.
+The default value is doc.pdf. +
+
isUTF8
+
+Indicates if name is encoded in ISO-8859-1 (false) or UTF-8 (true). +Only used for destinations I and D.
+The default value is false. +
+
+

Example

+Save the document to a local directory: +
+
$pdf->Output('F', 'reports/report.pdf');
+
+Force a download: +
+
$pdf->Output('D', 'report.pdf');
+
+

See also

+Close +
+ + + diff --git a/backend/libs/fpdf/doc/pageno.htm b/backend/libs/fpdf/doc/pageno.htm new file mode 100644 index 0000000..6a60beb --- /dev/null +++ b/backend/libs/fpdf/doc/pageno.htm @@ -0,0 +1,18 @@ + + + + +PageNo + + + +

PageNo

+int PageNo() +

Description

+Returns the current page number. +

See also

+AliasNbPages +
+ + + diff --git a/backend/libs/fpdf/doc/rect.htm b/backend/libs/fpdf/doc/rect.htm new file mode 100644 index 0000000..98e04d9 --- /dev/null +++ b/backend/libs/fpdf/doc/rect.htm @@ -0,0 +1,48 @@ + + + + +Rect + + + +

Rect

+Rect(float x, float y, float w, float h [, string style]) +

Description

+Outputs a rectangle. It can be drawn (border only), filled (with no border) or both. +

Parameters

+
+
x
+
+Abscissa of upper-left corner. +
+
y
+
+Ordinate of upper-left corner. +
+
w
+
+Width. +
+
h
+
+Height. +
+
style
+
+Style of rendering. Possible values are: +
    +
  • D or empty string: draw. This is the default value.
  • +
  • F: fill
  • +
  • DF or FD: draw and fill
  • +
+
+
+

See also

+SetLineWidth, +SetDrawColor, +SetFillColor +
+ + + diff --git a/backend/libs/fpdf/doc/setauthor.htm b/backend/libs/fpdf/doc/setauthor.htm new file mode 100644 index 0000000..f6e96f3 --- /dev/null +++ b/backend/libs/fpdf/doc/setauthor.htm @@ -0,0 +1,33 @@ + + + + +SetAuthor + + + +

SetAuthor

+SetAuthor(string author [, boolean isUTF8]) +

Description

+Defines the author of the document. +

Parameters

+
+
author
+
+The name of the author. +
+
isUTF8
+
+Indicates if the string is encoded in ISO-8859-1 (false) or UTF-8 (true).
+Default value: false. +
+
+

See also

+SetCreator, +SetKeywords, +SetSubject, +SetTitle +
+ + + diff --git a/backend/libs/fpdf/doc/setautopagebreak.htm b/backend/libs/fpdf/doc/setautopagebreak.htm new file mode 100644 index 0000000..64492cb --- /dev/null +++ b/backend/libs/fpdf/doc/setautopagebreak.htm @@ -0,0 +1,33 @@ + + + + +SetAutoPageBreak + + + +

SetAutoPageBreak

+SetAutoPageBreak(boolean auto [, float margin]) +

Description

+Enables or disables the automatic page breaking mode. When enabling, the second parameter is +the distance from the bottom of the page that defines the triggering limit. By default, the +mode is on and the margin is 2 cm. +

Parameters

+
+
auto
+
+Boolean indicating if mode should be on or off. +
+
margin
+
+Distance from the bottom of the page. +
+
+

See also

+Cell, +MultiCell, +AcceptPageBreak +
+ + + diff --git a/backend/libs/fpdf/doc/setcompression.htm b/backend/libs/fpdf/doc/setcompression.htm new file mode 100644 index 0000000..81a4c74 --- /dev/null +++ b/backend/libs/fpdf/doc/setcompression.htm @@ -0,0 +1,31 @@ + + + + +SetCompression + + + +

SetCompression

+SetCompression(boolean compress) +

Description

+Activates or deactivates page compression. When activated, the internal representation of +each page is compressed, which leads to a compression ratio of about 2 for the resulting +document. +
+Compression is on by default. +
+
+Note: the Zlib extension is required for this feature. If not present, compression +will be turned off. +

Parameters

+
+
compress
+
+Boolean indicating if compression must be enabled. +
+
+
+ + + diff --git a/backend/libs/fpdf/doc/setcreator.htm b/backend/libs/fpdf/doc/setcreator.htm new file mode 100644 index 0000000..95135f6 --- /dev/null +++ b/backend/libs/fpdf/doc/setcreator.htm @@ -0,0 +1,34 @@ + + + + +SetCreator + + + +

SetCreator

+SetCreator(string creator [, boolean isUTF8]) +

Description

+Defines the creator of the document. This is typically the name of the application that +generates the PDF. +

Parameters

+
+
creator
+
+The name of the creator. +
+
isUTF8
+
+Indicates if the string is encoded in ISO-8859-1 (false) or UTF-8 (true).
+Default value: false. +
+
+

See also

+SetAuthor, +SetKeywords, +SetSubject, +SetTitle +
+ + + diff --git a/backend/libs/fpdf/doc/setdisplaymode.htm b/backend/libs/fpdf/doc/setdisplaymode.htm new file mode 100644 index 0000000..a1cbc54 --- /dev/null +++ b/backend/libs/fpdf/doc/setdisplaymode.htm @@ -0,0 +1,45 @@ + + + + +SetDisplayMode + + + +

SetDisplayMode

+SetDisplayMode(mixed zoom [, string layout]) +

Description

+Defines the way the document is to be displayed by the viewer. The zoom level can be set: pages can be +displayed entirely on screen, occupy the full width of the window, use real size, be scaled by a +specific zooming factor or use viewer default (configured in the Preferences menu of Adobe Reader). +The page layout can be specified too: single at once, continuous display, two columns or viewer +default. +

Parameters

+
+
zoom
+
+The zoom to use. It can be one of the following string values: +
    +
  • fullpage: displays the entire page on screen
  • +
  • fullwidth: uses maximum width of window
  • +
  • real: uses real size (equivalent to 100% zoom)
  • +
  • default: uses viewer default mode
  • +
+or a number indicating the zooming factor to use. +
+
layout
+
+The page layout. Possible values are: +
    +
  • single: displays one page at once
  • +
  • continuous: displays pages continuously
  • +
  • two: displays two pages on two columns
  • +
  • default: uses viewer default mode
  • +
+Default value is default. +
+
+
+ + + diff --git a/backend/libs/fpdf/doc/setdrawcolor.htm b/backend/libs/fpdf/doc/setdrawcolor.htm new file mode 100644 index 0000000..e58cf5e --- /dev/null +++ b/backend/libs/fpdf/doc/setdrawcolor.htm @@ -0,0 +1,41 @@ + + + + +SetDrawColor + + + +

SetDrawColor

+SetDrawColor(int r [, int g, int b]) +

Description

+Defines the color used for all drawing operations (lines, rectangles and cell borders). It +can be expressed in RGB components or gray scale. The method can be called before the first +page is created and the value is retained from page to page. +

Parameters

+
+
r
+
+If g et b are given, red component; if not, indicates the gray level. +Value between 0 and 255. +
+
g
+
+Green component (between 0 and 255). +
+
b
+
+Blue component (between 0 and 255). +
+
+

See also

+SetFillColor, +SetTextColor, +Line, +Rect, +Cell, +MultiCell +
+ + + diff --git a/backend/libs/fpdf/doc/setfillcolor.htm b/backend/libs/fpdf/doc/setfillcolor.htm new file mode 100644 index 0000000..2d4b641 --- /dev/null +++ b/backend/libs/fpdf/doc/setfillcolor.htm @@ -0,0 +1,40 @@ + + + + +SetFillColor + + + +

SetFillColor

+SetFillColor(int r [, int g, int b]) +

Description

+Defines the color used for all filling operations (filled rectangles and cell backgrounds). +It can be expressed in RGB components or gray scale. The method can be called before the first +page is created and the value is retained from page to page. +

Parameters

+
+
r
+
+If g and b are given, red component; if not, indicates the gray level. +Value between 0 and 255. +
+
g
+
+Green component (between 0 and 255). +
+
b
+
+Blue component (between 0 and 255). +
+
+

See also

+SetDrawColor, +SetTextColor, +Rect, +Cell, +MultiCell +
+ + + diff --git a/backend/libs/fpdf/doc/setfont.htm b/backend/libs/fpdf/doc/setfont.htm new file mode 100644 index 0000000..137fa99 --- /dev/null +++ b/backend/libs/fpdf/doc/setfont.htm @@ -0,0 +1,78 @@ + + + + +SetFont + + + +

SetFont

+SetFont(string family [, string style [, float size]]) +

Description

+Sets the font used to print character strings. It is mandatory to call this method at least once before printing text. +
+
+The font can be either a standard one or a font added by the AddFont() method. Standard fonts +use the Windows encoding cp1252 (Western Europe). +
+
+The method can be called before the first page is created and the font is kept from page to page. +
+
+If you just wish to change the current font size, it is simpler to call SetFontSize(). +

Parameters

+
+
family
+
+Family font. It can be either a name defined by AddFont() or one of the standard families (case +insensitive): +
    +
  • Courier (fixed-width)
  • +
  • Helvetica or Arial (synonymous; sans serif)
  • +
  • Times (serif)
  • +
  • Symbol (symbolic)
  • +
  • ZapfDingbats (symbolic)
  • +
+It is also possible to pass an empty string. In that case, the current family is kept. +
+
style
+
+Font style. Possible values are (case insensitive): +
    +
  • empty string: regular
  • +
  • B: bold
  • +
  • I: italic
  • +
  • U: underline
  • +
+or any combination. The default value is regular. +Bold and italic styles do not apply to Symbol and ZapfDingbats. +
+
size
+
+Font size in points. +
+The default value is the current size. If no size has been specified since the beginning of +the document, the value is 12. +
+
+

Example

+
+
// Times regular 12
+$pdf->SetFont('Times');
+// Arial bold 14
+$pdf->SetFont('Arial', 'B', 14);
+// Removes bold
+$pdf->SetFont('');
+// Times bold, italic and underlined 14
+$pdf->SetFont('Times', 'BIU');
+
+

See also

+AddFont, +SetFontSize, +Cell, +MultiCell, +Write +
+ + + diff --git a/backend/libs/fpdf/doc/setfontsize.htm b/backend/libs/fpdf/doc/setfontsize.htm new file mode 100644 index 0000000..b70cf05 --- /dev/null +++ b/backend/libs/fpdf/doc/setfontsize.htm @@ -0,0 +1,25 @@ + + + + +SetFontSize + + + +

SetFontSize

+SetFontSize(float size) +

Description

+Defines the size of the current font. +

Parameters

+
+
size
+
+The size (in points). +
+
+

See also

+SetFont +
+ + + diff --git a/backend/libs/fpdf/doc/setkeywords.htm b/backend/libs/fpdf/doc/setkeywords.htm new file mode 100644 index 0000000..8cd12f6 --- /dev/null +++ b/backend/libs/fpdf/doc/setkeywords.htm @@ -0,0 +1,33 @@ + + + + +SetKeywords + + + +

SetKeywords

+SetKeywords(string keywords [, boolean isUTF8]) +

Description

+Associates keywords with the document, generally in the form 'keyword1 keyword2 ...'. +

Parameters

+
+
keywords
+
+The list of keywords. +
+
isUTF8
+
+Indicates if the string is encoded in ISO-8859-1 (false) or UTF-8 (true).
+Default value: false. +
+
+

See also

+SetAuthor, +SetCreator, +SetSubject, +SetTitle +
+ + + diff --git a/backend/libs/fpdf/doc/setleftmargin.htm b/backend/libs/fpdf/doc/setleftmargin.htm new file mode 100644 index 0000000..4d732ac --- /dev/null +++ b/backend/libs/fpdf/doc/setleftmargin.htm @@ -0,0 +1,30 @@ + + + + +SetLeftMargin + + + +

SetLeftMargin

+SetLeftMargin(float margin) +

Description

+Defines the left margin. The method can be called before creating the first page. +
+If the current abscissa gets out of page, it is brought back to the margin. +

Parameters

+
+
margin
+
+The margin. +
+
+

See also

+SetTopMargin, +SetRightMargin, +SetAutoPageBreak, +SetMargins +
+ + + diff --git a/backend/libs/fpdf/doc/setlinewidth.htm b/backend/libs/fpdf/doc/setlinewidth.htm new file mode 100644 index 0000000..a22f2b9 --- /dev/null +++ b/backend/libs/fpdf/doc/setlinewidth.htm @@ -0,0 +1,29 @@ + + + + +SetLineWidth + + + +

SetLineWidth

+SetLineWidth(float width) +

Description

+Defines the line width. By default, the value equals 0.2 mm. The method can be called before +the first page is created and the value is retained from page to page. +

Parameters

+
+
width
+
+The width. +
+
+

See also

+Line, +Rect, +Cell, +MultiCell +
+ + + diff --git a/backend/libs/fpdf/doc/setlink.htm b/backend/libs/fpdf/doc/setlink.htm new file mode 100644 index 0000000..0c56beb --- /dev/null +++ b/backend/libs/fpdf/doc/setlink.htm @@ -0,0 +1,34 @@ + + + + +SetLink + + + +

SetLink

+SetLink(int link [, float y [, int page]]) +

Description

+Defines the page and position a link points to. +

Parameters

+
+
link
+
+The link identifier returned by AddLink(). +
+
y
+
+Ordinate of target position; -1 indicates the current position. +The default value is 0 (top of page). +
+
page
+
+Number of target page; -1 indicates the current page. This is the default value. +
+
+

See also

+AddLink +
+ + + diff --git a/backend/libs/fpdf/doc/setmargins.htm b/backend/libs/fpdf/doc/setmargins.htm new file mode 100644 index 0000000..a9285fe --- /dev/null +++ b/backend/libs/fpdf/doc/setmargins.htm @@ -0,0 +1,37 @@ + + + + +SetMargins + + + +

SetMargins

+SetMargins(float left, float top [, float right]) +

Description

+Defines the left, top and right margins. By default, they equal 1 cm. Call this method to change +them. +

Parameters

+
+
left
+
+Left margin. +
+
top
+
+Top margin. +
+
right
+
+Right margin. Default value is the left one. +
+
+

See also

+SetLeftMargin, +SetTopMargin, +SetRightMargin, +SetAutoPageBreak +
+ + + diff --git a/backend/libs/fpdf/doc/setrightmargin.htm b/backend/libs/fpdf/doc/setrightmargin.htm new file mode 100644 index 0000000..18b1433 --- /dev/null +++ b/backend/libs/fpdf/doc/setrightmargin.htm @@ -0,0 +1,28 @@ + + + + +SetRightMargin + + + +

SetRightMargin

+SetRightMargin(float margin) +

Description

+Defines the right margin. The method can be called before creating the first page. +

Parameters

+
+
margin
+
+The margin. +
+
+

See also

+SetLeftMargin, +SetTopMargin, +SetAutoPageBreak, +SetMargins +
+ + + diff --git a/backend/libs/fpdf/doc/setsubject.htm b/backend/libs/fpdf/doc/setsubject.htm new file mode 100644 index 0000000..277f4fe --- /dev/null +++ b/backend/libs/fpdf/doc/setsubject.htm @@ -0,0 +1,33 @@ + + + + +SetSubject + + + +

SetSubject

+SetSubject(string subject [, boolean isUTF8]) +

Description

+Defines the subject of the document. +

Parameters

+
+
subject
+
+The subject. +
+
isUTF8
+
+Indicates if the string is encoded in ISO-8859-1 (false) or UTF-8 (true).
+Default value: false. +
+
+

See also

+SetAuthor, +SetCreator, +SetKeywords, +SetTitle +
+ + + diff --git a/backend/libs/fpdf/doc/settextcolor.htm b/backend/libs/fpdf/doc/settextcolor.htm new file mode 100644 index 0000000..c71e4f0 --- /dev/null +++ b/backend/libs/fpdf/doc/settextcolor.htm @@ -0,0 +1,40 @@ + + + + +SetTextColor + + + +

SetTextColor

+SetTextColor(int r [, int g, int b]) +

Description

+Defines the color used for text. It can be expressed in RGB components or gray scale. The +method can be called before the first page is created and the value is retained from page to +page. +

Parameters

+
+
r
+
+If g et b are given, red component; if not, indicates the gray level. +Value between 0 and 255. +
+
g
+
+Green component (between 0 and 255). +
+
b
+
+Blue component (between 0 and 255). +
+
+

See also

+SetDrawColor, +SetFillColor, +Text, +Cell, +MultiCell +
+ + + diff --git a/backend/libs/fpdf/doc/settitle.htm b/backend/libs/fpdf/doc/settitle.htm new file mode 100644 index 0000000..8ad67fb --- /dev/null +++ b/backend/libs/fpdf/doc/settitle.htm @@ -0,0 +1,33 @@ + + + + +SetTitle + + + +

SetTitle

+SetTitle(string title [, boolean isUTF8]) +

Description

+Defines the title of the document. +

Parameters

+
+
title
+
+The title. +
+
isUTF8
+
+Indicates if the string is encoded in ISO-8859-1 (false) or UTF-8 (true).
+Default value: false. +
+
+

See also

+SetAuthor, +SetCreator, +SetKeywords, +SetSubject +
+ + + diff --git a/backend/libs/fpdf/doc/settopmargin.htm b/backend/libs/fpdf/doc/settopmargin.htm new file mode 100644 index 0000000..7f4da03 --- /dev/null +++ b/backend/libs/fpdf/doc/settopmargin.htm @@ -0,0 +1,28 @@ + + + + +SetTopMargin + + + +

SetTopMargin

+SetTopMargin(float margin) +

Description

+Defines the top margin. The method can be called before creating the first page. +

Parameters

+
+
margin
+
+The margin. +
+
+

See also

+SetLeftMargin, +SetRightMargin, +SetAutoPageBreak, +SetMargins +
+ + + diff --git a/backend/libs/fpdf/doc/setx.htm b/backend/libs/fpdf/doc/setx.htm new file mode 100644 index 0000000..8326168 --- /dev/null +++ b/backend/libs/fpdf/doc/setx.htm @@ -0,0 +1,29 @@ + + + + +SetX + + + +

SetX

+SetX(float x) +

Description

+Defines the abscissa of the current position. If the passed value is negative, it is relative +to the right of the page. +

Parameters

+
+
x
+
+The value of the abscissa. +
+
+

See also

+GetX, +GetY, +SetY, +SetXY +
+ + + diff --git a/backend/libs/fpdf/doc/setxy.htm b/backend/libs/fpdf/doc/setxy.htm new file mode 100644 index 0000000..59eb7d8 --- /dev/null +++ b/backend/libs/fpdf/doc/setxy.htm @@ -0,0 +1,31 @@ + + + + +SetXY + + + +

SetXY

+SetXY(float x, float y) +

Description

+Defines the abscissa and ordinate of the current position. If the passed values are negative, +they are relative respectively to the right and bottom of the page. +

Parameters

+
+
x
+
+The value of the abscissa. +
+
y
+
+The value of the ordinate. +
+
+

See also

+SetX, +SetY +
+ + + diff --git a/backend/libs/fpdf/doc/sety.htm b/backend/libs/fpdf/doc/sety.htm new file mode 100644 index 0000000..3d101a6 --- /dev/null +++ b/backend/libs/fpdf/doc/sety.htm @@ -0,0 +1,33 @@ + + + + +SetY + + + +

SetY

+SetY(float y [, boolean resetX]) +

Description

+Sets the ordinate and optionally moves the current abscissa back to the left margin. If the value +is negative, it is relative to the bottom of the page. +

Parameters

+
+
y
+
+The value of the ordinate. +
+
resetX
+
+Whether to reset the abscissa. Default value: true. +
+
+

See also

+GetX, +GetY, +SetX, +SetXY +
+ + + diff --git a/backend/libs/fpdf/doc/text.htm b/backend/libs/fpdf/doc/text.htm new file mode 100644 index 0000000..71e9e3c --- /dev/null +++ b/backend/libs/fpdf/doc/text.htm @@ -0,0 +1,39 @@ + + + + +Text + + + +

Text

+Text(float x, float y, string txt) +

Description

+Prints a character string. The origin is on the left of the first character, on the baseline. +This method allows to place a string precisely on the page, but it is usually easier to use +Cell(), MultiCell() or Write() which are the standard methods to print text. +

Parameters

+
+
x
+
+Abscissa of the origin. +
+
y
+
+Ordinate of the origin. +
+
txt
+
+String to print. +
+
+

See also

+SetFont, +SetTextColor, +Cell, +MultiCell, +Write +
+ + + diff --git a/backend/libs/fpdf/doc/write.htm b/backend/libs/fpdf/doc/write.htm new file mode 100644 index 0000000..5ffa4dc --- /dev/null +++ b/backend/libs/fpdf/doc/write.htm @@ -0,0 +1,51 @@ + + + + +Write + + + +

Write

+Write(float h, string txt [, mixed link]) +

Description

+This method prints text from the current position. When the right margin is reached (or the \n +character is met) a line break occurs and text continues from the left margin. Upon method exit, +the current position is left just at the end of the text. +
+It is possible to put a link on the text. +

Parameters

+
+
h
+
+Line height. +
+
txt
+
+String to print. +
+
link
+
+URL or identifier returned by AddLink(). +
+
+

Example

+
+
// Begin with regular font
+$pdf->SetFont('Arial', '', 14);
+$pdf->Write(5, 'Visit ');
+// Then put a blue underlined link
+$pdf->SetTextColor(0, 0, 255);
+$pdf->SetFont('', 'U');
+$pdf->Write(5, 'www.fpdf.org', 'http://www.fpdf.org');
+
+

See also

+SetFont, +SetTextColor, +AddLink, +MultiCell, +SetAutoPageBreak +
+ + + diff --git a/backend/libs/fpdf/font/courier.php b/backend/libs/fpdf/font/courier.php new file mode 100644 index 0000000..bc8478e --- /dev/null +++ b/backend/libs/fpdf/font/courier.php @@ -0,0 +1,10 @@ +array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); +?> diff --git a/backend/libs/fpdf/font/courierb.php b/backend/libs/fpdf/font/courierb.php new file mode 100644 index 0000000..97ecd70 --- /dev/null +++ b/backend/libs/fpdf/font/courierb.php @@ -0,0 +1,10 @@ +array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); +?> diff --git a/backend/libs/fpdf/font/courierbi.php b/backend/libs/fpdf/font/courierbi.php new file mode 100644 index 0000000..c4bfff8 --- /dev/null +++ b/backend/libs/fpdf/font/courierbi.php @@ -0,0 +1,10 @@ +array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); +?> diff --git a/backend/libs/fpdf/font/courieri.php b/backend/libs/fpdf/font/courieri.php new file mode 100644 index 0000000..015a15a --- /dev/null +++ b/backend/libs/fpdf/font/courieri.php @@ -0,0 +1,10 @@ +array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); +?> diff --git a/backend/libs/fpdf/font/helvetica.php b/backend/libs/fpdf/font/helvetica.php new file mode 100644 index 0000000..927759b --- /dev/null +++ b/backend/libs/fpdf/font/helvetica.php @@ -0,0 +1,21 @@ +278,chr(1)=>278,chr(2)=>278,chr(3)=>278,chr(4)=>278,chr(5)=>278,chr(6)=>278,chr(7)=>278,chr(8)=>278,chr(9)=>278,chr(10)=>278,chr(11)=>278,chr(12)=>278,chr(13)=>278,chr(14)=>278,chr(15)=>278,chr(16)=>278,chr(17)=>278,chr(18)=>278,chr(19)=>278,chr(20)=>278,chr(21)=>278, + chr(22)=>278,chr(23)=>278,chr(24)=>278,chr(25)=>278,chr(26)=>278,chr(27)=>278,chr(28)=>278,chr(29)=>278,chr(30)=>278,chr(31)=>278,' '=>278,'!'=>278,'"'=>355,'#'=>556,'$'=>556,'%'=>889,'&'=>667,'\''=>191,'('=>333,')'=>333,'*'=>389,'+'=>584, + ','=>278,'-'=>333,'.'=>278,'/'=>278,'0'=>556,'1'=>556,'2'=>556,'3'=>556,'4'=>556,'5'=>556,'6'=>556,'7'=>556,'8'=>556,'9'=>556,':'=>278,';'=>278,'<'=>584,'='=>584,'>'=>584,'?'=>556,'@'=>1015,'A'=>667, + 'B'=>667,'C'=>722,'D'=>722,'E'=>667,'F'=>611,'G'=>778,'H'=>722,'I'=>278,'J'=>500,'K'=>667,'L'=>556,'M'=>833,'N'=>722,'O'=>778,'P'=>667,'Q'=>778,'R'=>722,'S'=>667,'T'=>611,'U'=>722,'V'=>667,'W'=>944, + 'X'=>667,'Y'=>667,'Z'=>611,'['=>278,'\\'=>278,']'=>278,'^'=>469,'_'=>556,'`'=>333,'a'=>556,'b'=>556,'c'=>500,'d'=>556,'e'=>556,'f'=>278,'g'=>556,'h'=>556,'i'=>222,'j'=>222,'k'=>500,'l'=>222,'m'=>833, + 'n'=>556,'o'=>556,'p'=>556,'q'=>556,'r'=>333,'s'=>500,'t'=>278,'u'=>556,'v'=>500,'w'=>722,'x'=>500,'y'=>500,'z'=>500,'{'=>334,'|'=>260,'}'=>334,'~'=>584,chr(127)=>350,chr(128)=>556,chr(129)=>350,chr(130)=>222,chr(131)=>556, + chr(132)=>333,chr(133)=>1000,chr(134)=>556,chr(135)=>556,chr(136)=>333,chr(137)=>1000,chr(138)=>667,chr(139)=>333,chr(140)=>1000,chr(141)=>350,chr(142)=>611,chr(143)=>350,chr(144)=>350,chr(145)=>222,chr(146)=>222,chr(147)=>333,chr(148)=>333,chr(149)=>350,chr(150)=>556,chr(151)=>1000,chr(152)=>333,chr(153)=>1000, + chr(154)=>500,chr(155)=>333,chr(156)=>944,chr(157)=>350,chr(158)=>500,chr(159)=>667,chr(160)=>278,chr(161)=>333,chr(162)=>556,chr(163)=>556,chr(164)=>556,chr(165)=>556,chr(166)=>260,chr(167)=>556,chr(168)=>333,chr(169)=>737,chr(170)=>370,chr(171)=>556,chr(172)=>584,chr(173)=>333,chr(174)=>737,chr(175)=>333, + chr(176)=>400,chr(177)=>584,chr(178)=>333,chr(179)=>333,chr(180)=>333,chr(181)=>556,chr(182)=>537,chr(183)=>278,chr(184)=>333,chr(185)=>333,chr(186)=>365,chr(187)=>556,chr(188)=>834,chr(189)=>834,chr(190)=>834,chr(191)=>611,chr(192)=>667,chr(193)=>667,chr(194)=>667,chr(195)=>667,chr(196)=>667,chr(197)=>667, + chr(198)=>1000,chr(199)=>722,chr(200)=>667,chr(201)=>667,chr(202)=>667,chr(203)=>667,chr(204)=>278,chr(205)=>278,chr(206)=>278,chr(207)=>278,chr(208)=>722,chr(209)=>722,chr(210)=>778,chr(211)=>778,chr(212)=>778,chr(213)=>778,chr(214)=>778,chr(215)=>584,chr(216)=>778,chr(217)=>722,chr(218)=>722,chr(219)=>722, + chr(220)=>722,chr(221)=>667,chr(222)=>667,chr(223)=>611,chr(224)=>556,chr(225)=>556,chr(226)=>556,chr(227)=>556,chr(228)=>556,chr(229)=>556,chr(230)=>889,chr(231)=>500,chr(232)=>556,chr(233)=>556,chr(234)=>556,chr(235)=>556,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>556,chr(241)=>556, + chr(242)=>556,chr(243)=>556,chr(244)=>556,chr(245)=>556,chr(246)=>556,chr(247)=>584,chr(248)=>611,chr(249)=>556,chr(250)=>556,chr(251)=>556,chr(252)=>556,chr(253)=>500,chr(254)=>556,chr(255)=>500); +$enc = 'cp1252'; +$uv = array(0=>array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); +?> diff --git a/backend/libs/fpdf/font/helveticab.php b/backend/libs/fpdf/font/helveticab.php new file mode 100644 index 0000000..bcd7367 --- /dev/null +++ b/backend/libs/fpdf/font/helveticab.php @@ -0,0 +1,21 @@ +278,chr(1)=>278,chr(2)=>278,chr(3)=>278,chr(4)=>278,chr(5)=>278,chr(6)=>278,chr(7)=>278,chr(8)=>278,chr(9)=>278,chr(10)=>278,chr(11)=>278,chr(12)=>278,chr(13)=>278,chr(14)=>278,chr(15)=>278,chr(16)=>278,chr(17)=>278,chr(18)=>278,chr(19)=>278,chr(20)=>278,chr(21)=>278, + chr(22)=>278,chr(23)=>278,chr(24)=>278,chr(25)=>278,chr(26)=>278,chr(27)=>278,chr(28)=>278,chr(29)=>278,chr(30)=>278,chr(31)=>278,' '=>278,'!'=>333,'"'=>474,'#'=>556,'$'=>556,'%'=>889,'&'=>722,'\''=>238,'('=>333,')'=>333,'*'=>389,'+'=>584, + ','=>278,'-'=>333,'.'=>278,'/'=>278,'0'=>556,'1'=>556,'2'=>556,'3'=>556,'4'=>556,'5'=>556,'6'=>556,'7'=>556,'8'=>556,'9'=>556,':'=>333,';'=>333,'<'=>584,'='=>584,'>'=>584,'?'=>611,'@'=>975,'A'=>722, + 'B'=>722,'C'=>722,'D'=>722,'E'=>667,'F'=>611,'G'=>778,'H'=>722,'I'=>278,'J'=>556,'K'=>722,'L'=>611,'M'=>833,'N'=>722,'O'=>778,'P'=>667,'Q'=>778,'R'=>722,'S'=>667,'T'=>611,'U'=>722,'V'=>667,'W'=>944, + 'X'=>667,'Y'=>667,'Z'=>611,'['=>333,'\\'=>278,']'=>333,'^'=>584,'_'=>556,'`'=>333,'a'=>556,'b'=>611,'c'=>556,'d'=>611,'e'=>556,'f'=>333,'g'=>611,'h'=>611,'i'=>278,'j'=>278,'k'=>556,'l'=>278,'m'=>889, + 'n'=>611,'o'=>611,'p'=>611,'q'=>611,'r'=>389,'s'=>556,'t'=>333,'u'=>611,'v'=>556,'w'=>778,'x'=>556,'y'=>556,'z'=>500,'{'=>389,'|'=>280,'}'=>389,'~'=>584,chr(127)=>350,chr(128)=>556,chr(129)=>350,chr(130)=>278,chr(131)=>556, + chr(132)=>500,chr(133)=>1000,chr(134)=>556,chr(135)=>556,chr(136)=>333,chr(137)=>1000,chr(138)=>667,chr(139)=>333,chr(140)=>1000,chr(141)=>350,chr(142)=>611,chr(143)=>350,chr(144)=>350,chr(145)=>278,chr(146)=>278,chr(147)=>500,chr(148)=>500,chr(149)=>350,chr(150)=>556,chr(151)=>1000,chr(152)=>333,chr(153)=>1000, + chr(154)=>556,chr(155)=>333,chr(156)=>944,chr(157)=>350,chr(158)=>500,chr(159)=>667,chr(160)=>278,chr(161)=>333,chr(162)=>556,chr(163)=>556,chr(164)=>556,chr(165)=>556,chr(166)=>280,chr(167)=>556,chr(168)=>333,chr(169)=>737,chr(170)=>370,chr(171)=>556,chr(172)=>584,chr(173)=>333,chr(174)=>737,chr(175)=>333, + chr(176)=>400,chr(177)=>584,chr(178)=>333,chr(179)=>333,chr(180)=>333,chr(181)=>611,chr(182)=>556,chr(183)=>278,chr(184)=>333,chr(185)=>333,chr(186)=>365,chr(187)=>556,chr(188)=>834,chr(189)=>834,chr(190)=>834,chr(191)=>611,chr(192)=>722,chr(193)=>722,chr(194)=>722,chr(195)=>722,chr(196)=>722,chr(197)=>722, + chr(198)=>1000,chr(199)=>722,chr(200)=>667,chr(201)=>667,chr(202)=>667,chr(203)=>667,chr(204)=>278,chr(205)=>278,chr(206)=>278,chr(207)=>278,chr(208)=>722,chr(209)=>722,chr(210)=>778,chr(211)=>778,chr(212)=>778,chr(213)=>778,chr(214)=>778,chr(215)=>584,chr(216)=>778,chr(217)=>722,chr(218)=>722,chr(219)=>722, + chr(220)=>722,chr(221)=>667,chr(222)=>667,chr(223)=>611,chr(224)=>556,chr(225)=>556,chr(226)=>556,chr(227)=>556,chr(228)=>556,chr(229)=>556,chr(230)=>889,chr(231)=>556,chr(232)=>556,chr(233)=>556,chr(234)=>556,chr(235)=>556,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>611,chr(241)=>611, + chr(242)=>611,chr(243)=>611,chr(244)=>611,chr(245)=>611,chr(246)=>611,chr(247)=>584,chr(248)=>611,chr(249)=>611,chr(250)=>611,chr(251)=>611,chr(252)=>611,chr(253)=>556,chr(254)=>611,chr(255)=>556); +$enc = 'cp1252'; +$uv = array(0=>array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); +?> diff --git a/backend/libs/fpdf/font/helveticabi.php b/backend/libs/fpdf/font/helveticabi.php new file mode 100644 index 0000000..0243cde --- /dev/null +++ b/backend/libs/fpdf/font/helveticabi.php @@ -0,0 +1,21 @@ +278,chr(1)=>278,chr(2)=>278,chr(3)=>278,chr(4)=>278,chr(5)=>278,chr(6)=>278,chr(7)=>278,chr(8)=>278,chr(9)=>278,chr(10)=>278,chr(11)=>278,chr(12)=>278,chr(13)=>278,chr(14)=>278,chr(15)=>278,chr(16)=>278,chr(17)=>278,chr(18)=>278,chr(19)=>278,chr(20)=>278,chr(21)=>278, + chr(22)=>278,chr(23)=>278,chr(24)=>278,chr(25)=>278,chr(26)=>278,chr(27)=>278,chr(28)=>278,chr(29)=>278,chr(30)=>278,chr(31)=>278,' '=>278,'!'=>333,'"'=>474,'#'=>556,'$'=>556,'%'=>889,'&'=>722,'\''=>238,'('=>333,')'=>333,'*'=>389,'+'=>584, + ','=>278,'-'=>333,'.'=>278,'/'=>278,'0'=>556,'1'=>556,'2'=>556,'3'=>556,'4'=>556,'5'=>556,'6'=>556,'7'=>556,'8'=>556,'9'=>556,':'=>333,';'=>333,'<'=>584,'='=>584,'>'=>584,'?'=>611,'@'=>975,'A'=>722, + 'B'=>722,'C'=>722,'D'=>722,'E'=>667,'F'=>611,'G'=>778,'H'=>722,'I'=>278,'J'=>556,'K'=>722,'L'=>611,'M'=>833,'N'=>722,'O'=>778,'P'=>667,'Q'=>778,'R'=>722,'S'=>667,'T'=>611,'U'=>722,'V'=>667,'W'=>944, + 'X'=>667,'Y'=>667,'Z'=>611,'['=>333,'\\'=>278,']'=>333,'^'=>584,'_'=>556,'`'=>333,'a'=>556,'b'=>611,'c'=>556,'d'=>611,'e'=>556,'f'=>333,'g'=>611,'h'=>611,'i'=>278,'j'=>278,'k'=>556,'l'=>278,'m'=>889, + 'n'=>611,'o'=>611,'p'=>611,'q'=>611,'r'=>389,'s'=>556,'t'=>333,'u'=>611,'v'=>556,'w'=>778,'x'=>556,'y'=>556,'z'=>500,'{'=>389,'|'=>280,'}'=>389,'~'=>584,chr(127)=>350,chr(128)=>556,chr(129)=>350,chr(130)=>278,chr(131)=>556, + chr(132)=>500,chr(133)=>1000,chr(134)=>556,chr(135)=>556,chr(136)=>333,chr(137)=>1000,chr(138)=>667,chr(139)=>333,chr(140)=>1000,chr(141)=>350,chr(142)=>611,chr(143)=>350,chr(144)=>350,chr(145)=>278,chr(146)=>278,chr(147)=>500,chr(148)=>500,chr(149)=>350,chr(150)=>556,chr(151)=>1000,chr(152)=>333,chr(153)=>1000, + chr(154)=>556,chr(155)=>333,chr(156)=>944,chr(157)=>350,chr(158)=>500,chr(159)=>667,chr(160)=>278,chr(161)=>333,chr(162)=>556,chr(163)=>556,chr(164)=>556,chr(165)=>556,chr(166)=>280,chr(167)=>556,chr(168)=>333,chr(169)=>737,chr(170)=>370,chr(171)=>556,chr(172)=>584,chr(173)=>333,chr(174)=>737,chr(175)=>333, + chr(176)=>400,chr(177)=>584,chr(178)=>333,chr(179)=>333,chr(180)=>333,chr(181)=>611,chr(182)=>556,chr(183)=>278,chr(184)=>333,chr(185)=>333,chr(186)=>365,chr(187)=>556,chr(188)=>834,chr(189)=>834,chr(190)=>834,chr(191)=>611,chr(192)=>722,chr(193)=>722,chr(194)=>722,chr(195)=>722,chr(196)=>722,chr(197)=>722, + chr(198)=>1000,chr(199)=>722,chr(200)=>667,chr(201)=>667,chr(202)=>667,chr(203)=>667,chr(204)=>278,chr(205)=>278,chr(206)=>278,chr(207)=>278,chr(208)=>722,chr(209)=>722,chr(210)=>778,chr(211)=>778,chr(212)=>778,chr(213)=>778,chr(214)=>778,chr(215)=>584,chr(216)=>778,chr(217)=>722,chr(218)=>722,chr(219)=>722, + chr(220)=>722,chr(221)=>667,chr(222)=>667,chr(223)=>611,chr(224)=>556,chr(225)=>556,chr(226)=>556,chr(227)=>556,chr(228)=>556,chr(229)=>556,chr(230)=>889,chr(231)=>556,chr(232)=>556,chr(233)=>556,chr(234)=>556,chr(235)=>556,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>611,chr(241)=>611, + chr(242)=>611,chr(243)=>611,chr(244)=>611,chr(245)=>611,chr(246)=>611,chr(247)=>584,chr(248)=>611,chr(249)=>611,chr(250)=>611,chr(251)=>611,chr(252)=>611,chr(253)=>556,chr(254)=>611,chr(255)=>556); +$enc = 'cp1252'; +$uv = array(0=>array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); +?> diff --git a/backend/libs/fpdf/font/helveticai.php b/backend/libs/fpdf/font/helveticai.php new file mode 100644 index 0000000..06ec735 --- /dev/null +++ b/backend/libs/fpdf/font/helveticai.php @@ -0,0 +1,21 @@ +278,chr(1)=>278,chr(2)=>278,chr(3)=>278,chr(4)=>278,chr(5)=>278,chr(6)=>278,chr(7)=>278,chr(8)=>278,chr(9)=>278,chr(10)=>278,chr(11)=>278,chr(12)=>278,chr(13)=>278,chr(14)=>278,chr(15)=>278,chr(16)=>278,chr(17)=>278,chr(18)=>278,chr(19)=>278,chr(20)=>278,chr(21)=>278, + chr(22)=>278,chr(23)=>278,chr(24)=>278,chr(25)=>278,chr(26)=>278,chr(27)=>278,chr(28)=>278,chr(29)=>278,chr(30)=>278,chr(31)=>278,' '=>278,'!'=>278,'"'=>355,'#'=>556,'$'=>556,'%'=>889,'&'=>667,'\''=>191,'('=>333,')'=>333,'*'=>389,'+'=>584, + ','=>278,'-'=>333,'.'=>278,'/'=>278,'0'=>556,'1'=>556,'2'=>556,'3'=>556,'4'=>556,'5'=>556,'6'=>556,'7'=>556,'8'=>556,'9'=>556,':'=>278,';'=>278,'<'=>584,'='=>584,'>'=>584,'?'=>556,'@'=>1015,'A'=>667, + 'B'=>667,'C'=>722,'D'=>722,'E'=>667,'F'=>611,'G'=>778,'H'=>722,'I'=>278,'J'=>500,'K'=>667,'L'=>556,'M'=>833,'N'=>722,'O'=>778,'P'=>667,'Q'=>778,'R'=>722,'S'=>667,'T'=>611,'U'=>722,'V'=>667,'W'=>944, + 'X'=>667,'Y'=>667,'Z'=>611,'['=>278,'\\'=>278,']'=>278,'^'=>469,'_'=>556,'`'=>333,'a'=>556,'b'=>556,'c'=>500,'d'=>556,'e'=>556,'f'=>278,'g'=>556,'h'=>556,'i'=>222,'j'=>222,'k'=>500,'l'=>222,'m'=>833, + 'n'=>556,'o'=>556,'p'=>556,'q'=>556,'r'=>333,'s'=>500,'t'=>278,'u'=>556,'v'=>500,'w'=>722,'x'=>500,'y'=>500,'z'=>500,'{'=>334,'|'=>260,'}'=>334,'~'=>584,chr(127)=>350,chr(128)=>556,chr(129)=>350,chr(130)=>222,chr(131)=>556, + chr(132)=>333,chr(133)=>1000,chr(134)=>556,chr(135)=>556,chr(136)=>333,chr(137)=>1000,chr(138)=>667,chr(139)=>333,chr(140)=>1000,chr(141)=>350,chr(142)=>611,chr(143)=>350,chr(144)=>350,chr(145)=>222,chr(146)=>222,chr(147)=>333,chr(148)=>333,chr(149)=>350,chr(150)=>556,chr(151)=>1000,chr(152)=>333,chr(153)=>1000, + chr(154)=>500,chr(155)=>333,chr(156)=>944,chr(157)=>350,chr(158)=>500,chr(159)=>667,chr(160)=>278,chr(161)=>333,chr(162)=>556,chr(163)=>556,chr(164)=>556,chr(165)=>556,chr(166)=>260,chr(167)=>556,chr(168)=>333,chr(169)=>737,chr(170)=>370,chr(171)=>556,chr(172)=>584,chr(173)=>333,chr(174)=>737,chr(175)=>333, + chr(176)=>400,chr(177)=>584,chr(178)=>333,chr(179)=>333,chr(180)=>333,chr(181)=>556,chr(182)=>537,chr(183)=>278,chr(184)=>333,chr(185)=>333,chr(186)=>365,chr(187)=>556,chr(188)=>834,chr(189)=>834,chr(190)=>834,chr(191)=>611,chr(192)=>667,chr(193)=>667,chr(194)=>667,chr(195)=>667,chr(196)=>667,chr(197)=>667, + chr(198)=>1000,chr(199)=>722,chr(200)=>667,chr(201)=>667,chr(202)=>667,chr(203)=>667,chr(204)=>278,chr(205)=>278,chr(206)=>278,chr(207)=>278,chr(208)=>722,chr(209)=>722,chr(210)=>778,chr(211)=>778,chr(212)=>778,chr(213)=>778,chr(214)=>778,chr(215)=>584,chr(216)=>778,chr(217)=>722,chr(218)=>722,chr(219)=>722, + chr(220)=>722,chr(221)=>667,chr(222)=>667,chr(223)=>611,chr(224)=>556,chr(225)=>556,chr(226)=>556,chr(227)=>556,chr(228)=>556,chr(229)=>556,chr(230)=>889,chr(231)=>500,chr(232)=>556,chr(233)=>556,chr(234)=>556,chr(235)=>556,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>556,chr(241)=>556, + chr(242)=>556,chr(243)=>556,chr(244)=>556,chr(245)=>556,chr(246)=>556,chr(247)=>584,chr(248)=>611,chr(249)=>556,chr(250)=>556,chr(251)=>556,chr(252)=>556,chr(253)=>500,chr(254)=>556,chr(255)=>500); +$enc = 'cp1252'; +$uv = array(0=>array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); +?> diff --git a/backend/libs/fpdf/font/symbol.php b/backend/libs/fpdf/font/symbol.php new file mode 100644 index 0000000..f8f0c33 --- /dev/null +++ b/backend/libs/fpdf/font/symbol.php @@ -0,0 +1,20 @@ +250,chr(1)=>250,chr(2)=>250,chr(3)=>250,chr(4)=>250,chr(5)=>250,chr(6)=>250,chr(7)=>250,chr(8)=>250,chr(9)=>250,chr(10)=>250,chr(11)=>250,chr(12)=>250,chr(13)=>250,chr(14)=>250,chr(15)=>250,chr(16)=>250,chr(17)=>250,chr(18)=>250,chr(19)=>250,chr(20)=>250,chr(21)=>250, + chr(22)=>250,chr(23)=>250,chr(24)=>250,chr(25)=>250,chr(26)=>250,chr(27)=>250,chr(28)=>250,chr(29)=>250,chr(30)=>250,chr(31)=>250,' '=>250,'!'=>333,'"'=>713,'#'=>500,'$'=>549,'%'=>833,'&'=>778,'\''=>439,'('=>333,')'=>333,'*'=>500,'+'=>549, + ','=>250,'-'=>549,'.'=>250,'/'=>278,'0'=>500,'1'=>500,'2'=>500,'3'=>500,'4'=>500,'5'=>500,'6'=>500,'7'=>500,'8'=>500,'9'=>500,':'=>278,';'=>278,'<'=>549,'='=>549,'>'=>549,'?'=>444,'@'=>549,'A'=>722, + 'B'=>667,'C'=>722,'D'=>612,'E'=>611,'F'=>763,'G'=>603,'H'=>722,'I'=>333,'J'=>631,'K'=>722,'L'=>686,'M'=>889,'N'=>722,'O'=>722,'P'=>768,'Q'=>741,'R'=>556,'S'=>592,'T'=>611,'U'=>690,'V'=>439,'W'=>768, + 'X'=>645,'Y'=>795,'Z'=>611,'['=>333,'\\'=>863,']'=>333,'^'=>658,'_'=>500,'`'=>500,'a'=>631,'b'=>549,'c'=>549,'d'=>494,'e'=>439,'f'=>521,'g'=>411,'h'=>603,'i'=>329,'j'=>603,'k'=>549,'l'=>549,'m'=>576, + 'n'=>521,'o'=>549,'p'=>549,'q'=>521,'r'=>549,'s'=>603,'t'=>439,'u'=>576,'v'=>713,'w'=>686,'x'=>493,'y'=>686,'z'=>494,'{'=>480,'|'=>200,'}'=>480,'~'=>549,chr(127)=>0,chr(128)=>0,chr(129)=>0,chr(130)=>0,chr(131)=>0, + chr(132)=>0,chr(133)=>0,chr(134)=>0,chr(135)=>0,chr(136)=>0,chr(137)=>0,chr(138)=>0,chr(139)=>0,chr(140)=>0,chr(141)=>0,chr(142)=>0,chr(143)=>0,chr(144)=>0,chr(145)=>0,chr(146)=>0,chr(147)=>0,chr(148)=>0,chr(149)=>0,chr(150)=>0,chr(151)=>0,chr(152)=>0,chr(153)=>0, + chr(154)=>0,chr(155)=>0,chr(156)=>0,chr(157)=>0,chr(158)=>0,chr(159)=>0,chr(160)=>750,chr(161)=>620,chr(162)=>247,chr(163)=>549,chr(164)=>167,chr(165)=>713,chr(166)=>500,chr(167)=>753,chr(168)=>753,chr(169)=>753,chr(170)=>753,chr(171)=>1042,chr(172)=>987,chr(173)=>603,chr(174)=>987,chr(175)=>603, + chr(176)=>400,chr(177)=>549,chr(178)=>411,chr(179)=>549,chr(180)=>549,chr(181)=>713,chr(182)=>494,chr(183)=>460,chr(184)=>549,chr(185)=>549,chr(186)=>549,chr(187)=>549,chr(188)=>1000,chr(189)=>603,chr(190)=>1000,chr(191)=>658,chr(192)=>823,chr(193)=>686,chr(194)=>795,chr(195)=>987,chr(196)=>768,chr(197)=>768, + chr(198)=>823,chr(199)=>768,chr(200)=>768,chr(201)=>713,chr(202)=>713,chr(203)=>713,chr(204)=>713,chr(205)=>713,chr(206)=>713,chr(207)=>713,chr(208)=>768,chr(209)=>713,chr(210)=>790,chr(211)=>790,chr(212)=>890,chr(213)=>823,chr(214)=>549,chr(215)=>250,chr(216)=>713,chr(217)=>603,chr(218)=>603,chr(219)=>1042, + chr(220)=>987,chr(221)=>603,chr(222)=>987,chr(223)=>603,chr(224)=>494,chr(225)=>329,chr(226)=>790,chr(227)=>790,chr(228)=>786,chr(229)=>713,chr(230)=>384,chr(231)=>384,chr(232)=>384,chr(233)=>384,chr(234)=>384,chr(235)=>384,chr(236)=>494,chr(237)=>494,chr(238)=>494,chr(239)=>494,chr(240)=>0,chr(241)=>329, + chr(242)=>274,chr(243)=>686,chr(244)=>686,chr(245)=>686,chr(246)=>384,chr(247)=>384,chr(248)=>384,chr(249)=>384,chr(250)=>384,chr(251)=>384,chr(252)=>494,chr(253)=>494,chr(254)=>494,chr(255)=>0); +$uv = array(32=>160,33=>33,34=>8704,35=>35,36=>8707,37=>array(37,2),39=>8715,40=>array(40,2),42=>8727,43=>array(43,2),45=>8722,46=>array(46,18),64=>8773,65=>array(913,2),67=>935,68=>array(916,2),70=>934,71=>915,72=>919,73=>921,74=>977,75=>array(922,4),79=>array(927,2),81=>920,82=>929,83=>array(931,3),86=>962,87=>937,88=>926,89=>936,90=>918,91=>91,92=>8756,93=>93,94=>8869,95=>95,96=>63717,97=>array(945,2),99=>967,100=>array(948,2),102=>966,103=>947,104=>951,105=>953,106=>981,107=>array(954,4),111=>array(959,2),113=>952,114=>961,115=>array(963,3),118=>982,119=>969,120=>958,121=>968,122=>950,123=>array(123,3),126=>8764,160=>8364,161=>978,162=>8242,163=>8804,164=>8725,165=>8734,166=>402,167=>9827,168=>9830,169=>9829,170=>9824,171=>8596,172=>array(8592,4),176=>array(176,2),178=>8243,179=>8805,180=>215,181=>8733,182=>8706,183=>8226,184=>247,185=>array(8800,2),187=>8776,188=>8230,189=>array(63718,2),191=>8629,192=>8501,193=>8465,194=>8476,195=>8472,196=>8855,197=>8853,198=>8709,199=>array(8745,2),201=>8835,202=>8839,203=>8836,204=>8834,205=>8838,206=>array(8712,2),208=>8736,209=>8711,210=>63194,211=>63193,212=>63195,213=>8719,214=>8730,215=>8901,216=>172,217=>array(8743,2),219=>8660,220=>array(8656,4),224=>9674,225=>9001,226=>array(63720,3),229=>8721,230=>array(63723,10),241=>9002,242=>8747,243=>8992,244=>63733,245=>8993,246=>array(63734,9)); +?> diff --git a/backend/libs/fpdf/font/times.php b/backend/libs/fpdf/font/times.php new file mode 100644 index 0000000..81f2a8b --- /dev/null +++ b/backend/libs/fpdf/font/times.php @@ -0,0 +1,21 @@ +250,chr(1)=>250,chr(2)=>250,chr(3)=>250,chr(4)=>250,chr(5)=>250,chr(6)=>250,chr(7)=>250,chr(8)=>250,chr(9)=>250,chr(10)=>250,chr(11)=>250,chr(12)=>250,chr(13)=>250,chr(14)=>250,chr(15)=>250,chr(16)=>250,chr(17)=>250,chr(18)=>250,chr(19)=>250,chr(20)=>250,chr(21)=>250, + chr(22)=>250,chr(23)=>250,chr(24)=>250,chr(25)=>250,chr(26)=>250,chr(27)=>250,chr(28)=>250,chr(29)=>250,chr(30)=>250,chr(31)=>250,' '=>250,'!'=>333,'"'=>408,'#'=>500,'$'=>500,'%'=>833,'&'=>778,'\''=>180,'('=>333,')'=>333,'*'=>500,'+'=>564, + ','=>250,'-'=>333,'.'=>250,'/'=>278,'0'=>500,'1'=>500,'2'=>500,'3'=>500,'4'=>500,'5'=>500,'6'=>500,'7'=>500,'8'=>500,'9'=>500,':'=>278,';'=>278,'<'=>564,'='=>564,'>'=>564,'?'=>444,'@'=>921,'A'=>722, + 'B'=>667,'C'=>667,'D'=>722,'E'=>611,'F'=>556,'G'=>722,'H'=>722,'I'=>333,'J'=>389,'K'=>722,'L'=>611,'M'=>889,'N'=>722,'O'=>722,'P'=>556,'Q'=>722,'R'=>667,'S'=>556,'T'=>611,'U'=>722,'V'=>722,'W'=>944, + 'X'=>722,'Y'=>722,'Z'=>611,'['=>333,'\\'=>278,']'=>333,'^'=>469,'_'=>500,'`'=>333,'a'=>444,'b'=>500,'c'=>444,'d'=>500,'e'=>444,'f'=>333,'g'=>500,'h'=>500,'i'=>278,'j'=>278,'k'=>500,'l'=>278,'m'=>778, + 'n'=>500,'o'=>500,'p'=>500,'q'=>500,'r'=>333,'s'=>389,'t'=>278,'u'=>500,'v'=>500,'w'=>722,'x'=>500,'y'=>500,'z'=>444,'{'=>480,'|'=>200,'}'=>480,'~'=>541,chr(127)=>350,chr(128)=>500,chr(129)=>350,chr(130)=>333,chr(131)=>500, + chr(132)=>444,chr(133)=>1000,chr(134)=>500,chr(135)=>500,chr(136)=>333,chr(137)=>1000,chr(138)=>556,chr(139)=>333,chr(140)=>889,chr(141)=>350,chr(142)=>611,chr(143)=>350,chr(144)=>350,chr(145)=>333,chr(146)=>333,chr(147)=>444,chr(148)=>444,chr(149)=>350,chr(150)=>500,chr(151)=>1000,chr(152)=>333,chr(153)=>980, + chr(154)=>389,chr(155)=>333,chr(156)=>722,chr(157)=>350,chr(158)=>444,chr(159)=>722,chr(160)=>250,chr(161)=>333,chr(162)=>500,chr(163)=>500,chr(164)=>500,chr(165)=>500,chr(166)=>200,chr(167)=>500,chr(168)=>333,chr(169)=>760,chr(170)=>276,chr(171)=>500,chr(172)=>564,chr(173)=>333,chr(174)=>760,chr(175)=>333, + chr(176)=>400,chr(177)=>564,chr(178)=>300,chr(179)=>300,chr(180)=>333,chr(181)=>500,chr(182)=>453,chr(183)=>250,chr(184)=>333,chr(185)=>300,chr(186)=>310,chr(187)=>500,chr(188)=>750,chr(189)=>750,chr(190)=>750,chr(191)=>444,chr(192)=>722,chr(193)=>722,chr(194)=>722,chr(195)=>722,chr(196)=>722,chr(197)=>722, + chr(198)=>889,chr(199)=>667,chr(200)=>611,chr(201)=>611,chr(202)=>611,chr(203)=>611,chr(204)=>333,chr(205)=>333,chr(206)=>333,chr(207)=>333,chr(208)=>722,chr(209)=>722,chr(210)=>722,chr(211)=>722,chr(212)=>722,chr(213)=>722,chr(214)=>722,chr(215)=>564,chr(216)=>722,chr(217)=>722,chr(218)=>722,chr(219)=>722, + chr(220)=>722,chr(221)=>722,chr(222)=>556,chr(223)=>500,chr(224)=>444,chr(225)=>444,chr(226)=>444,chr(227)=>444,chr(228)=>444,chr(229)=>444,chr(230)=>667,chr(231)=>444,chr(232)=>444,chr(233)=>444,chr(234)=>444,chr(235)=>444,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>500,chr(241)=>500, + chr(242)=>500,chr(243)=>500,chr(244)=>500,chr(245)=>500,chr(246)=>500,chr(247)=>564,chr(248)=>500,chr(249)=>500,chr(250)=>500,chr(251)=>500,chr(252)=>500,chr(253)=>500,chr(254)=>500,chr(255)=>500); +$enc = 'cp1252'; +$uv = array(0=>array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); +?> diff --git a/backend/libs/fpdf/font/timesb.php b/backend/libs/fpdf/font/timesb.php new file mode 100644 index 0000000..7db704f --- /dev/null +++ b/backend/libs/fpdf/font/timesb.php @@ -0,0 +1,21 @@ +250,chr(1)=>250,chr(2)=>250,chr(3)=>250,chr(4)=>250,chr(5)=>250,chr(6)=>250,chr(7)=>250,chr(8)=>250,chr(9)=>250,chr(10)=>250,chr(11)=>250,chr(12)=>250,chr(13)=>250,chr(14)=>250,chr(15)=>250,chr(16)=>250,chr(17)=>250,chr(18)=>250,chr(19)=>250,chr(20)=>250,chr(21)=>250, + chr(22)=>250,chr(23)=>250,chr(24)=>250,chr(25)=>250,chr(26)=>250,chr(27)=>250,chr(28)=>250,chr(29)=>250,chr(30)=>250,chr(31)=>250,' '=>250,'!'=>333,'"'=>555,'#'=>500,'$'=>500,'%'=>1000,'&'=>833,'\''=>278,'('=>333,')'=>333,'*'=>500,'+'=>570, + ','=>250,'-'=>333,'.'=>250,'/'=>278,'0'=>500,'1'=>500,'2'=>500,'3'=>500,'4'=>500,'5'=>500,'6'=>500,'7'=>500,'8'=>500,'9'=>500,':'=>333,';'=>333,'<'=>570,'='=>570,'>'=>570,'?'=>500,'@'=>930,'A'=>722, + 'B'=>667,'C'=>722,'D'=>722,'E'=>667,'F'=>611,'G'=>778,'H'=>778,'I'=>389,'J'=>500,'K'=>778,'L'=>667,'M'=>944,'N'=>722,'O'=>778,'P'=>611,'Q'=>778,'R'=>722,'S'=>556,'T'=>667,'U'=>722,'V'=>722,'W'=>1000, + 'X'=>722,'Y'=>722,'Z'=>667,'['=>333,'\\'=>278,']'=>333,'^'=>581,'_'=>500,'`'=>333,'a'=>500,'b'=>556,'c'=>444,'d'=>556,'e'=>444,'f'=>333,'g'=>500,'h'=>556,'i'=>278,'j'=>333,'k'=>556,'l'=>278,'m'=>833, + 'n'=>556,'o'=>500,'p'=>556,'q'=>556,'r'=>444,'s'=>389,'t'=>333,'u'=>556,'v'=>500,'w'=>722,'x'=>500,'y'=>500,'z'=>444,'{'=>394,'|'=>220,'}'=>394,'~'=>520,chr(127)=>350,chr(128)=>500,chr(129)=>350,chr(130)=>333,chr(131)=>500, + chr(132)=>500,chr(133)=>1000,chr(134)=>500,chr(135)=>500,chr(136)=>333,chr(137)=>1000,chr(138)=>556,chr(139)=>333,chr(140)=>1000,chr(141)=>350,chr(142)=>667,chr(143)=>350,chr(144)=>350,chr(145)=>333,chr(146)=>333,chr(147)=>500,chr(148)=>500,chr(149)=>350,chr(150)=>500,chr(151)=>1000,chr(152)=>333,chr(153)=>1000, + chr(154)=>389,chr(155)=>333,chr(156)=>722,chr(157)=>350,chr(158)=>444,chr(159)=>722,chr(160)=>250,chr(161)=>333,chr(162)=>500,chr(163)=>500,chr(164)=>500,chr(165)=>500,chr(166)=>220,chr(167)=>500,chr(168)=>333,chr(169)=>747,chr(170)=>300,chr(171)=>500,chr(172)=>570,chr(173)=>333,chr(174)=>747,chr(175)=>333, + chr(176)=>400,chr(177)=>570,chr(178)=>300,chr(179)=>300,chr(180)=>333,chr(181)=>556,chr(182)=>540,chr(183)=>250,chr(184)=>333,chr(185)=>300,chr(186)=>330,chr(187)=>500,chr(188)=>750,chr(189)=>750,chr(190)=>750,chr(191)=>500,chr(192)=>722,chr(193)=>722,chr(194)=>722,chr(195)=>722,chr(196)=>722,chr(197)=>722, + chr(198)=>1000,chr(199)=>722,chr(200)=>667,chr(201)=>667,chr(202)=>667,chr(203)=>667,chr(204)=>389,chr(205)=>389,chr(206)=>389,chr(207)=>389,chr(208)=>722,chr(209)=>722,chr(210)=>778,chr(211)=>778,chr(212)=>778,chr(213)=>778,chr(214)=>778,chr(215)=>570,chr(216)=>778,chr(217)=>722,chr(218)=>722,chr(219)=>722, + chr(220)=>722,chr(221)=>722,chr(222)=>611,chr(223)=>556,chr(224)=>500,chr(225)=>500,chr(226)=>500,chr(227)=>500,chr(228)=>500,chr(229)=>500,chr(230)=>722,chr(231)=>444,chr(232)=>444,chr(233)=>444,chr(234)=>444,chr(235)=>444,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>500,chr(241)=>556, + chr(242)=>500,chr(243)=>500,chr(244)=>500,chr(245)=>500,chr(246)=>500,chr(247)=>570,chr(248)=>500,chr(249)=>556,chr(250)=>556,chr(251)=>556,chr(252)=>556,chr(253)=>500,chr(254)=>556,chr(255)=>500); +$enc = 'cp1252'; +$uv = array(0=>array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); +?> diff --git a/backend/libs/fpdf/font/timesbi.php b/backend/libs/fpdf/font/timesbi.php new file mode 100644 index 0000000..089f21a --- /dev/null +++ b/backend/libs/fpdf/font/timesbi.php @@ -0,0 +1,21 @@ +250,chr(1)=>250,chr(2)=>250,chr(3)=>250,chr(4)=>250,chr(5)=>250,chr(6)=>250,chr(7)=>250,chr(8)=>250,chr(9)=>250,chr(10)=>250,chr(11)=>250,chr(12)=>250,chr(13)=>250,chr(14)=>250,chr(15)=>250,chr(16)=>250,chr(17)=>250,chr(18)=>250,chr(19)=>250,chr(20)=>250,chr(21)=>250, + chr(22)=>250,chr(23)=>250,chr(24)=>250,chr(25)=>250,chr(26)=>250,chr(27)=>250,chr(28)=>250,chr(29)=>250,chr(30)=>250,chr(31)=>250,' '=>250,'!'=>389,'"'=>555,'#'=>500,'$'=>500,'%'=>833,'&'=>778,'\''=>278,'('=>333,')'=>333,'*'=>500,'+'=>570, + ','=>250,'-'=>333,'.'=>250,'/'=>278,'0'=>500,'1'=>500,'2'=>500,'3'=>500,'4'=>500,'5'=>500,'6'=>500,'7'=>500,'8'=>500,'9'=>500,':'=>333,';'=>333,'<'=>570,'='=>570,'>'=>570,'?'=>500,'@'=>832,'A'=>667, + 'B'=>667,'C'=>667,'D'=>722,'E'=>667,'F'=>667,'G'=>722,'H'=>778,'I'=>389,'J'=>500,'K'=>667,'L'=>611,'M'=>889,'N'=>722,'O'=>722,'P'=>611,'Q'=>722,'R'=>667,'S'=>556,'T'=>611,'U'=>722,'V'=>667,'W'=>889, + 'X'=>667,'Y'=>611,'Z'=>611,'['=>333,'\\'=>278,']'=>333,'^'=>570,'_'=>500,'`'=>333,'a'=>500,'b'=>500,'c'=>444,'d'=>500,'e'=>444,'f'=>333,'g'=>500,'h'=>556,'i'=>278,'j'=>278,'k'=>500,'l'=>278,'m'=>778, + 'n'=>556,'o'=>500,'p'=>500,'q'=>500,'r'=>389,'s'=>389,'t'=>278,'u'=>556,'v'=>444,'w'=>667,'x'=>500,'y'=>444,'z'=>389,'{'=>348,'|'=>220,'}'=>348,'~'=>570,chr(127)=>350,chr(128)=>500,chr(129)=>350,chr(130)=>333,chr(131)=>500, + chr(132)=>500,chr(133)=>1000,chr(134)=>500,chr(135)=>500,chr(136)=>333,chr(137)=>1000,chr(138)=>556,chr(139)=>333,chr(140)=>944,chr(141)=>350,chr(142)=>611,chr(143)=>350,chr(144)=>350,chr(145)=>333,chr(146)=>333,chr(147)=>500,chr(148)=>500,chr(149)=>350,chr(150)=>500,chr(151)=>1000,chr(152)=>333,chr(153)=>1000, + chr(154)=>389,chr(155)=>333,chr(156)=>722,chr(157)=>350,chr(158)=>389,chr(159)=>611,chr(160)=>250,chr(161)=>389,chr(162)=>500,chr(163)=>500,chr(164)=>500,chr(165)=>500,chr(166)=>220,chr(167)=>500,chr(168)=>333,chr(169)=>747,chr(170)=>266,chr(171)=>500,chr(172)=>606,chr(173)=>333,chr(174)=>747,chr(175)=>333, + chr(176)=>400,chr(177)=>570,chr(178)=>300,chr(179)=>300,chr(180)=>333,chr(181)=>576,chr(182)=>500,chr(183)=>250,chr(184)=>333,chr(185)=>300,chr(186)=>300,chr(187)=>500,chr(188)=>750,chr(189)=>750,chr(190)=>750,chr(191)=>500,chr(192)=>667,chr(193)=>667,chr(194)=>667,chr(195)=>667,chr(196)=>667,chr(197)=>667, + chr(198)=>944,chr(199)=>667,chr(200)=>667,chr(201)=>667,chr(202)=>667,chr(203)=>667,chr(204)=>389,chr(205)=>389,chr(206)=>389,chr(207)=>389,chr(208)=>722,chr(209)=>722,chr(210)=>722,chr(211)=>722,chr(212)=>722,chr(213)=>722,chr(214)=>722,chr(215)=>570,chr(216)=>722,chr(217)=>722,chr(218)=>722,chr(219)=>722, + chr(220)=>722,chr(221)=>611,chr(222)=>611,chr(223)=>500,chr(224)=>500,chr(225)=>500,chr(226)=>500,chr(227)=>500,chr(228)=>500,chr(229)=>500,chr(230)=>722,chr(231)=>444,chr(232)=>444,chr(233)=>444,chr(234)=>444,chr(235)=>444,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>500,chr(241)=>556, + chr(242)=>500,chr(243)=>500,chr(244)=>500,chr(245)=>500,chr(246)=>500,chr(247)=>570,chr(248)=>500,chr(249)=>556,chr(250)=>556,chr(251)=>556,chr(252)=>556,chr(253)=>444,chr(254)=>500,chr(255)=>444); +$enc = 'cp1252'; +$uv = array(0=>array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); +?> diff --git a/backend/libs/fpdf/font/timesi.php b/backend/libs/fpdf/font/timesi.php new file mode 100644 index 0000000..f958b5b --- /dev/null +++ b/backend/libs/fpdf/font/timesi.php @@ -0,0 +1,21 @@ +250,chr(1)=>250,chr(2)=>250,chr(3)=>250,chr(4)=>250,chr(5)=>250,chr(6)=>250,chr(7)=>250,chr(8)=>250,chr(9)=>250,chr(10)=>250,chr(11)=>250,chr(12)=>250,chr(13)=>250,chr(14)=>250,chr(15)=>250,chr(16)=>250,chr(17)=>250,chr(18)=>250,chr(19)=>250,chr(20)=>250,chr(21)=>250, + chr(22)=>250,chr(23)=>250,chr(24)=>250,chr(25)=>250,chr(26)=>250,chr(27)=>250,chr(28)=>250,chr(29)=>250,chr(30)=>250,chr(31)=>250,' '=>250,'!'=>333,'"'=>420,'#'=>500,'$'=>500,'%'=>833,'&'=>778,'\''=>214,'('=>333,')'=>333,'*'=>500,'+'=>675, + ','=>250,'-'=>333,'.'=>250,'/'=>278,'0'=>500,'1'=>500,'2'=>500,'3'=>500,'4'=>500,'5'=>500,'6'=>500,'7'=>500,'8'=>500,'9'=>500,':'=>333,';'=>333,'<'=>675,'='=>675,'>'=>675,'?'=>500,'@'=>920,'A'=>611, + 'B'=>611,'C'=>667,'D'=>722,'E'=>611,'F'=>611,'G'=>722,'H'=>722,'I'=>333,'J'=>444,'K'=>667,'L'=>556,'M'=>833,'N'=>667,'O'=>722,'P'=>611,'Q'=>722,'R'=>611,'S'=>500,'T'=>556,'U'=>722,'V'=>611,'W'=>833, + 'X'=>611,'Y'=>556,'Z'=>556,'['=>389,'\\'=>278,']'=>389,'^'=>422,'_'=>500,'`'=>333,'a'=>500,'b'=>500,'c'=>444,'d'=>500,'e'=>444,'f'=>278,'g'=>500,'h'=>500,'i'=>278,'j'=>278,'k'=>444,'l'=>278,'m'=>722, + 'n'=>500,'o'=>500,'p'=>500,'q'=>500,'r'=>389,'s'=>389,'t'=>278,'u'=>500,'v'=>444,'w'=>667,'x'=>444,'y'=>444,'z'=>389,'{'=>400,'|'=>275,'}'=>400,'~'=>541,chr(127)=>350,chr(128)=>500,chr(129)=>350,chr(130)=>333,chr(131)=>500, + chr(132)=>556,chr(133)=>889,chr(134)=>500,chr(135)=>500,chr(136)=>333,chr(137)=>1000,chr(138)=>500,chr(139)=>333,chr(140)=>944,chr(141)=>350,chr(142)=>556,chr(143)=>350,chr(144)=>350,chr(145)=>333,chr(146)=>333,chr(147)=>556,chr(148)=>556,chr(149)=>350,chr(150)=>500,chr(151)=>889,chr(152)=>333,chr(153)=>980, + chr(154)=>389,chr(155)=>333,chr(156)=>667,chr(157)=>350,chr(158)=>389,chr(159)=>556,chr(160)=>250,chr(161)=>389,chr(162)=>500,chr(163)=>500,chr(164)=>500,chr(165)=>500,chr(166)=>275,chr(167)=>500,chr(168)=>333,chr(169)=>760,chr(170)=>276,chr(171)=>500,chr(172)=>675,chr(173)=>333,chr(174)=>760,chr(175)=>333, + chr(176)=>400,chr(177)=>675,chr(178)=>300,chr(179)=>300,chr(180)=>333,chr(181)=>500,chr(182)=>523,chr(183)=>250,chr(184)=>333,chr(185)=>300,chr(186)=>310,chr(187)=>500,chr(188)=>750,chr(189)=>750,chr(190)=>750,chr(191)=>500,chr(192)=>611,chr(193)=>611,chr(194)=>611,chr(195)=>611,chr(196)=>611,chr(197)=>611, + chr(198)=>889,chr(199)=>667,chr(200)=>611,chr(201)=>611,chr(202)=>611,chr(203)=>611,chr(204)=>333,chr(205)=>333,chr(206)=>333,chr(207)=>333,chr(208)=>722,chr(209)=>667,chr(210)=>722,chr(211)=>722,chr(212)=>722,chr(213)=>722,chr(214)=>722,chr(215)=>675,chr(216)=>722,chr(217)=>722,chr(218)=>722,chr(219)=>722, + chr(220)=>722,chr(221)=>556,chr(222)=>611,chr(223)=>500,chr(224)=>500,chr(225)=>500,chr(226)=>500,chr(227)=>500,chr(228)=>500,chr(229)=>500,chr(230)=>667,chr(231)=>444,chr(232)=>444,chr(233)=>444,chr(234)=>444,chr(235)=>444,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>500,chr(241)=>500, + chr(242)=>500,chr(243)=>500,chr(244)=>500,chr(245)=>500,chr(246)=>500,chr(247)=>675,chr(248)=>500,chr(249)=>500,chr(250)=>500,chr(251)=>500,chr(252)=>500,chr(253)=>444,chr(254)=>500,chr(255)=>444); +$enc = 'cp1252'; +$uv = array(0=>array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); +?> diff --git a/backend/libs/fpdf/font/zapfdingbats.php b/backend/libs/fpdf/font/zapfdingbats.php new file mode 100644 index 0000000..7c2cb5e --- /dev/null +++ b/backend/libs/fpdf/font/zapfdingbats.php @@ -0,0 +1,20 @@ +0,chr(1)=>0,chr(2)=>0,chr(3)=>0,chr(4)=>0,chr(5)=>0,chr(6)=>0,chr(7)=>0,chr(8)=>0,chr(9)=>0,chr(10)=>0,chr(11)=>0,chr(12)=>0,chr(13)=>0,chr(14)=>0,chr(15)=>0,chr(16)=>0,chr(17)=>0,chr(18)=>0,chr(19)=>0,chr(20)=>0,chr(21)=>0, + chr(22)=>0,chr(23)=>0,chr(24)=>0,chr(25)=>0,chr(26)=>0,chr(27)=>0,chr(28)=>0,chr(29)=>0,chr(30)=>0,chr(31)=>0,' '=>278,'!'=>974,'"'=>961,'#'=>974,'$'=>980,'%'=>719,'&'=>789,'\''=>790,'('=>791,')'=>690,'*'=>960,'+'=>939, + ','=>549,'-'=>855,'.'=>911,'/'=>933,'0'=>911,'1'=>945,'2'=>974,'3'=>755,'4'=>846,'5'=>762,'6'=>761,'7'=>571,'8'=>677,'9'=>763,':'=>760,';'=>759,'<'=>754,'='=>494,'>'=>552,'?'=>537,'@'=>577,'A'=>692, + 'B'=>786,'C'=>788,'D'=>788,'E'=>790,'F'=>793,'G'=>794,'H'=>816,'I'=>823,'J'=>789,'K'=>841,'L'=>823,'M'=>833,'N'=>816,'O'=>831,'P'=>923,'Q'=>744,'R'=>723,'S'=>749,'T'=>790,'U'=>792,'V'=>695,'W'=>776, + 'X'=>768,'Y'=>792,'Z'=>759,'['=>707,'\\'=>708,']'=>682,'^'=>701,'_'=>826,'`'=>815,'a'=>789,'b'=>789,'c'=>707,'d'=>687,'e'=>696,'f'=>689,'g'=>786,'h'=>787,'i'=>713,'j'=>791,'k'=>785,'l'=>791,'m'=>873, + 'n'=>761,'o'=>762,'p'=>762,'q'=>759,'r'=>759,'s'=>892,'t'=>892,'u'=>788,'v'=>784,'w'=>438,'x'=>138,'y'=>277,'z'=>415,'{'=>392,'|'=>392,'}'=>668,'~'=>668,chr(127)=>0,chr(128)=>390,chr(129)=>390,chr(130)=>317,chr(131)=>317, + chr(132)=>276,chr(133)=>276,chr(134)=>509,chr(135)=>509,chr(136)=>410,chr(137)=>410,chr(138)=>234,chr(139)=>234,chr(140)=>334,chr(141)=>334,chr(142)=>0,chr(143)=>0,chr(144)=>0,chr(145)=>0,chr(146)=>0,chr(147)=>0,chr(148)=>0,chr(149)=>0,chr(150)=>0,chr(151)=>0,chr(152)=>0,chr(153)=>0, + chr(154)=>0,chr(155)=>0,chr(156)=>0,chr(157)=>0,chr(158)=>0,chr(159)=>0,chr(160)=>0,chr(161)=>732,chr(162)=>544,chr(163)=>544,chr(164)=>910,chr(165)=>667,chr(166)=>760,chr(167)=>760,chr(168)=>776,chr(169)=>595,chr(170)=>694,chr(171)=>626,chr(172)=>788,chr(173)=>788,chr(174)=>788,chr(175)=>788, + chr(176)=>788,chr(177)=>788,chr(178)=>788,chr(179)=>788,chr(180)=>788,chr(181)=>788,chr(182)=>788,chr(183)=>788,chr(184)=>788,chr(185)=>788,chr(186)=>788,chr(187)=>788,chr(188)=>788,chr(189)=>788,chr(190)=>788,chr(191)=>788,chr(192)=>788,chr(193)=>788,chr(194)=>788,chr(195)=>788,chr(196)=>788,chr(197)=>788, + chr(198)=>788,chr(199)=>788,chr(200)=>788,chr(201)=>788,chr(202)=>788,chr(203)=>788,chr(204)=>788,chr(205)=>788,chr(206)=>788,chr(207)=>788,chr(208)=>788,chr(209)=>788,chr(210)=>788,chr(211)=>788,chr(212)=>894,chr(213)=>838,chr(214)=>1016,chr(215)=>458,chr(216)=>748,chr(217)=>924,chr(218)=>748,chr(219)=>918, + chr(220)=>927,chr(221)=>928,chr(222)=>928,chr(223)=>834,chr(224)=>873,chr(225)=>828,chr(226)=>924,chr(227)=>924,chr(228)=>917,chr(229)=>930,chr(230)=>931,chr(231)=>463,chr(232)=>883,chr(233)=>836,chr(234)=>836,chr(235)=>867,chr(236)=>867,chr(237)=>696,chr(238)=>696,chr(239)=>874,chr(240)=>0,chr(241)=>874, + chr(242)=>760,chr(243)=>946,chr(244)=>771,chr(245)=>865,chr(246)=>771,chr(247)=>888,chr(248)=>967,chr(249)=>888,chr(250)=>831,chr(251)=>873,chr(252)=>927,chr(253)=>970,chr(254)=>918,chr(255)=>0); +$uv = array(32=>32,33=>array(9985,4),37=>9742,38=>array(9990,4),42=>9755,43=>9758,44=>array(9996,28),72=>9733,73=>array(10025,35),108=>9679,109=>10061,110=>9632,111=>array(10063,4),115=>9650,116=>9660,117=>9670,118=>10070,119=>9687,120=>array(10072,7),128=>array(10088,14),161=>array(10081,7),168=>9827,169=>9830,170=>9829,171=>9824,172=>array(9312,10),182=>array(10102,31),213=>8594,214=>array(8596,2),216=>array(10136,24),241=>array(10161,14)); +?> diff --git a/backend/libs/fpdf/fpdf.css b/backend/libs/fpdf/fpdf.css new file mode 100644 index 0000000..8cfa33d --- /dev/null +++ b/backend/libs/fpdf/fpdf.css @@ -0,0 +1,21 @@ +body {font-family:"Times New Roman",serif} +h1 {font:bold 135% Arial,sans-serif; color:#4000A0; margin-bottom:0.9em} +h2 {font:bold 95% Arial,sans-serif; color:#900000; margin-top:1.5em; margin-bottom:1em} +dl.param dt {text-decoration:underline} +dl.param dd {margin-top:1em; margin-bottom:1em} +dl.param ul {margin-top:1em; margin-bottom:1em} +tt, code, kbd {font-family:"Courier New",Courier,monospace; font-size:82%} +div.source {margin-top:1.4em; margin-bottom:1.3em} +div.source pre {display:table; border:1px solid #24246A; width:100%; margin:0em; font-family:inherit; font-size:100%} +div.source code {display:block; border:1px solid #C5C5EC; background-color:#F0F5FF; padding:6px; color:#000000} +div.doc-source {margin-top:1.4em; margin-bottom:1.3em} +div.doc-source pre {display:table; width:100%; margin:0em; font-family:inherit; font-size:100%} +div.doc-source code {display:block; background-color:#E0E0E0; padding:4px} +.kw {color:#000080; font-weight:bold} +.str {color:#CC0000} +.cmt {color:#008000} +p.demo {text-align:center; margin-top:-0.9em} +a.demo {text-decoration:none; font-weight:bold; color:#0000CC} +a.demo:link {text-decoration:none; font-weight:bold; color:#0000CC} +a.demo:hover {text-decoration:none; font-weight:bold; color:#0000FF} +a.demo:active {text-decoration:none; font-weight:bold; color:#0000FF} diff --git a/backend/libs/fpdf/fpdf.php b/backend/libs/fpdf/fpdf.php new file mode 100644 index 0000000..05b3f1b --- /dev/null +++ b/backend/libs/fpdf/fpdf.php @@ -0,0 +1,1934 @@ +state = 0; + $this->page = 0; + $this->n = 2; + $this->buffer = ''; + $this->pages = array(); + $this->PageInfo = array(); + $this->fonts = array(); + $this->FontFiles = array(); + $this->encodings = array(); + $this->cmaps = array(); + $this->images = array(); + $this->links = array(); + $this->InHeader = false; + $this->InFooter = false; + $this->lasth = 0; + $this->FontFamily = ''; + $this->FontStyle = ''; + $this->FontSizePt = 12; + $this->underline = false; + $this->DrawColor = '0 G'; + $this->FillColor = '0 g'; + $this->TextColor = '0 g'; + $this->ColorFlag = false; + $this->WithAlpha = false; + $this->ws = 0; + $this->iconv = function_exists('iconv'); + // Font path + if(defined('FPDF_FONTPATH')) + $this->fontpath = FPDF_FONTPATH; + else + $this->fontpath = dirname(__FILE__).'/font/'; + // Core fonts + $this->CoreFonts = array('courier', 'helvetica', 'times', 'symbol', 'zapfdingbats'); + // Scale factor + if($unit=='pt') + $this->k = 1; + elseif($unit=='mm') + $this->k = 72/25.4; + elseif($unit=='cm') + $this->k = 72/2.54; + elseif($unit=='in') + $this->k = 72; + else + $this->Error('Incorrect unit: '.$unit); + // Page sizes + $this->StdPageSizes = array('a3'=>array(841.89,1190.55), 'a4'=>array(595.28,841.89), 'a5'=>array(420.94,595.28), + 'letter'=>array(612,792), 'legal'=>array(612,1008)); + $size = $this->_getpagesize($size); + $this->DefPageSize = $size; + $this->CurPageSize = $size; + // Page orientation + $orientation = strtolower($orientation); + if($orientation=='p' || $orientation=='portrait') + { + $this->DefOrientation = 'P'; + $this->w = $size[0]; + $this->h = $size[1]; + } + elseif($orientation=='l' || $orientation=='landscape') + { + $this->DefOrientation = 'L'; + $this->w = $size[1]; + $this->h = $size[0]; + } + else + $this->Error('Incorrect orientation: '.$orientation); + $this->CurOrientation = $this->DefOrientation; + $this->wPt = $this->w*$this->k; + $this->hPt = $this->h*$this->k; + // Page rotation + $this->CurRotation = 0; + // Page margins (1 cm) + $margin = 28.35/$this->k; + $this->SetMargins($margin,$margin); + // Interior cell margin (1 mm) + $this->cMargin = $margin/10; + // Line width (0.2 mm) + $this->LineWidth = .567/$this->k; + // Automatic page break + $this->SetAutoPageBreak(true,2*$margin); + // Default display mode + $this->SetDisplayMode('default'); + // Enable compression + $this->SetCompression(true); + // Metadata + $this->metadata = array('Producer'=>'FPDF '.self::VERSION); + // Set default PDF version number + $this->PDFVersion = '1.3'; +} + +function SetMargins($left, $top, $right=null) +{ + // Set left, top and right margins + $this->lMargin = $left; + $this->tMargin = $top; + if($right===null) + $right = $left; + $this->rMargin = $right; +} + +function SetLeftMargin($margin) +{ + // Set left margin + $this->lMargin = $margin; + if($this->page>0 && $this->x<$margin) + $this->x = $margin; +} + +function SetTopMargin($margin) +{ + // Set top margin + $this->tMargin = $margin; +} + +function SetRightMargin($margin) +{ + // Set right margin + $this->rMargin = $margin; +} + +function SetAutoPageBreak($auto, $margin=0) +{ + // Set auto page break mode and triggering margin + $this->AutoPageBreak = $auto; + $this->bMargin = $margin; + $this->PageBreakTrigger = $this->h-$margin; +} + +function SetDisplayMode($zoom, $layout='default') +{ + // Set display mode in viewer + if($zoom=='fullpage' || $zoom=='fullwidth' || $zoom=='real' || $zoom=='default' || !is_string($zoom)) + $this->ZoomMode = $zoom; + else + $this->Error('Incorrect zoom display mode: '.$zoom); + if($layout=='single' || $layout=='continuous' || $layout=='two' || $layout=='default') + $this->LayoutMode = $layout; + else + $this->Error('Incorrect layout display mode: '.$layout); +} + +function SetCompression($compress) +{ + // Set page compression + if(function_exists('gzcompress')) + $this->compress = $compress; + else + $this->compress = false; +} + +function SetTitle($title, $isUTF8=false) +{ + // Title of document + $this->metadata['Title'] = $isUTF8 ? $title : $this->_UTF8encode($title); +} + +function SetAuthor($author, $isUTF8=false) +{ + // Author of document + $this->metadata['Author'] = $isUTF8 ? $author : $this->_UTF8encode($author); +} + +function SetSubject($subject, $isUTF8=false) +{ + // Subject of document + $this->metadata['Subject'] = $isUTF8 ? $subject : $this->_UTF8encode($subject); +} + +function SetKeywords($keywords, $isUTF8=false) +{ + // Keywords of document + $this->metadata['Keywords'] = $isUTF8 ? $keywords : $this->_UTF8encode($keywords); +} + +function SetCreator($creator, $isUTF8=false) +{ + // Creator of document + $this->metadata['Creator'] = $isUTF8 ? $creator : $this->_UTF8encode($creator); +} + +function AliasNbPages($alias='{nb}') +{ + // Define an alias for total number of pages + $this->AliasNbPages = $alias; +} + +function Error($msg) +{ + // Fatal error + throw new Exception('FPDF error: '.$msg); +} + +function Close() +{ + // Terminate document + if($this->state==3) + return; + if($this->page==0) + $this->AddPage(); + // Page footer + $this->InFooter = true; + $this->Footer(); + $this->InFooter = false; + // Close page + $this->_endpage(); + // Close document + $this->_enddoc(); +} + +function AddPage($orientation='', $size='', $rotation=0) +{ + // Start a new page + if($this->state==3) + $this->Error('The document is closed'); + $family = $this->FontFamily; + $style = $this->FontStyle.($this->underline ? 'U' : ''); + $fontsize = $this->FontSizePt; + $lw = $this->LineWidth; + $dc = $this->DrawColor; + $fc = $this->FillColor; + $tc = $this->TextColor; + $cf = $this->ColorFlag; + if($this->page>0) + { + // Page footer + $this->InFooter = true; + $this->Footer(); + $this->InFooter = false; + // Close page + $this->_endpage(); + } + // Start new page + $this->_beginpage($orientation,$size,$rotation); + // Set line cap style to square + $this->_out('2 J'); + // Set line width + $this->LineWidth = $lw; + $this->_out(sprintf('%.2F w',$lw*$this->k)); + // Set font + if($family) + $this->SetFont($family,$style,$fontsize); + // Set colors + $this->DrawColor = $dc; + if($dc!='0 G') + $this->_out($dc); + $this->FillColor = $fc; + if($fc!='0 g') + $this->_out($fc); + $this->TextColor = $tc; + $this->ColorFlag = $cf; + // Page header + $this->InHeader = true; + $this->Header(); + $this->InHeader = false; + // Restore line width + if($this->LineWidth!=$lw) + { + $this->LineWidth = $lw; + $this->_out(sprintf('%.2F w',$lw*$this->k)); + } + // Restore font + if($family) + $this->SetFont($family,$style,$fontsize); + // Restore colors + if($this->DrawColor!=$dc) + { + $this->DrawColor = $dc; + $this->_out($dc); + } + if($this->FillColor!=$fc) + { + $this->FillColor = $fc; + $this->_out($fc); + } + $this->TextColor = $tc; + $this->ColorFlag = $cf; +} + +function Header() +{ + // To be implemented in your own inherited class +} + +function Footer() +{ + // To be implemented in your own inherited class +} + +function PageNo() +{ + // Get current page number + return $this->page; +} + +function SetDrawColor($r, $g=null, $b=null) +{ + // Set color for all stroking operations + if(($r==0 && $g==0 && $b==0) || $g===null) + $this->DrawColor = sprintf('%.3F G',$r/255); + else + $this->DrawColor = sprintf('%.3F %.3F %.3F RG',$r/255,$g/255,$b/255); + if($this->page>0) + $this->_out($this->DrawColor); +} + +function SetFillColor($r, $g=null, $b=null) +{ + // Set color for all filling operations + if(($r==0 && $g==0 && $b==0) || $g===null) + $this->FillColor = sprintf('%.3F g',$r/255); + else + $this->FillColor = sprintf('%.3F %.3F %.3F rg',$r/255,$g/255,$b/255); + $this->ColorFlag = ($this->FillColor!=$this->TextColor); + if($this->page>0) + $this->_out($this->FillColor); +} + +function SetTextColor($r, $g=null, $b=null) +{ + // Set color for text + if(($r==0 && $g==0 && $b==0) || $g===null) + $this->TextColor = sprintf('%.3F g',$r/255); + else + $this->TextColor = sprintf('%.3F %.3F %.3F rg',$r/255,$g/255,$b/255); + $this->ColorFlag = ($this->FillColor!=$this->TextColor); +} + +function GetStringWidth($s) +{ + // Get width of a string in the current font + $cw = $this->CurrentFont['cw']; + $w = 0; + $s = (string)$s; + $l = strlen($s); + for($i=0;$i<$l;$i++) + $w += $cw[$s[$i]]; + return $w*$this->FontSize/1000; +} + +function SetLineWidth($width) +{ + // Set line width + $this->LineWidth = $width; + if($this->page>0) + $this->_out(sprintf('%.2F w',$width*$this->k)); +} + +function Line($x1, $y1, $x2, $y2) +{ + // Draw a line + $this->_out(sprintf('%.2F %.2F m %.2F %.2F l S',$x1*$this->k,($this->h-$y1)*$this->k,$x2*$this->k,($this->h-$y2)*$this->k)); +} + +function Rect($x, $y, $w, $h, $style='') +{ + // Draw a rectangle + if($style=='F') + $op = 'f'; + elseif($style=='FD' || $style=='DF') + $op = 'B'; + else + $op = 'S'; + $this->_out(sprintf('%.2F %.2F %.2F %.2F re %s',$x*$this->k,($this->h-$y)*$this->k,$w*$this->k,-$h*$this->k,$op)); +} + +function AddFont($family, $style='', $file='', $dir='') +{ + // Add a TrueType, OpenType or Type1 font + $family = strtolower($family); + if($file=='') + $file = str_replace(' ','',$family).strtolower($style).'.php'; + $style = strtoupper($style); + if($style=='IB') + $style = 'BI'; + $fontkey = $family.$style; + if(isset($this->fonts[$fontkey])) + return; + if(strpos($file,'/')!==false || strpos($file,"\\")!==false) + $this->Error('Incorrect font definition file name: '.$file); + if($dir=='') + $dir = $this->fontpath; + if(substr($dir,-1)!='/' && substr($dir,-1)!='\\') + $dir .= '/'; + $info = $this->_loadfont($dir.$file); + $info['i'] = count($this->fonts)+1; + if(!empty($info['file'])) + { + // Embedded font + $info['file'] = $dir.$info['file']; + if($info['type']=='TrueType') + $this->FontFiles[$info['file']] = array('length1'=>$info['originalsize']); + else + $this->FontFiles[$info['file']] = array('length1'=>$info['size1'], 'length2'=>$info['size2']); + } + $this->fonts[$fontkey] = $info; +} + +function SetFont($family, $style='', $size=0) +{ + // Select a font; size given in points + if($family=='') + $family = $this->FontFamily; + else + $family = strtolower($family); + $style = strtoupper($style); + if(strpos($style,'U')!==false) + { + $this->underline = true; + $style = str_replace('U','',$style); + } + else + $this->underline = false; + if($style=='IB') + $style = 'BI'; + if($size==0) + $size = $this->FontSizePt; + // Test if font is already selected + if($this->FontFamily==$family && $this->FontStyle==$style && $this->FontSizePt==$size) + return; + // Test if font is already loaded + $fontkey = $family.$style; + if(!isset($this->fonts[$fontkey])) + { + // Test if one of the core fonts + if($family=='arial') + $family = 'helvetica'; + if(in_array($family,$this->CoreFonts)) + { + if($family=='symbol' || $family=='zapfdingbats') + $style = ''; + $fontkey = $family.$style; + if(!isset($this->fonts[$fontkey])) + $this->AddFont($family,$style); + } + else + $this->Error('Undefined font: '.$family.' '.$style); + } + // Select it + $this->FontFamily = $family; + $this->FontStyle = $style; + $this->FontSizePt = $size; + $this->FontSize = $size/$this->k; + $this->CurrentFont = $this->fonts[$fontkey]; + if($this->page>0) + $this->_out(sprintf('BT /F%d %.2F Tf ET',$this->CurrentFont['i'],$this->FontSizePt)); +} + +function SetFontSize($size) +{ + // Set font size in points + if($this->FontSizePt==$size) + return; + $this->FontSizePt = $size; + $this->FontSize = $size/$this->k; + if($this->page>0 && isset($this->CurrentFont)) + $this->_out(sprintf('BT /F%d %.2F Tf ET',$this->CurrentFont['i'],$this->FontSizePt)); +} + +function AddLink() +{ + // Create a new internal link + $n = count($this->links)+1; + $this->links[$n] = array(0, 0); + return $n; +} + +function SetLink($link, $y=0, $page=-1) +{ + // Set destination of internal link + if($y==-1) + $y = $this->y; + if($page==-1) + $page = $this->page; + $this->links[$link] = array($page, $y); +} + +function Link($x, $y, $w, $h, $link) +{ + // Put a link on the page + $this->PageLinks[$this->page][] = array($x*$this->k, $this->hPt-$y*$this->k, $w*$this->k, $h*$this->k, $link); +} + +function Text($x, $y, $txt) +{ + // Output a string + if(!isset($this->CurrentFont)) + $this->Error('No font has been set'); + $txt = (string)$txt; + $s = sprintf('BT %.2F %.2F Td (%s) Tj ET',$x*$this->k,($this->h-$y)*$this->k,$this->_escape($txt)); + if($this->underline && $txt!=='') + $s .= ' '.$this->_dounderline($x,$y,$txt); + if($this->ColorFlag) + $s = 'q '.$this->TextColor.' '.$s.' Q'; + $this->_out($s); +} + +function AcceptPageBreak() +{ + // Accept automatic page break or not + return $this->AutoPageBreak; +} + +function Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=false, $link='') +{ + // Output a cell + $k = $this->k; + if($this->y+$h>$this->PageBreakTrigger && !$this->InHeader && !$this->InFooter && $this->AcceptPageBreak()) + { + // Automatic page break + $x = $this->x; + $ws = $this->ws; + if($ws>0) + { + $this->ws = 0; + $this->_out('0 Tw'); + } + $this->AddPage($this->CurOrientation,$this->CurPageSize,$this->CurRotation); + $this->x = $x; + if($ws>0) + { + $this->ws = $ws; + $this->_out(sprintf('%.3F Tw',$ws*$k)); + } + } + if($w==0) + $w = $this->w-$this->rMargin-$this->x; + $s = ''; + if($fill || $border==1) + { + if($fill) + $op = ($border==1) ? 'B' : 'f'; + else + $op = 'S'; + $s = sprintf('%.2F %.2F %.2F %.2F re %s ',$this->x*$k,($this->h-$this->y)*$k,$w*$k,-$h*$k,$op); + } + if(is_string($border)) + { + $x = $this->x; + $y = $this->y; + if(strpos($border,'L')!==false) + $s .= sprintf('%.2F %.2F m %.2F %.2F l S ',$x*$k,($this->h-$y)*$k,$x*$k,($this->h-($y+$h))*$k); + if(strpos($border,'T')!==false) + $s .= sprintf('%.2F %.2F m %.2F %.2F l S ',$x*$k,($this->h-$y)*$k,($x+$w)*$k,($this->h-$y)*$k); + if(strpos($border,'R')!==false) + $s .= sprintf('%.2F %.2F m %.2F %.2F l S ',($x+$w)*$k,($this->h-$y)*$k,($x+$w)*$k,($this->h-($y+$h))*$k); + if(strpos($border,'B')!==false) + $s .= sprintf('%.2F %.2F m %.2F %.2F l S ',$x*$k,($this->h-($y+$h))*$k,($x+$w)*$k,($this->h-($y+$h))*$k); + } + $txt = (string)$txt; + if($txt!=='') + { + if(!isset($this->CurrentFont)) + $this->Error('No font has been set'); + if($align=='R') + $dx = $w-$this->cMargin-$this->GetStringWidth($txt); + elseif($align=='C') + $dx = ($w-$this->GetStringWidth($txt))/2; + else + $dx = $this->cMargin; + if($this->ColorFlag) + $s .= 'q '.$this->TextColor.' '; + $s .= sprintf('BT %.2F %.2F Td (%s) Tj ET',($this->x+$dx)*$k,($this->h-($this->y+.5*$h+.3*$this->FontSize))*$k,$this->_escape($txt)); + if($this->underline) + $s .= ' '.$this->_dounderline($this->x+$dx,$this->y+.5*$h+.3*$this->FontSize,$txt); + if($this->ColorFlag) + $s .= ' Q'; + if($link) + $this->Link($this->x+$dx,$this->y+.5*$h-.5*$this->FontSize,$this->GetStringWidth($txt),$this->FontSize,$link); + } + if($s) + $this->_out($s); + $this->lasth = $h; + if($ln>0) + { + // Go to next line + $this->y += $h; + if($ln==1) + $this->x = $this->lMargin; + } + else + $this->x += $w; +} + +function MultiCell($w, $h, $txt, $border=0, $align='J', $fill=false) +{ + // Output text with automatic or explicit line breaks + if(!isset($this->CurrentFont)) + $this->Error('No font has been set'); + $cw = $this->CurrentFont['cw']; + if($w==0) + $w = $this->w-$this->rMargin-$this->x; + $wmax = ($w-2*$this->cMargin)*1000/$this->FontSize; + $s = str_replace("\r",'',(string)$txt); + $nb = strlen($s); + if($nb>0 && $s[$nb-1]=="\n") + $nb--; + $b = 0; + if($border) + { + if($border==1) + { + $border = 'LTRB'; + $b = 'LRT'; + $b2 = 'LR'; + } + else + { + $b2 = ''; + if(strpos($border,'L')!==false) + $b2 .= 'L'; + if(strpos($border,'R')!==false) + $b2 .= 'R'; + $b = (strpos($border,'T')!==false) ? $b2.'T' : $b2; + } + } + $sep = -1; + $i = 0; + $j = 0; + $l = 0; + $ns = 0; + $nl = 1; + while($i<$nb) + { + // Get next character + $c = $s[$i]; + if($c=="\n") + { + // Explicit line break + if($this->ws>0) + { + $this->ws = 0; + $this->_out('0 Tw'); + } + $this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill); + $i++; + $sep = -1; + $j = $i; + $l = 0; + $ns = 0; + $nl++; + if($border && $nl==2) + $b = $b2; + continue; + } + if($c==' ') + { + $sep = $i; + $ls = $l; + $ns++; + } + $l += $cw[$c]; + if($l>$wmax) + { + // Automatic line break + if($sep==-1) + { + if($i==$j) + $i++; + if($this->ws>0) + { + $this->ws = 0; + $this->_out('0 Tw'); + } + $this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill); + } + else + { + if($align=='J') + { + $this->ws = ($ns>1) ? ($wmax-$ls)/1000*$this->FontSize/($ns-1) : 0; + $this->_out(sprintf('%.3F Tw',$this->ws*$this->k)); + } + $this->Cell($w,$h,substr($s,$j,$sep-$j),$b,2,$align,$fill); + $i = $sep+1; + } + $sep = -1; + $j = $i; + $l = 0; + $ns = 0; + $nl++; + if($border && $nl==2) + $b = $b2; + } + else + $i++; + } + // Last chunk + if($this->ws>0) + { + $this->ws = 0; + $this->_out('0 Tw'); + } + if($border && strpos($border,'B')!==false) + $b .= 'B'; + $this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill); + $this->x = $this->lMargin; +} + +function Write($h, $txt, $link='') +{ + // Output text in flowing mode + if(!isset($this->CurrentFont)) + $this->Error('No font has been set'); + $cw = $this->CurrentFont['cw']; + $w = $this->w-$this->rMargin-$this->x; + $wmax = ($w-2*$this->cMargin)*1000/$this->FontSize; + $s = str_replace("\r",'',(string)$txt); + $nb = strlen($s); + $sep = -1; + $i = 0; + $j = 0; + $l = 0; + $nl = 1; + while($i<$nb) + { + // Get next character + $c = $s[$i]; + if($c=="\n") + { + // Explicit line break + $this->Cell($w,$h,substr($s,$j,$i-$j),0,2,'',false,$link); + $i++; + $sep = -1; + $j = $i; + $l = 0; + if($nl==1) + { + $this->x = $this->lMargin; + $w = $this->w-$this->rMargin-$this->x; + $wmax = ($w-2*$this->cMargin)*1000/$this->FontSize; + } + $nl++; + continue; + } + if($c==' ') + $sep = $i; + $l += $cw[$c]; + if($l>$wmax) + { + // Automatic line break + if($sep==-1) + { + if($this->x>$this->lMargin) + { + // Move to next line + $this->x = $this->lMargin; + $this->y += $h; + $w = $this->w-$this->rMargin-$this->x; + $wmax = ($w-2*$this->cMargin)*1000/$this->FontSize; + $i++; + $nl++; + continue; + } + if($i==$j) + $i++; + $this->Cell($w,$h,substr($s,$j,$i-$j),0,2,'',false,$link); + } + else + { + $this->Cell($w,$h,substr($s,$j,$sep-$j),0,2,'',false,$link); + $i = $sep+1; + } + $sep = -1; + $j = $i; + $l = 0; + if($nl==1) + { + $this->x = $this->lMargin; + $w = $this->w-$this->rMargin-$this->x; + $wmax = ($w-2*$this->cMargin)*1000/$this->FontSize; + } + $nl++; + } + else + $i++; + } + // Last chunk + if($i!=$j) + $this->Cell($l/1000*$this->FontSize,$h,substr($s,$j),0,0,'',false,$link); +} + +function Ln($h=null) +{ + // Line feed; default value is the last cell height + $this->x = $this->lMargin; + if($h===null) + $this->y += $this->lasth; + else + $this->y += $h; +} + +function Image($file, $x=null, $y=null, $w=0, $h=0, $type='', $link='') +{ + // Put an image on the page + if($file=='') + $this->Error('Image file name is empty'); + if(!isset($this->images[$file])) + { + // First use of this image, get info + if($type=='') + { + $pos = strrpos($file,'.'); + if(!$pos) + $this->Error('Image file has no extension and no type was specified: '.$file); + $type = substr($file,$pos+1); + } + $type = strtolower($type); + if($type=='jpeg') + $type = 'jpg'; + $mtd = '_parse'.$type; + if(!method_exists($this,$mtd)) + $this->Error('Unsupported image type: '.$type); + $info = $this->$mtd($file); + $info['i'] = count($this->images)+1; + $this->images[$file] = $info; + } + else + $info = $this->images[$file]; + + // Automatic width and height calculation if needed + if($w==0 && $h==0) + { + // Put image at 96 dpi + $w = -96; + $h = -96; + } + if($w<0) + $w = -$info['w']*72/$w/$this->k; + if($h<0) + $h = -$info['h']*72/$h/$this->k; + if($w==0) + $w = $h*$info['w']/$info['h']; + if($h==0) + $h = $w*$info['h']/$info['w']; + + // Flowing mode + if($y===null) + { + if($this->y+$h>$this->PageBreakTrigger && !$this->InHeader && !$this->InFooter && $this->AcceptPageBreak()) + { + // Automatic page break + $x2 = $this->x; + $this->AddPage($this->CurOrientation,$this->CurPageSize,$this->CurRotation); + $this->x = $x2; + } + $y = $this->y; + $this->y += $h; + } + + if($x===null) + $x = $this->x; + $this->_out(sprintf('q %.2F 0 0 %.2F %.2F %.2F cm /I%d Do Q',$w*$this->k,$h*$this->k,$x*$this->k,($this->h-($y+$h))*$this->k,$info['i'])); + if($link) + $this->Link($x,$y,$w,$h,$link); +} + +function GetPageWidth() +{ + // Get current page width + return $this->w; +} + +function GetPageHeight() +{ + // Get current page height + return $this->h; +} + +function GetX() +{ + // Get x position + return $this->x; +} + +function SetX($x) +{ + // Set x position + if($x>=0) + $this->x = $x; + else + $this->x = $this->w+$x; +} + +function GetY() +{ + // Get y position + return $this->y; +} + +function SetY($y, $resetX=true) +{ + // Set y position and optionally reset x + if($y>=0) + $this->y = $y; + else + $this->y = $this->h+$y; + if($resetX) + $this->x = $this->lMargin; +} + +function SetXY($x, $y) +{ + // Set x and y positions + $this->SetX($x); + $this->SetY($y,false); +} + +function Output($dest='', $name='', $isUTF8=false) +{ + // Output PDF to some destination + $this->Close(); + if(strlen($name)==1 && strlen($dest)!=1) + { + // Fix parameter order + $tmp = $dest; + $dest = $name; + $name = $tmp; + } + if($dest=='') + $dest = 'I'; + if($name=='') + $name = 'doc.pdf'; + switch(strtoupper($dest)) + { + case 'I': + // Send to standard output + $this->_checkoutput(); + if(PHP_SAPI!='cli') + { + // We send to a browser + header('Content-Type: application/pdf'); + header('Content-Disposition: inline; '.$this->_httpencode('filename',$name,$isUTF8)); + header('Cache-Control: private, max-age=0, must-revalidate'); + header('Pragma: public'); + } + echo $this->buffer; + break; + case 'D': + // Download file + $this->_checkoutput(); + header('Content-Type: application/pdf'); + header('Content-Disposition: attachment; '.$this->_httpencode('filename',$name,$isUTF8)); + header('Cache-Control: private, max-age=0, must-revalidate'); + header('Pragma: public'); + echo $this->buffer; + break; + case 'F': + // Save to local file + if(!file_put_contents($name,$this->buffer)) + $this->Error('Unable to create output file: '.$name); + break; + case 'S': + // Return as a string + return $this->buffer; + default: + $this->Error('Incorrect output destination: '.$dest); + } + return ''; +} + +/******************************************************************************* +* Protected methods * +*******************************************************************************/ + +protected function _checkoutput() +{ + if(PHP_SAPI!='cli') + { + if(headers_sent($file,$line)) + $this->Error("Some data has already been output, can't send PDF file (output started at $file:$line)"); + } + if(ob_get_length()) + { + // The output buffer is not empty + if(preg_match('/^(\xEF\xBB\xBF)?\s*$/',ob_get_contents())) + { + // It contains only a UTF-8 BOM and/or whitespace, let's clean it + ob_clean(); + } + else + $this->Error("Some data has already been output, can't send PDF file"); + } +} + +protected function _getpagesize($size) +{ + if(is_string($size)) + { + $size = strtolower($size); + if(!isset($this->StdPageSizes[$size])) + $this->Error('Unknown page size: '.$size); + $a = $this->StdPageSizes[$size]; + return array($a[0]/$this->k, $a[1]/$this->k); + } + else + { + if($size[0]>$size[1]) + return array($size[1], $size[0]); + else + return $size; + } +} + +protected function _beginpage($orientation, $size, $rotation) +{ + $this->page++; + $this->pages[$this->page] = ''; + $this->PageLinks[$this->page] = array(); + $this->state = 2; + $this->x = $this->lMargin; + $this->y = $this->tMargin; + $this->FontFamily = ''; + // Check page size and orientation + if($orientation=='') + $orientation = $this->DefOrientation; + else + $orientation = strtoupper($orientation[0]); + if($size=='') + $size = $this->DefPageSize; + else + $size = $this->_getpagesize($size); + if($orientation!=$this->CurOrientation || $size[0]!=$this->CurPageSize[0] || $size[1]!=$this->CurPageSize[1]) + { + // New size or orientation + if($orientation=='P') + { + $this->w = $size[0]; + $this->h = $size[1]; + } + else + { + $this->w = $size[1]; + $this->h = $size[0]; + } + $this->wPt = $this->w*$this->k; + $this->hPt = $this->h*$this->k; + $this->PageBreakTrigger = $this->h-$this->bMargin; + $this->CurOrientation = $orientation; + $this->CurPageSize = $size; + } + if($orientation!=$this->DefOrientation || $size[0]!=$this->DefPageSize[0] || $size[1]!=$this->DefPageSize[1]) + $this->PageInfo[$this->page]['size'] = array($this->wPt, $this->hPt); + if($rotation!=0) + { + if($rotation%90!=0) + $this->Error('Incorrect rotation value: '.$rotation); + $this->PageInfo[$this->page]['rotation'] = $rotation; + } + $this->CurRotation = $rotation; +} + +protected function _endpage() +{ + $this->state = 1; +} + +protected function _loadfont($path) +{ + // Load a font definition file + include($path); + if(!isset($name)) + $this->Error('Could not include font definition file: '.$path); + if(isset($enc)) + $enc = strtolower($enc); + if(!isset($subsetted)) + $subsetted = false; + return get_defined_vars(); +} + +protected function _isascii($s) +{ + // Test if string is ASCII + $nb = strlen($s); + for($i=0;$i<$nb;$i++) + { + if(ord($s[$i])>127) + return false; + } + return true; +} + +protected function _httpencode($param, $value, $isUTF8) +{ + // Encode HTTP header field parameter + if($this->_isascii($value)) + return $param.'="'.$value.'"'; + if(!$isUTF8) + $value = $this->_UTF8encode($value); + return $param."*=UTF-8''".rawurlencode($value); +} + +protected function _UTF8encode($s) +{ + // Convert ISO-8859-1 to UTF-8 + if($this->iconv) + return iconv('ISO-8859-1','UTF-8',$s); + $res = ''; + $nb = strlen($s); + for($i=0;$i<$nb;$i++) + { + $c = $s[$i]; + $v = ord($c); + if($v>=128) + { + $res .= chr(0xC0 | ($v >> 6)); + $res .= chr(0x80 | ($v & 0x3F)); + } + else + $res .= $c; + } + return $res; +} + +protected function _UTF8toUTF16($s) +{ + // Convert UTF-8 to UTF-16BE with BOM + $res = "\xFE\xFF"; + if($this->iconv) + return $res.iconv('UTF-8','UTF-16BE',$s); + $nb = strlen($s); + $i = 0; + while($i<$nb) + { + $c1 = ord($s[$i++]); + if($c1>=224) + { + // 3-byte character + $c2 = ord($s[$i++]); + $c3 = ord($s[$i++]); + $res .= chr((($c1 & 0x0F)<<4) + (($c2 & 0x3C)>>2)); + $res .= chr((($c2 & 0x03)<<6) + ($c3 & 0x3F)); + } + elseif($c1>=192) + { + // 2-byte character + $c2 = ord($s[$i++]); + $res .= chr(($c1 & 0x1C)>>2); + $res .= chr((($c1 & 0x03)<<6) + ($c2 & 0x3F)); + } + else + { + // Single-byte character + $res .= "\0".chr($c1); + } + } + return $res; +} + +protected function _escape($s) +{ + // Escape special characters + if(strpos($s,'(')!==false || strpos($s,')')!==false || strpos($s,'\\')!==false || strpos($s,"\r")!==false) + return str_replace(array('\\','(',')',"\r"), array('\\\\','\\(','\\)','\\r'), $s); + else + return $s; +} + +protected function _textstring($s) +{ + // Format a text string + if(!$this->_isascii($s)) + $s = $this->_UTF8toUTF16($s); + return '('.$this->_escape($s).')'; +} + +protected function _dounderline($x, $y, $txt) +{ + // Underline text + $up = $this->CurrentFont['up']; + $ut = $this->CurrentFont['ut']; + $w = $this->GetStringWidth($txt)+$this->ws*substr_count($txt,' '); + return sprintf('%.2F %.2F %.2F %.2F re f',$x*$this->k,($this->h-($y-$up/1000*$this->FontSize))*$this->k,$w*$this->k,-$ut/1000*$this->FontSizePt); +} + +protected function _parsejpg($file) +{ + // Extract info from a JPEG file + $a = getimagesize($file); + if(!$a) + $this->Error('Missing or incorrect image file: '.$file); + if($a[2]!=2) + $this->Error('Not a JPEG file: '.$file); + if(!isset($a['channels']) || $a['channels']==3) + $colspace = 'DeviceRGB'; + elseif($a['channels']==4) + $colspace = 'DeviceCMYK'; + else + $colspace = 'DeviceGray'; + $bpc = isset($a['bits']) ? $a['bits'] : 8; + $data = file_get_contents($file); + return array('w'=>$a[0], 'h'=>$a[1], 'cs'=>$colspace, 'bpc'=>$bpc, 'f'=>'DCTDecode', 'data'=>$data); +} + +protected function _parsepng($file) +{ + // Extract info from a PNG file + $f = fopen($file,'rb'); + if(!$f) + $this->Error('Can\'t open image file: '.$file); + $info = $this->_parsepngstream($f,$file); + fclose($f); + return $info; +} + +protected function _parsepngstream($f, $file) +{ + // Check signature + if($this->_readstream($f,8)!=chr(137).'PNG'.chr(13).chr(10).chr(26).chr(10)) + $this->Error('Not a PNG file: '.$file); + + // Read header chunk + $this->_readstream($f,4); + if($this->_readstream($f,4)!='IHDR') + $this->Error('Incorrect PNG file: '.$file); + $w = $this->_readint($f); + $h = $this->_readint($f); + $bpc = ord($this->_readstream($f,1)); + if($bpc>8) + $this->Error('16-bit depth not supported: '.$file); + $ct = ord($this->_readstream($f,1)); + if($ct==0 || $ct==4) + $colspace = 'DeviceGray'; + elseif($ct==2 || $ct==6) + $colspace = 'DeviceRGB'; + elseif($ct==3) + $colspace = 'Indexed'; + else + $this->Error('Unknown color type: '.$file); + if(ord($this->_readstream($f,1))!=0) + $this->Error('Unknown compression method: '.$file); + if(ord($this->_readstream($f,1))!=0) + $this->Error('Unknown filter method: '.$file); + if(ord($this->_readstream($f,1))!=0) + $this->Error('Interlacing not supported: '.$file); + $this->_readstream($f,4); + $dp = '/Predictor 15 /Colors '.($colspace=='DeviceRGB' ? 3 : 1).' /BitsPerComponent '.$bpc.' /Columns '.$w; + + // Scan chunks looking for palette, transparency and image data + $pal = ''; + $trns = ''; + $data = ''; + do + { + $n = $this->_readint($f); + $type = $this->_readstream($f,4); + if($type=='PLTE') + { + // Read palette + $pal = $this->_readstream($f,$n); + $this->_readstream($f,4); + } + elseif($type=='tRNS') + { + // Read transparency info + $t = $this->_readstream($f,$n); + if($ct==0) + $trns = array(ord(substr($t,1,1))); + elseif($ct==2) + $trns = array(ord(substr($t,1,1)), ord(substr($t,3,1)), ord(substr($t,5,1))); + else + { + $pos = strpos($t,chr(0)); + if($pos!==false) + $trns = array($pos); + } + $this->_readstream($f,4); + } + elseif($type=='IDAT') + { + // Read image data block + $data .= $this->_readstream($f,$n); + $this->_readstream($f,4); + } + elseif($type=='IEND') + break; + else + $this->_readstream($f,$n+4); + } + while($n); + + if($colspace=='Indexed' && empty($pal)) + $this->Error('Missing palette in '.$file); + $info = array('w'=>$w, 'h'=>$h, 'cs'=>$colspace, 'bpc'=>$bpc, 'f'=>'FlateDecode', 'dp'=>$dp, 'pal'=>$pal, 'trns'=>$trns); + if($ct>=4) + { + // Extract alpha channel + if(!function_exists('gzuncompress')) + $this->Error('Zlib not available, can\'t handle alpha channel: '.$file); + $data = gzuncompress($data); + $color = ''; + $alpha = ''; + if($ct==4) + { + // Gray image + $len = 2*$w; + for($i=0;$i<$h;$i++) + { + $pos = (1+$len)*$i; + $color .= $data[$pos]; + $alpha .= $data[$pos]; + $line = substr($data,$pos+1,$len); + $color .= preg_replace('/(.)./s','$1',$line); + $alpha .= preg_replace('/.(.)/s','$1',$line); + } + } + else + { + // RGB image + $len = 4*$w; + for($i=0;$i<$h;$i++) + { + $pos = (1+$len)*$i; + $color .= $data[$pos]; + $alpha .= $data[$pos]; + $line = substr($data,$pos+1,$len); + $color .= preg_replace('/(.{3})./s','$1',$line); + $alpha .= preg_replace('/.{3}(.)/s','$1',$line); + } + } + unset($data); + $data = gzcompress($color); + $info['smask'] = gzcompress($alpha); + $this->WithAlpha = true; + if($this->PDFVersion<'1.4') + $this->PDFVersion = '1.4'; + } + $info['data'] = $data; + return $info; +} + +protected function _readstream($f, $n) +{ + // Read n bytes from stream + $res = ''; + while($n>0 && !feof($f)) + { + $s = fread($f,$n); + if($s===false) + $this->Error('Error while reading stream'); + $n -= strlen($s); + $res .= $s; + } + if($n>0) + $this->Error('Unexpected end of stream'); + return $res; +} + +protected function _readint($f) +{ + // Read a 4-byte integer from stream + $a = unpack('Ni',$this->_readstream($f,4)); + return $a['i']; +} + +protected function _parsegif($file) +{ + // Extract info from a GIF file (via PNG conversion) + if(!function_exists('imagepng')) + $this->Error('GD extension is required for GIF support'); + if(!function_exists('imagecreatefromgif')) + $this->Error('GD has no GIF read support'); + $im = imagecreatefromgif($file); + if(!$im) + $this->Error('Missing or incorrect image file: '.$file); + imageinterlace($im,0); + ob_start(); + imagepng($im); + $data = ob_get_clean(); + imagedestroy($im); + $f = fopen('php://temp','rb+'); + if(!$f) + $this->Error('Unable to create memory stream'); + fwrite($f,$data); + rewind($f); + $info = $this->_parsepngstream($f,$file); + fclose($f); + return $info; +} + +protected function _out($s) +{ + // Add a line to the current page + if($this->state==2) + $this->pages[$this->page] .= $s."\n"; + elseif($this->state==0) + $this->Error('No page has been added yet'); + elseif($this->state==1) + $this->Error('Invalid call'); + elseif($this->state==3) + $this->Error('The document is closed'); +} + +protected function _put($s) +{ + // Add a line to the document + $this->buffer .= $s."\n"; +} + +protected function _getoffset() +{ + return strlen($this->buffer); +} + +protected function _newobj($n=null) +{ + // Begin a new object + if($n===null) + $n = ++$this->n; + $this->offsets[$n] = $this->_getoffset(); + $this->_put($n.' 0 obj'); +} + +protected function _putstream($data) +{ + $this->_put('stream'); + $this->_put($data); + $this->_put('endstream'); +} + +protected function _putstreamobject($data) +{ + if($this->compress) + { + $entries = '/Filter /FlateDecode '; + $data = gzcompress($data); + } + else + $entries = ''; + $entries .= '/Length '.strlen($data); + $this->_newobj(); + $this->_put('<<'.$entries.'>>'); + $this->_putstream($data); + $this->_put('endobj'); +} + +protected function _putlinks($n) +{ + foreach($this->PageLinks[$n] as $pl) + { + $this->_newobj(); + $rect = sprintf('%.2F %.2F %.2F %.2F',$pl[0],$pl[1],$pl[0]+$pl[2],$pl[1]-$pl[3]); + $s = '<_textstring($pl[4]).'>>>>'; + else + { + $l = $this->links[$pl[4]]; + if(isset($this->PageInfo[$l[0]]['size'])) + $h = $this->PageInfo[$l[0]]['size'][1]; + else + $h = ($this->DefOrientation=='P') ? $this->DefPageSize[1]*$this->k : $this->DefPageSize[0]*$this->k; + $s .= sprintf('/Dest [%d 0 R /XYZ 0 %.2F null]>>',$this->PageInfo[$l[0]]['n'],$h-$l[1]*$this->k); + } + $this->_put($s); + $this->_put('endobj'); + } +} + +protected function _putpage($n) +{ + $this->_newobj(); + $this->_put('<_put('/Parent 1 0 R'); + if(isset($this->PageInfo[$n]['size'])) + $this->_put(sprintf('/MediaBox [0 0 %.2F %.2F]',$this->PageInfo[$n]['size'][0],$this->PageInfo[$n]['size'][1])); + if(isset($this->PageInfo[$n]['rotation'])) + $this->_put('/Rotate '.$this->PageInfo[$n]['rotation']); + $this->_put('/Resources 2 0 R'); + if(!empty($this->PageLinks[$n])) + { + $s = '/Annots ['; + foreach($this->PageLinks[$n] as $pl) + $s .= $pl[5].' 0 R '; + $s .= ']'; + $this->_put($s); + } + if($this->WithAlpha) + $this->_put('/Group <>'); + $this->_put('/Contents '.($this->n+1).' 0 R>>'); + $this->_put('endobj'); + // Page content + if(!empty($this->AliasNbPages)) + $this->pages[$n] = str_replace($this->AliasNbPages,$this->page,$this->pages[$n]); + $this->_putstreamobject($this->pages[$n]); + // Link annotations + $this->_putlinks($n); +} + +protected function _putpages() +{ + $nb = $this->page; + $n = $this->n; + for($i=1;$i<=$nb;$i++) + { + $this->PageInfo[$i]['n'] = ++$n; + $n++; + foreach($this->PageLinks[$i] as &$pl) + $pl[5] = ++$n; + unset($pl); + } + for($i=1;$i<=$nb;$i++) + $this->_putpage($i); + // Pages root + $this->_newobj(1); + $this->_put('<PageInfo[$i]['n'].' 0 R '; + $kids .= ']'; + $this->_put($kids); + $this->_put('/Count '.$nb); + if($this->DefOrientation=='P') + { + $w = $this->DefPageSize[0]; + $h = $this->DefPageSize[1]; + } + else + { + $w = $this->DefPageSize[1]; + $h = $this->DefPageSize[0]; + } + $this->_put(sprintf('/MediaBox [0 0 %.2F %.2F]',$w*$this->k,$h*$this->k)); + $this->_put('>>'); + $this->_put('endobj'); +} + +protected function _putfonts() +{ + foreach($this->FontFiles as $file=>$info) + { + // Font file embedding + $this->_newobj(); + $this->FontFiles[$file]['n'] = $this->n; + $font = file_get_contents($file); + if(!$font) + $this->Error('Font file not found: '.$file); + $compressed = (substr($file,-2)=='.z'); + if(!$compressed && isset($info['length2'])) + $font = substr($font,6,$info['length1']).substr($font,6+$info['length1']+6,$info['length2']); + $this->_put('<_put('/Filter /FlateDecode'); + $this->_put('/Length1 '.$info['length1']); + if(isset($info['length2'])) + $this->_put('/Length2 '.$info['length2'].' /Length3 0'); + $this->_put('>>'); + $this->_putstream($font); + $this->_put('endobj'); + } + foreach($this->fonts as $k=>$font) + { + // Encoding + if(isset($font['diff'])) + { + if(!isset($this->encodings[$font['enc']])) + { + $this->_newobj(); + $this->_put('<>'); + $this->_put('endobj'); + $this->encodings[$font['enc']] = $this->n; + } + } + // ToUnicode CMap + if(isset($font['uv'])) + { + if(isset($font['enc'])) + $cmapkey = $font['enc']; + else + $cmapkey = $font['name']; + if(!isset($this->cmaps[$cmapkey])) + { + $cmap = $this->_tounicodecmap($font['uv']); + $this->_putstreamobject($cmap); + $this->cmaps[$cmapkey] = $this->n; + } + } + // Font object + $this->fonts[$k]['n'] = $this->n+1; + $type = $font['type']; + $name = $font['name']; + if($font['subsetted']) + $name = 'AAAAAA+'.$name; + if($type=='Core') + { + // Core font + $this->_newobj(); + $this->_put('<_put('/BaseFont /'.$name); + $this->_put('/Subtype /Type1'); + if($name!='Symbol' && $name!='ZapfDingbats') + $this->_put('/Encoding /WinAnsiEncoding'); + if(isset($font['uv'])) + $this->_put('/ToUnicode '.$this->cmaps[$cmapkey].' 0 R'); + $this->_put('>>'); + $this->_put('endobj'); + } + elseif($type=='Type1' || $type=='TrueType') + { + // Additional Type1 or TrueType/OpenType font + $this->_newobj(); + $this->_put('<_put('/BaseFont /'.$name); + $this->_put('/Subtype /'.$type); + $this->_put('/FirstChar 32 /LastChar 255'); + $this->_put('/Widths '.($this->n+1).' 0 R'); + $this->_put('/FontDescriptor '.($this->n+2).' 0 R'); + if(isset($font['diff'])) + $this->_put('/Encoding '.$this->encodings[$font['enc']].' 0 R'); + else + $this->_put('/Encoding /WinAnsiEncoding'); + if(isset($font['uv'])) + $this->_put('/ToUnicode '.$this->cmaps[$cmapkey].' 0 R'); + $this->_put('>>'); + $this->_put('endobj'); + // Widths + $this->_newobj(); + $cw = $font['cw']; + $s = '['; + for($i=32;$i<=255;$i++) + $s .= $cw[chr($i)].' '; + $this->_put($s.']'); + $this->_put('endobj'); + // Descriptor + $this->_newobj(); + $s = '<$v) + $s .= ' /'.$k.' '.$v; + if(!empty($font['file'])) + $s .= ' /FontFile'.($type=='Type1' ? '' : '2').' '.$this->FontFiles[$font['file']]['n'].' 0 R'; + $this->_put($s.'>>'); + $this->_put('endobj'); + } + else + { + // Allow for additional types + $mtd = '_put'.strtolower($type); + if(!method_exists($this,$mtd)) + $this->Error('Unsupported font type: '.$type); + $this->$mtd($font); + } + } +} + +protected function _tounicodecmap($uv) +{ + $ranges = ''; + $nbr = 0; + $chars = ''; + $nbc = 0; + foreach($uv as $c=>$v) + { + if(is_array($v)) + { + $ranges .= sprintf("<%02X> <%02X> <%04X>\n",$c,$c+$v[1]-1,$v[0]); + $nbr++; + } + else + { + $chars .= sprintf("<%02X> <%04X>\n",$c,$v); + $nbc++; + } + } + $s = "/CIDInit /ProcSet findresource begin\n"; + $s .= "12 dict begin\n"; + $s .= "begincmap\n"; + $s .= "/CIDSystemInfo\n"; + $s .= "<0) + { + $s .= "$nbr beginbfrange\n"; + $s .= $ranges; + $s .= "endbfrange\n"; + } + if($nbc>0) + { + $s .= "$nbc beginbfchar\n"; + $s .= $chars; + $s .= "endbfchar\n"; + } + $s .= "endcmap\n"; + $s .= "CMapName currentdict /CMap defineresource pop\n"; + $s .= "end\n"; + $s .= "end"; + return $s; +} + +protected function _putimages() +{ + foreach(array_keys($this->images) as $file) + { + $this->_putimage($this->images[$file]); + unset($this->images[$file]['data']); + unset($this->images[$file]['smask']); + } +} + +protected function _putimage(&$info) +{ + $this->_newobj(); + $info['n'] = $this->n; + $this->_put('<_put('/Subtype /Image'); + $this->_put('/Width '.$info['w']); + $this->_put('/Height '.$info['h']); + if($info['cs']=='Indexed') + $this->_put('/ColorSpace [/Indexed /DeviceRGB '.(strlen($info['pal'])/3-1).' '.($this->n+1).' 0 R]'); + else + { + $this->_put('/ColorSpace /'.$info['cs']); + if($info['cs']=='DeviceCMYK') + $this->_put('/Decode [1 0 1 0 1 0 1 0]'); + } + $this->_put('/BitsPerComponent '.$info['bpc']); + if(isset($info['f'])) + $this->_put('/Filter /'.$info['f']); + if(isset($info['dp'])) + $this->_put('/DecodeParms <<'.$info['dp'].'>>'); + if(isset($info['trns']) && is_array($info['trns'])) + { + $trns = ''; + for($i=0;$i_put('/Mask ['.$trns.']'); + } + if(isset($info['smask'])) + $this->_put('/SMask '.($this->n+1).' 0 R'); + $this->_put('/Length '.strlen($info['data']).'>>'); + $this->_putstream($info['data']); + $this->_put('endobj'); + // Soft mask + if(isset($info['smask'])) + { + $dp = '/Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns '.$info['w']; + $smask = array('w'=>$info['w'], 'h'=>$info['h'], 'cs'=>'DeviceGray', 'bpc'=>8, 'f'=>$info['f'], 'dp'=>$dp, 'data'=>$info['smask']); + $this->_putimage($smask); + } + // Palette + if($info['cs']=='Indexed') + $this->_putstreamobject($info['pal']); +} + +protected function _putxobjectdict() +{ + foreach($this->images as $image) + $this->_put('/I'.$image['i'].' '.$image['n'].' 0 R'); +} + +protected function _putresourcedict() +{ + $this->_put('/ProcSet [/PDF /Text /ImageB /ImageC /ImageI]'); + $this->_put('/Font <<'); + foreach($this->fonts as $font) + $this->_put('/F'.$font['i'].' '.$font['n'].' 0 R'); + $this->_put('>>'); + $this->_put('/XObject <<'); + $this->_putxobjectdict(); + $this->_put('>>'); +} + +protected function _putresources() +{ + $this->_putfonts(); + $this->_putimages(); + // Resource dictionary + $this->_newobj(2); + $this->_put('<<'); + $this->_putresourcedict(); + $this->_put('>>'); + $this->_put('endobj'); +} + +protected function _putinfo() +{ + $date = @date('YmdHisO',$this->CreationDate); + $this->metadata['CreationDate'] = 'D:'.substr($date,0,-2)."'".substr($date,-2)."'"; + foreach($this->metadata as $key=>$value) + $this->_put('/'.$key.' '.$this->_textstring($value)); +} + +protected function _putcatalog() +{ + $n = $this->PageInfo[1]['n']; + $this->_put('/Type /Catalog'); + $this->_put('/Pages 1 0 R'); + if($this->ZoomMode=='fullpage') + $this->_put('/OpenAction ['.$n.' 0 R /Fit]'); + elseif($this->ZoomMode=='fullwidth') + $this->_put('/OpenAction ['.$n.' 0 R /FitH null]'); + elseif($this->ZoomMode=='real') + $this->_put('/OpenAction ['.$n.' 0 R /XYZ null null 1]'); + elseif(!is_string($this->ZoomMode)) + $this->_put('/OpenAction ['.$n.' 0 R /XYZ null null '.sprintf('%.2F',$this->ZoomMode/100).']'); + if($this->LayoutMode=='single') + $this->_put('/PageLayout /SinglePage'); + elseif($this->LayoutMode=='continuous') + $this->_put('/PageLayout /OneColumn'); + elseif($this->LayoutMode=='two') + $this->_put('/PageLayout /TwoColumnLeft'); +} + +protected function _putheader() +{ + $this->_put('%PDF-'.$this->PDFVersion); +} + +protected function _puttrailer() +{ + $this->_put('/Size '.($this->n+1)); + $this->_put('/Root '.$this->n.' 0 R'); + $this->_put('/Info '.($this->n-1).' 0 R'); +} + +protected function _enddoc() +{ + $this->CreationDate = time(); + $this->_putheader(); + $this->_putpages(); + $this->_putresources(); + // Info + $this->_newobj(); + $this->_put('<<'); + $this->_putinfo(); + $this->_put('>>'); + $this->_put('endobj'); + // Catalog + $this->_newobj(); + $this->_put('<<'); + $this->_putcatalog(); + $this->_put('>>'); + $this->_put('endobj'); + // Cross-ref + $offset = $this->_getoffset(); + $this->_put('xref'); + $this->_put('0 '.($this->n+1)); + $this->_put('0000000000 65535 f '); + for($i=1;$i<=$this->n;$i++) + $this->_put(sprintf('%010d 00000 n ',$this->offsets[$i])); + // Trailer + $this->_put('trailer'); + $this->_put('<<'); + $this->_puttrailer(); + $this->_put('>>'); + $this->_put('startxref'); + $this->_put($offset); + $this->_put('%%EOF'); + $this->state = 3; +} +} +?> diff --git a/backend/libs/fpdf/install.txt b/backend/libs/fpdf/install.txt new file mode 100644 index 0000000..62d25e6 --- /dev/null +++ b/backend/libs/fpdf/install.txt @@ -0,0 +1,15 @@ +The FPDF library is made up of the following elements: + +- the main file, fpdf.php, which contains the class +- the font definition files located in the font directory + +The font definition files are necessary as soon as you want to output some text in a document. +If they are not accessible, the SetFont() method will produce the following error: + +FPDF error: Could not include font definition file + + +Remarks: + +- Only the files corresponding to the fonts actually used are necessary +- The tutorials provided in this package are ready to be executed diff --git a/backend/libs/fpdf/license.txt b/backend/libs/fpdf/license.txt new file mode 100644 index 0000000..6107ee4 --- /dev/null +++ b/backend/libs/fpdf/license.txt @@ -0,0 +1,6 @@ +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software to use, copy, modify, distribute, sublicense, and/or sell +copies of the software, and to permit persons to whom the software is furnished +to do so. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. \ No newline at end of file diff --git a/backend/libs/fpdf/makefont/cp1250.map b/backend/libs/fpdf/makefont/cp1250.map new file mode 100644 index 0000000..ec110af --- /dev/null +++ b/backend/libs/fpdf/makefont/cp1250.map @@ -0,0 +1,251 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+20AC Euro +!82 U+201A quotesinglbase +!84 U+201E quotedblbase +!85 U+2026 ellipsis +!86 U+2020 dagger +!87 U+2021 daggerdbl +!89 U+2030 perthousand +!8A U+0160 Scaron +!8B U+2039 guilsinglleft +!8C U+015A Sacute +!8D U+0164 Tcaron +!8E U+017D Zcaron +!8F U+0179 Zacute +!91 U+2018 quoteleft +!92 U+2019 quoteright +!93 U+201C quotedblleft +!94 U+201D quotedblright +!95 U+2022 bullet +!96 U+2013 endash +!97 U+2014 emdash +!99 U+2122 trademark +!9A U+0161 scaron +!9B U+203A guilsinglright +!9C U+015B sacute +!9D U+0165 tcaron +!9E U+017E zcaron +!9F U+017A zacute +!A0 U+00A0 space +!A1 U+02C7 caron +!A2 U+02D8 breve +!A3 U+0141 Lslash +!A4 U+00A4 currency +!A5 U+0104 Aogonek +!A6 U+00A6 brokenbar +!A7 U+00A7 section +!A8 U+00A8 dieresis +!A9 U+00A9 copyright +!AA U+015E Scedilla +!AB U+00AB guillemotleft +!AC U+00AC logicalnot +!AD U+00AD hyphen +!AE U+00AE registered +!AF U+017B Zdotaccent +!B0 U+00B0 degree +!B1 U+00B1 plusminus +!B2 U+02DB ogonek +!B3 U+0142 lslash +!B4 U+00B4 acute +!B5 U+00B5 mu +!B6 U+00B6 paragraph +!B7 U+00B7 periodcentered +!B8 U+00B8 cedilla +!B9 U+0105 aogonek +!BA U+015F scedilla +!BB U+00BB guillemotright +!BC U+013D Lcaron +!BD U+02DD hungarumlaut +!BE U+013E lcaron +!BF U+017C zdotaccent +!C0 U+0154 Racute +!C1 U+00C1 Aacute +!C2 U+00C2 Acircumflex +!C3 U+0102 Abreve +!C4 U+00C4 Adieresis +!C5 U+0139 Lacute +!C6 U+0106 Cacute +!C7 U+00C7 Ccedilla +!C8 U+010C Ccaron +!C9 U+00C9 Eacute +!CA U+0118 Eogonek +!CB U+00CB Edieresis +!CC U+011A Ecaron +!CD U+00CD Iacute +!CE U+00CE Icircumflex +!CF U+010E Dcaron +!D0 U+0110 Dcroat +!D1 U+0143 Nacute +!D2 U+0147 Ncaron +!D3 U+00D3 Oacute +!D4 U+00D4 Ocircumflex +!D5 U+0150 Ohungarumlaut +!D6 U+00D6 Odieresis +!D7 U+00D7 multiply +!D8 U+0158 Rcaron +!D9 U+016E Uring +!DA U+00DA Uacute +!DB U+0170 Uhungarumlaut +!DC U+00DC Udieresis +!DD U+00DD Yacute +!DE U+0162 Tcommaaccent +!DF U+00DF germandbls +!E0 U+0155 racute +!E1 U+00E1 aacute +!E2 U+00E2 acircumflex +!E3 U+0103 abreve +!E4 U+00E4 adieresis +!E5 U+013A lacute +!E6 U+0107 cacute +!E7 U+00E7 ccedilla +!E8 U+010D ccaron +!E9 U+00E9 eacute +!EA U+0119 eogonek +!EB U+00EB edieresis +!EC U+011B ecaron +!ED U+00ED iacute +!EE U+00EE icircumflex +!EF U+010F dcaron +!F0 U+0111 dcroat +!F1 U+0144 nacute +!F2 U+0148 ncaron +!F3 U+00F3 oacute +!F4 U+00F4 ocircumflex +!F5 U+0151 ohungarumlaut +!F6 U+00F6 odieresis +!F7 U+00F7 divide +!F8 U+0159 rcaron +!F9 U+016F uring +!FA U+00FA uacute +!FB U+0171 uhungarumlaut +!FC U+00FC udieresis +!FD U+00FD yacute +!FE U+0163 tcommaaccent +!FF U+02D9 dotaccent diff --git a/backend/libs/fpdf/makefont/cp1251.map b/backend/libs/fpdf/makefont/cp1251.map new file mode 100644 index 0000000..de6a198 --- /dev/null +++ b/backend/libs/fpdf/makefont/cp1251.map @@ -0,0 +1,255 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+0402 afii10051 +!81 U+0403 afii10052 +!82 U+201A quotesinglbase +!83 U+0453 afii10100 +!84 U+201E quotedblbase +!85 U+2026 ellipsis +!86 U+2020 dagger +!87 U+2021 daggerdbl +!88 U+20AC Euro +!89 U+2030 perthousand +!8A U+0409 afii10058 +!8B U+2039 guilsinglleft +!8C U+040A afii10059 +!8D U+040C afii10061 +!8E U+040B afii10060 +!8F U+040F afii10145 +!90 U+0452 afii10099 +!91 U+2018 quoteleft +!92 U+2019 quoteright +!93 U+201C quotedblleft +!94 U+201D quotedblright +!95 U+2022 bullet +!96 U+2013 endash +!97 U+2014 emdash +!99 U+2122 trademark +!9A U+0459 afii10106 +!9B U+203A guilsinglright +!9C U+045A afii10107 +!9D U+045C afii10109 +!9E U+045B afii10108 +!9F U+045F afii10193 +!A0 U+00A0 space +!A1 U+040E afii10062 +!A2 U+045E afii10110 +!A3 U+0408 afii10057 +!A4 U+00A4 currency +!A5 U+0490 afii10050 +!A6 U+00A6 brokenbar +!A7 U+00A7 section +!A8 U+0401 afii10023 +!A9 U+00A9 copyright +!AA U+0404 afii10053 +!AB U+00AB guillemotleft +!AC U+00AC logicalnot +!AD U+00AD hyphen +!AE U+00AE registered +!AF U+0407 afii10056 +!B0 U+00B0 degree +!B1 U+00B1 plusminus +!B2 U+0406 afii10055 +!B3 U+0456 afii10103 +!B4 U+0491 afii10098 +!B5 U+00B5 mu +!B6 U+00B6 paragraph +!B7 U+00B7 periodcentered +!B8 U+0451 afii10071 +!B9 U+2116 afii61352 +!BA U+0454 afii10101 +!BB U+00BB guillemotright +!BC U+0458 afii10105 +!BD U+0405 afii10054 +!BE U+0455 afii10102 +!BF U+0457 afii10104 +!C0 U+0410 afii10017 +!C1 U+0411 afii10018 +!C2 U+0412 afii10019 +!C3 U+0413 afii10020 +!C4 U+0414 afii10021 +!C5 U+0415 afii10022 +!C6 U+0416 afii10024 +!C7 U+0417 afii10025 +!C8 U+0418 afii10026 +!C9 U+0419 afii10027 +!CA U+041A afii10028 +!CB U+041B afii10029 +!CC U+041C afii10030 +!CD U+041D afii10031 +!CE U+041E afii10032 +!CF U+041F afii10033 +!D0 U+0420 afii10034 +!D1 U+0421 afii10035 +!D2 U+0422 afii10036 +!D3 U+0423 afii10037 +!D4 U+0424 afii10038 +!D5 U+0425 afii10039 +!D6 U+0426 afii10040 +!D7 U+0427 afii10041 +!D8 U+0428 afii10042 +!D9 U+0429 afii10043 +!DA U+042A afii10044 +!DB U+042B afii10045 +!DC U+042C afii10046 +!DD U+042D afii10047 +!DE U+042E afii10048 +!DF U+042F afii10049 +!E0 U+0430 afii10065 +!E1 U+0431 afii10066 +!E2 U+0432 afii10067 +!E3 U+0433 afii10068 +!E4 U+0434 afii10069 +!E5 U+0435 afii10070 +!E6 U+0436 afii10072 +!E7 U+0437 afii10073 +!E8 U+0438 afii10074 +!E9 U+0439 afii10075 +!EA U+043A afii10076 +!EB U+043B afii10077 +!EC U+043C afii10078 +!ED U+043D afii10079 +!EE U+043E afii10080 +!EF U+043F afii10081 +!F0 U+0440 afii10082 +!F1 U+0441 afii10083 +!F2 U+0442 afii10084 +!F3 U+0443 afii10085 +!F4 U+0444 afii10086 +!F5 U+0445 afii10087 +!F6 U+0446 afii10088 +!F7 U+0447 afii10089 +!F8 U+0448 afii10090 +!F9 U+0449 afii10091 +!FA U+044A afii10092 +!FB U+044B afii10093 +!FC U+044C afii10094 +!FD U+044D afii10095 +!FE U+044E afii10096 +!FF U+044F afii10097 diff --git a/backend/libs/fpdf/makefont/cp1252.map b/backend/libs/fpdf/makefont/cp1252.map new file mode 100644 index 0000000..dd490e5 --- /dev/null +++ b/backend/libs/fpdf/makefont/cp1252.map @@ -0,0 +1,251 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+20AC Euro +!82 U+201A quotesinglbase +!83 U+0192 florin +!84 U+201E quotedblbase +!85 U+2026 ellipsis +!86 U+2020 dagger +!87 U+2021 daggerdbl +!88 U+02C6 circumflex +!89 U+2030 perthousand +!8A U+0160 Scaron +!8B U+2039 guilsinglleft +!8C U+0152 OE +!8E U+017D Zcaron +!91 U+2018 quoteleft +!92 U+2019 quoteright +!93 U+201C quotedblleft +!94 U+201D quotedblright +!95 U+2022 bullet +!96 U+2013 endash +!97 U+2014 emdash +!98 U+02DC tilde +!99 U+2122 trademark +!9A U+0161 scaron +!9B U+203A guilsinglright +!9C U+0153 oe +!9E U+017E zcaron +!9F U+0178 Ydieresis +!A0 U+00A0 space +!A1 U+00A1 exclamdown +!A2 U+00A2 cent +!A3 U+00A3 sterling +!A4 U+00A4 currency +!A5 U+00A5 yen +!A6 U+00A6 brokenbar +!A7 U+00A7 section +!A8 U+00A8 dieresis +!A9 U+00A9 copyright +!AA U+00AA ordfeminine +!AB U+00AB guillemotleft +!AC U+00AC logicalnot +!AD U+00AD hyphen +!AE U+00AE registered +!AF U+00AF macron +!B0 U+00B0 degree +!B1 U+00B1 plusminus +!B2 U+00B2 twosuperior +!B3 U+00B3 threesuperior +!B4 U+00B4 acute +!B5 U+00B5 mu +!B6 U+00B6 paragraph +!B7 U+00B7 periodcentered +!B8 U+00B8 cedilla +!B9 U+00B9 onesuperior +!BA U+00BA ordmasculine +!BB U+00BB guillemotright +!BC U+00BC onequarter +!BD U+00BD onehalf +!BE U+00BE threequarters +!BF U+00BF questiondown +!C0 U+00C0 Agrave +!C1 U+00C1 Aacute +!C2 U+00C2 Acircumflex +!C3 U+00C3 Atilde +!C4 U+00C4 Adieresis +!C5 U+00C5 Aring +!C6 U+00C6 AE +!C7 U+00C7 Ccedilla +!C8 U+00C8 Egrave +!C9 U+00C9 Eacute +!CA U+00CA Ecircumflex +!CB U+00CB Edieresis +!CC U+00CC Igrave +!CD U+00CD Iacute +!CE U+00CE Icircumflex +!CF U+00CF Idieresis +!D0 U+00D0 Eth +!D1 U+00D1 Ntilde +!D2 U+00D2 Ograve +!D3 U+00D3 Oacute +!D4 U+00D4 Ocircumflex +!D5 U+00D5 Otilde +!D6 U+00D6 Odieresis +!D7 U+00D7 multiply +!D8 U+00D8 Oslash +!D9 U+00D9 Ugrave +!DA U+00DA Uacute +!DB U+00DB Ucircumflex +!DC U+00DC Udieresis +!DD U+00DD Yacute +!DE U+00DE Thorn +!DF U+00DF germandbls +!E0 U+00E0 agrave +!E1 U+00E1 aacute +!E2 U+00E2 acircumflex +!E3 U+00E3 atilde +!E4 U+00E4 adieresis +!E5 U+00E5 aring +!E6 U+00E6 ae +!E7 U+00E7 ccedilla +!E8 U+00E8 egrave +!E9 U+00E9 eacute +!EA U+00EA ecircumflex +!EB U+00EB edieresis +!EC U+00EC igrave +!ED U+00ED iacute +!EE U+00EE icircumflex +!EF U+00EF idieresis +!F0 U+00F0 eth +!F1 U+00F1 ntilde +!F2 U+00F2 ograve +!F3 U+00F3 oacute +!F4 U+00F4 ocircumflex +!F5 U+00F5 otilde +!F6 U+00F6 odieresis +!F7 U+00F7 divide +!F8 U+00F8 oslash +!F9 U+00F9 ugrave +!FA U+00FA uacute +!FB U+00FB ucircumflex +!FC U+00FC udieresis +!FD U+00FD yacute +!FE U+00FE thorn +!FF U+00FF ydieresis diff --git a/backend/libs/fpdf/makefont/cp1253.map b/backend/libs/fpdf/makefont/cp1253.map new file mode 100644 index 0000000..4bd826f --- /dev/null +++ b/backend/libs/fpdf/makefont/cp1253.map @@ -0,0 +1,239 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+20AC Euro +!82 U+201A quotesinglbase +!83 U+0192 florin +!84 U+201E quotedblbase +!85 U+2026 ellipsis +!86 U+2020 dagger +!87 U+2021 daggerdbl +!89 U+2030 perthousand +!8B U+2039 guilsinglleft +!91 U+2018 quoteleft +!92 U+2019 quoteright +!93 U+201C quotedblleft +!94 U+201D quotedblright +!95 U+2022 bullet +!96 U+2013 endash +!97 U+2014 emdash +!99 U+2122 trademark +!9B U+203A guilsinglright +!A0 U+00A0 space +!A1 U+0385 dieresistonos +!A2 U+0386 Alphatonos +!A3 U+00A3 sterling +!A4 U+00A4 currency +!A5 U+00A5 yen +!A6 U+00A6 brokenbar +!A7 U+00A7 section +!A8 U+00A8 dieresis +!A9 U+00A9 copyright +!AB U+00AB guillemotleft +!AC U+00AC logicalnot +!AD U+00AD hyphen +!AE U+00AE registered +!AF U+2015 afii00208 +!B0 U+00B0 degree +!B1 U+00B1 plusminus +!B2 U+00B2 twosuperior +!B3 U+00B3 threesuperior +!B4 U+0384 tonos +!B5 U+00B5 mu +!B6 U+00B6 paragraph +!B7 U+00B7 periodcentered +!B8 U+0388 Epsilontonos +!B9 U+0389 Etatonos +!BA U+038A Iotatonos +!BB U+00BB guillemotright +!BC U+038C Omicrontonos +!BD U+00BD onehalf +!BE U+038E Upsilontonos +!BF U+038F Omegatonos +!C0 U+0390 iotadieresistonos +!C1 U+0391 Alpha +!C2 U+0392 Beta +!C3 U+0393 Gamma +!C4 U+0394 Delta +!C5 U+0395 Epsilon +!C6 U+0396 Zeta +!C7 U+0397 Eta +!C8 U+0398 Theta +!C9 U+0399 Iota +!CA U+039A Kappa +!CB U+039B Lambda +!CC U+039C Mu +!CD U+039D Nu +!CE U+039E Xi +!CF U+039F Omicron +!D0 U+03A0 Pi +!D1 U+03A1 Rho +!D3 U+03A3 Sigma +!D4 U+03A4 Tau +!D5 U+03A5 Upsilon +!D6 U+03A6 Phi +!D7 U+03A7 Chi +!D8 U+03A8 Psi +!D9 U+03A9 Omega +!DA U+03AA Iotadieresis +!DB U+03AB Upsilondieresis +!DC U+03AC alphatonos +!DD U+03AD epsilontonos +!DE U+03AE etatonos +!DF U+03AF iotatonos +!E0 U+03B0 upsilondieresistonos +!E1 U+03B1 alpha +!E2 U+03B2 beta +!E3 U+03B3 gamma +!E4 U+03B4 delta +!E5 U+03B5 epsilon +!E6 U+03B6 zeta +!E7 U+03B7 eta +!E8 U+03B8 theta +!E9 U+03B9 iota +!EA U+03BA kappa +!EB U+03BB lambda +!EC U+03BC mu +!ED U+03BD nu +!EE U+03BE xi +!EF U+03BF omicron +!F0 U+03C0 pi +!F1 U+03C1 rho +!F2 U+03C2 sigma1 +!F3 U+03C3 sigma +!F4 U+03C4 tau +!F5 U+03C5 upsilon +!F6 U+03C6 phi +!F7 U+03C7 chi +!F8 U+03C8 psi +!F9 U+03C9 omega +!FA U+03CA iotadieresis +!FB U+03CB upsilondieresis +!FC U+03CC omicrontonos +!FD U+03CD upsilontonos +!FE U+03CE omegatonos diff --git a/backend/libs/fpdf/makefont/cp1254.map b/backend/libs/fpdf/makefont/cp1254.map new file mode 100644 index 0000000..829473b --- /dev/null +++ b/backend/libs/fpdf/makefont/cp1254.map @@ -0,0 +1,249 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+20AC Euro +!82 U+201A quotesinglbase +!83 U+0192 florin +!84 U+201E quotedblbase +!85 U+2026 ellipsis +!86 U+2020 dagger +!87 U+2021 daggerdbl +!88 U+02C6 circumflex +!89 U+2030 perthousand +!8A U+0160 Scaron +!8B U+2039 guilsinglleft +!8C U+0152 OE +!91 U+2018 quoteleft +!92 U+2019 quoteright +!93 U+201C quotedblleft +!94 U+201D quotedblright +!95 U+2022 bullet +!96 U+2013 endash +!97 U+2014 emdash +!98 U+02DC tilde +!99 U+2122 trademark +!9A U+0161 scaron +!9B U+203A guilsinglright +!9C U+0153 oe +!9F U+0178 Ydieresis +!A0 U+00A0 space +!A1 U+00A1 exclamdown +!A2 U+00A2 cent +!A3 U+00A3 sterling +!A4 U+00A4 currency +!A5 U+00A5 yen +!A6 U+00A6 brokenbar +!A7 U+00A7 section +!A8 U+00A8 dieresis +!A9 U+00A9 copyright +!AA U+00AA ordfeminine +!AB U+00AB guillemotleft +!AC U+00AC logicalnot +!AD U+00AD hyphen +!AE U+00AE registered +!AF U+00AF macron +!B0 U+00B0 degree +!B1 U+00B1 plusminus +!B2 U+00B2 twosuperior +!B3 U+00B3 threesuperior +!B4 U+00B4 acute +!B5 U+00B5 mu +!B6 U+00B6 paragraph +!B7 U+00B7 periodcentered +!B8 U+00B8 cedilla +!B9 U+00B9 onesuperior +!BA U+00BA ordmasculine +!BB U+00BB guillemotright +!BC U+00BC onequarter +!BD U+00BD onehalf +!BE U+00BE threequarters +!BF U+00BF questiondown +!C0 U+00C0 Agrave +!C1 U+00C1 Aacute +!C2 U+00C2 Acircumflex +!C3 U+00C3 Atilde +!C4 U+00C4 Adieresis +!C5 U+00C5 Aring +!C6 U+00C6 AE +!C7 U+00C7 Ccedilla +!C8 U+00C8 Egrave +!C9 U+00C9 Eacute +!CA U+00CA Ecircumflex +!CB U+00CB Edieresis +!CC U+00CC Igrave +!CD U+00CD Iacute +!CE U+00CE Icircumflex +!CF U+00CF Idieresis +!D0 U+011E Gbreve +!D1 U+00D1 Ntilde +!D2 U+00D2 Ograve +!D3 U+00D3 Oacute +!D4 U+00D4 Ocircumflex +!D5 U+00D5 Otilde +!D6 U+00D6 Odieresis +!D7 U+00D7 multiply +!D8 U+00D8 Oslash +!D9 U+00D9 Ugrave +!DA U+00DA Uacute +!DB U+00DB Ucircumflex +!DC U+00DC Udieresis +!DD U+0130 Idotaccent +!DE U+015E Scedilla +!DF U+00DF germandbls +!E0 U+00E0 agrave +!E1 U+00E1 aacute +!E2 U+00E2 acircumflex +!E3 U+00E3 atilde +!E4 U+00E4 adieresis +!E5 U+00E5 aring +!E6 U+00E6 ae +!E7 U+00E7 ccedilla +!E8 U+00E8 egrave +!E9 U+00E9 eacute +!EA U+00EA ecircumflex +!EB U+00EB edieresis +!EC U+00EC igrave +!ED U+00ED iacute +!EE U+00EE icircumflex +!EF U+00EF idieresis +!F0 U+011F gbreve +!F1 U+00F1 ntilde +!F2 U+00F2 ograve +!F3 U+00F3 oacute +!F4 U+00F4 ocircumflex +!F5 U+00F5 otilde +!F6 U+00F6 odieresis +!F7 U+00F7 divide +!F8 U+00F8 oslash +!F9 U+00F9 ugrave +!FA U+00FA uacute +!FB U+00FB ucircumflex +!FC U+00FC udieresis +!FD U+0131 dotlessi +!FE U+015F scedilla +!FF U+00FF ydieresis diff --git a/backend/libs/fpdf/makefont/cp1255.map b/backend/libs/fpdf/makefont/cp1255.map new file mode 100644 index 0000000..079e10c --- /dev/null +++ b/backend/libs/fpdf/makefont/cp1255.map @@ -0,0 +1,233 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+20AC Euro +!82 U+201A quotesinglbase +!83 U+0192 florin +!84 U+201E quotedblbase +!85 U+2026 ellipsis +!86 U+2020 dagger +!87 U+2021 daggerdbl +!88 U+02C6 circumflex +!89 U+2030 perthousand +!8B U+2039 guilsinglleft +!91 U+2018 quoteleft +!92 U+2019 quoteright +!93 U+201C quotedblleft +!94 U+201D quotedblright +!95 U+2022 bullet +!96 U+2013 endash +!97 U+2014 emdash +!98 U+02DC tilde +!99 U+2122 trademark +!9B U+203A guilsinglright +!A0 U+00A0 space +!A1 U+00A1 exclamdown +!A2 U+00A2 cent +!A3 U+00A3 sterling +!A4 U+20AA afii57636 +!A5 U+00A5 yen +!A6 U+00A6 brokenbar +!A7 U+00A7 section +!A8 U+00A8 dieresis +!A9 U+00A9 copyright +!AA U+00D7 multiply +!AB U+00AB guillemotleft +!AC U+00AC logicalnot +!AD U+00AD sfthyphen +!AE U+00AE registered +!AF U+00AF macron +!B0 U+00B0 degree +!B1 U+00B1 plusminus +!B2 U+00B2 twosuperior +!B3 U+00B3 threesuperior +!B4 U+00B4 acute +!B5 U+00B5 mu +!B6 U+00B6 paragraph +!B7 U+00B7 middot +!B8 U+00B8 cedilla +!B9 U+00B9 onesuperior +!BA U+00F7 divide +!BB U+00BB guillemotright +!BC U+00BC onequarter +!BD U+00BD onehalf +!BE U+00BE threequarters +!BF U+00BF questiondown +!C0 U+05B0 afii57799 +!C1 U+05B1 afii57801 +!C2 U+05B2 afii57800 +!C3 U+05B3 afii57802 +!C4 U+05B4 afii57793 +!C5 U+05B5 afii57794 +!C6 U+05B6 afii57795 +!C7 U+05B7 afii57798 +!C8 U+05B8 afii57797 +!C9 U+05B9 afii57806 +!CB U+05BB afii57796 +!CC U+05BC afii57807 +!CD U+05BD afii57839 +!CE U+05BE afii57645 +!CF U+05BF afii57841 +!D0 U+05C0 afii57842 +!D1 U+05C1 afii57804 +!D2 U+05C2 afii57803 +!D3 U+05C3 afii57658 +!D4 U+05F0 afii57716 +!D5 U+05F1 afii57717 +!D6 U+05F2 afii57718 +!D7 U+05F3 gereshhebrew +!D8 U+05F4 gershayimhebrew +!E0 U+05D0 afii57664 +!E1 U+05D1 afii57665 +!E2 U+05D2 afii57666 +!E3 U+05D3 afii57667 +!E4 U+05D4 afii57668 +!E5 U+05D5 afii57669 +!E6 U+05D6 afii57670 +!E7 U+05D7 afii57671 +!E8 U+05D8 afii57672 +!E9 U+05D9 afii57673 +!EA U+05DA afii57674 +!EB U+05DB afii57675 +!EC U+05DC afii57676 +!ED U+05DD afii57677 +!EE U+05DE afii57678 +!EF U+05DF afii57679 +!F0 U+05E0 afii57680 +!F1 U+05E1 afii57681 +!F2 U+05E2 afii57682 +!F3 U+05E3 afii57683 +!F4 U+05E4 afii57684 +!F5 U+05E5 afii57685 +!F6 U+05E6 afii57686 +!F7 U+05E7 afii57687 +!F8 U+05E8 afii57688 +!F9 U+05E9 afii57689 +!FA U+05EA afii57690 +!FD U+200E afii299 +!FE U+200F afii300 diff --git a/backend/libs/fpdf/makefont/cp1257.map b/backend/libs/fpdf/makefont/cp1257.map new file mode 100644 index 0000000..2f2ecfa --- /dev/null +++ b/backend/libs/fpdf/makefont/cp1257.map @@ -0,0 +1,244 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+20AC Euro +!82 U+201A quotesinglbase +!84 U+201E quotedblbase +!85 U+2026 ellipsis +!86 U+2020 dagger +!87 U+2021 daggerdbl +!89 U+2030 perthousand +!8B U+2039 guilsinglleft +!8D U+00A8 dieresis +!8E U+02C7 caron +!8F U+00B8 cedilla +!91 U+2018 quoteleft +!92 U+2019 quoteright +!93 U+201C quotedblleft +!94 U+201D quotedblright +!95 U+2022 bullet +!96 U+2013 endash +!97 U+2014 emdash +!99 U+2122 trademark +!9B U+203A guilsinglright +!9D U+00AF macron +!9E U+02DB ogonek +!A0 U+00A0 space +!A2 U+00A2 cent +!A3 U+00A3 sterling +!A4 U+00A4 currency +!A6 U+00A6 brokenbar +!A7 U+00A7 section +!A8 U+00D8 Oslash +!A9 U+00A9 copyright +!AA U+0156 Rcommaaccent +!AB U+00AB guillemotleft +!AC U+00AC logicalnot +!AD U+00AD hyphen +!AE U+00AE registered +!AF U+00C6 AE +!B0 U+00B0 degree +!B1 U+00B1 plusminus +!B2 U+00B2 twosuperior +!B3 U+00B3 threesuperior +!B4 U+00B4 acute +!B5 U+00B5 mu +!B6 U+00B6 paragraph +!B7 U+00B7 periodcentered +!B8 U+00F8 oslash +!B9 U+00B9 onesuperior +!BA U+0157 rcommaaccent +!BB U+00BB guillemotright +!BC U+00BC onequarter +!BD U+00BD onehalf +!BE U+00BE threequarters +!BF U+00E6 ae +!C0 U+0104 Aogonek +!C1 U+012E Iogonek +!C2 U+0100 Amacron +!C3 U+0106 Cacute +!C4 U+00C4 Adieresis +!C5 U+00C5 Aring +!C6 U+0118 Eogonek +!C7 U+0112 Emacron +!C8 U+010C Ccaron +!C9 U+00C9 Eacute +!CA U+0179 Zacute +!CB U+0116 Edotaccent +!CC U+0122 Gcommaaccent +!CD U+0136 Kcommaaccent +!CE U+012A Imacron +!CF U+013B Lcommaaccent +!D0 U+0160 Scaron +!D1 U+0143 Nacute +!D2 U+0145 Ncommaaccent +!D3 U+00D3 Oacute +!D4 U+014C Omacron +!D5 U+00D5 Otilde +!D6 U+00D6 Odieresis +!D7 U+00D7 multiply +!D8 U+0172 Uogonek +!D9 U+0141 Lslash +!DA U+015A Sacute +!DB U+016A Umacron +!DC U+00DC Udieresis +!DD U+017B Zdotaccent +!DE U+017D Zcaron +!DF U+00DF germandbls +!E0 U+0105 aogonek +!E1 U+012F iogonek +!E2 U+0101 amacron +!E3 U+0107 cacute +!E4 U+00E4 adieresis +!E5 U+00E5 aring +!E6 U+0119 eogonek +!E7 U+0113 emacron +!E8 U+010D ccaron +!E9 U+00E9 eacute +!EA U+017A zacute +!EB U+0117 edotaccent +!EC U+0123 gcommaaccent +!ED U+0137 kcommaaccent +!EE U+012B imacron +!EF U+013C lcommaaccent +!F0 U+0161 scaron +!F1 U+0144 nacute +!F2 U+0146 ncommaaccent +!F3 U+00F3 oacute +!F4 U+014D omacron +!F5 U+00F5 otilde +!F6 U+00F6 odieresis +!F7 U+00F7 divide +!F8 U+0173 uogonek +!F9 U+0142 lslash +!FA U+015B sacute +!FB U+016B umacron +!FC U+00FC udieresis +!FD U+017C zdotaccent +!FE U+017E zcaron +!FF U+02D9 dotaccent diff --git a/backend/libs/fpdf/makefont/cp1258.map b/backend/libs/fpdf/makefont/cp1258.map new file mode 100644 index 0000000..fed915f --- /dev/null +++ b/backend/libs/fpdf/makefont/cp1258.map @@ -0,0 +1,247 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+20AC Euro +!82 U+201A quotesinglbase +!83 U+0192 florin +!84 U+201E quotedblbase +!85 U+2026 ellipsis +!86 U+2020 dagger +!87 U+2021 daggerdbl +!88 U+02C6 circumflex +!89 U+2030 perthousand +!8B U+2039 guilsinglleft +!8C U+0152 OE +!91 U+2018 quoteleft +!92 U+2019 quoteright +!93 U+201C quotedblleft +!94 U+201D quotedblright +!95 U+2022 bullet +!96 U+2013 endash +!97 U+2014 emdash +!98 U+02DC tilde +!99 U+2122 trademark +!9B U+203A guilsinglright +!9C U+0153 oe +!9F U+0178 Ydieresis +!A0 U+00A0 space +!A1 U+00A1 exclamdown +!A2 U+00A2 cent +!A3 U+00A3 sterling +!A4 U+00A4 currency +!A5 U+00A5 yen +!A6 U+00A6 brokenbar +!A7 U+00A7 section +!A8 U+00A8 dieresis +!A9 U+00A9 copyright +!AA U+00AA ordfeminine +!AB U+00AB guillemotleft +!AC U+00AC logicalnot +!AD U+00AD hyphen +!AE U+00AE registered +!AF U+00AF macron +!B0 U+00B0 degree +!B1 U+00B1 plusminus +!B2 U+00B2 twosuperior +!B3 U+00B3 threesuperior +!B4 U+00B4 acute +!B5 U+00B5 mu +!B6 U+00B6 paragraph +!B7 U+00B7 periodcentered +!B8 U+00B8 cedilla +!B9 U+00B9 onesuperior +!BA U+00BA ordmasculine +!BB U+00BB guillemotright +!BC U+00BC onequarter +!BD U+00BD onehalf +!BE U+00BE threequarters +!BF U+00BF questiondown +!C0 U+00C0 Agrave +!C1 U+00C1 Aacute +!C2 U+00C2 Acircumflex +!C3 U+0102 Abreve +!C4 U+00C4 Adieresis +!C5 U+00C5 Aring +!C6 U+00C6 AE +!C7 U+00C7 Ccedilla +!C8 U+00C8 Egrave +!C9 U+00C9 Eacute +!CA U+00CA Ecircumflex +!CB U+00CB Edieresis +!CC U+0300 gravecomb +!CD U+00CD Iacute +!CE U+00CE Icircumflex +!CF U+00CF Idieresis +!D0 U+0110 Dcroat +!D1 U+00D1 Ntilde +!D2 U+0309 hookabovecomb +!D3 U+00D3 Oacute +!D4 U+00D4 Ocircumflex +!D5 U+01A0 Ohorn +!D6 U+00D6 Odieresis +!D7 U+00D7 multiply +!D8 U+00D8 Oslash +!D9 U+00D9 Ugrave +!DA U+00DA Uacute +!DB U+00DB Ucircumflex +!DC U+00DC Udieresis +!DD U+01AF Uhorn +!DE U+0303 tildecomb +!DF U+00DF germandbls +!E0 U+00E0 agrave +!E1 U+00E1 aacute +!E2 U+00E2 acircumflex +!E3 U+0103 abreve +!E4 U+00E4 adieresis +!E5 U+00E5 aring +!E6 U+00E6 ae +!E7 U+00E7 ccedilla +!E8 U+00E8 egrave +!E9 U+00E9 eacute +!EA U+00EA ecircumflex +!EB U+00EB edieresis +!EC U+0301 acutecomb +!ED U+00ED iacute +!EE U+00EE icircumflex +!EF U+00EF idieresis +!F0 U+0111 dcroat +!F1 U+00F1 ntilde +!F2 U+0323 dotbelowcomb +!F3 U+00F3 oacute +!F4 U+00F4 ocircumflex +!F5 U+01A1 ohorn +!F6 U+00F6 odieresis +!F7 U+00F7 divide +!F8 U+00F8 oslash +!F9 U+00F9 ugrave +!FA U+00FA uacute +!FB U+00FB ucircumflex +!FC U+00FC udieresis +!FD U+01B0 uhorn +!FE U+20AB dong +!FF U+00FF ydieresis diff --git a/backend/libs/fpdf/makefont/cp874.map b/backend/libs/fpdf/makefont/cp874.map new file mode 100644 index 0000000..1006e6b --- /dev/null +++ b/backend/libs/fpdf/makefont/cp874.map @@ -0,0 +1,225 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+20AC Euro +!85 U+2026 ellipsis +!91 U+2018 quoteleft +!92 U+2019 quoteright +!93 U+201C quotedblleft +!94 U+201D quotedblright +!95 U+2022 bullet +!96 U+2013 endash +!97 U+2014 emdash +!A0 U+00A0 space +!A1 U+0E01 kokaithai +!A2 U+0E02 khokhaithai +!A3 U+0E03 khokhuatthai +!A4 U+0E04 khokhwaithai +!A5 U+0E05 khokhonthai +!A6 U+0E06 khorakhangthai +!A7 U+0E07 ngonguthai +!A8 U+0E08 chochanthai +!A9 U+0E09 chochingthai +!AA U+0E0A chochangthai +!AB U+0E0B sosothai +!AC U+0E0C chochoethai +!AD U+0E0D yoyingthai +!AE U+0E0E dochadathai +!AF U+0E0F topatakthai +!B0 U+0E10 thothanthai +!B1 U+0E11 thonangmonthothai +!B2 U+0E12 thophuthaothai +!B3 U+0E13 nonenthai +!B4 U+0E14 dodekthai +!B5 U+0E15 totaothai +!B6 U+0E16 thothungthai +!B7 U+0E17 thothahanthai +!B8 U+0E18 thothongthai +!B9 U+0E19 nonuthai +!BA U+0E1A bobaimaithai +!BB U+0E1B poplathai +!BC U+0E1C phophungthai +!BD U+0E1D fofathai +!BE U+0E1E phophanthai +!BF U+0E1F fofanthai +!C0 U+0E20 phosamphaothai +!C1 U+0E21 momathai +!C2 U+0E22 yoyakthai +!C3 U+0E23 roruathai +!C4 U+0E24 ruthai +!C5 U+0E25 lolingthai +!C6 U+0E26 luthai +!C7 U+0E27 wowaenthai +!C8 U+0E28 sosalathai +!C9 U+0E29 sorusithai +!CA U+0E2A sosuathai +!CB U+0E2B hohipthai +!CC U+0E2C lochulathai +!CD U+0E2D oangthai +!CE U+0E2E honokhukthai +!CF U+0E2F paiyannoithai +!D0 U+0E30 saraathai +!D1 U+0E31 maihanakatthai +!D2 U+0E32 saraaathai +!D3 U+0E33 saraamthai +!D4 U+0E34 saraithai +!D5 U+0E35 saraiithai +!D6 U+0E36 sarauethai +!D7 U+0E37 saraueethai +!D8 U+0E38 sarauthai +!D9 U+0E39 sarauuthai +!DA U+0E3A phinthuthai +!DF U+0E3F bahtthai +!E0 U+0E40 saraethai +!E1 U+0E41 saraaethai +!E2 U+0E42 saraothai +!E3 U+0E43 saraaimaimuanthai +!E4 U+0E44 saraaimaimalaithai +!E5 U+0E45 lakkhangyaothai +!E6 U+0E46 maiyamokthai +!E7 U+0E47 maitaikhuthai +!E8 U+0E48 maiekthai +!E9 U+0E49 maithothai +!EA U+0E4A maitrithai +!EB U+0E4B maichattawathai +!EC U+0E4C thanthakhatthai +!ED U+0E4D nikhahitthai +!EE U+0E4E yamakkanthai +!EF U+0E4F fongmanthai +!F0 U+0E50 zerothai +!F1 U+0E51 onethai +!F2 U+0E52 twothai +!F3 U+0E53 threethai +!F4 U+0E54 fourthai +!F5 U+0E55 fivethai +!F6 U+0E56 sixthai +!F7 U+0E57 seventhai +!F8 U+0E58 eightthai +!F9 U+0E59 ninethai +!FA U+0E5A angkhankhuthai +!FB U+0E5B khomutthai diff --git a/backend/libs/fpdf/makefont/iso-8859-1.map b/backend/libs/fpdf/makefont/iso-8859-1.map new file mode 100644 index 0000000..61740a3 --- /dev/null +++ b/backend/libs/fpdf/makefont/iso-8859-1.map @@ -0,0 +1,256 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+0080 .notdef +!81 U+0081 .notdef +!82 U+0082 .notdef +!83 U+0083 .notdef +!84 U+0084 .notdef +!85 U+0085 .notdef +!86 U+0086 .notdef +!87 U+0087 .notdef +!88 U+0088 .notdef +!89 U+0089 .notdef +!8A U+008A .notdef +!8B U+008B .notdef +!8C U+008C .notdef +!8D U+008D .notdef +!8E U+008E .notdef +!8F U+008F .notdef +!90 U+0090 .notdef +!91 U+0091 .notdef +!92 U+0092 .notdef +!93 U+0093 .notdef +!94 U+0094 .notdef +!95 U+0095 .notdef +!96 U+0096 .notdef +!97 U+0097 .notdef +!98 U+0098 .notdef +!99 U+0099 .notdef +!9A U+009A .notdef +!9B U+009B .notdef +!9C U+009C .notdef +!9D U+009D .notdef +!9E U+009E .notdef +!9F U+009F .notdef +!A0 U+00A0 space +!A1 U+00A1 exclamdown +!A2 U+00A2 cent +!A3 U+00A3 sterling +!A4 U+00A4 currency +!A5 U+00A5 yen +!A6 U+00A6 brokenbar +!A7 U+00A7 section +!A8 U+00A8 dieresis +!A9 U+00A9 copyright +!AA U+00AA ordfeminine +!AB U+00AB guillemotleft +!AC U+00AC logicalnot +!AD U+00AD hyphen +!AE U+00AE registered +!AF U+00AF macron +!B0 U+00B0 degree +!B1 U+00B1 plusminus +!B2 U+00B2 twosuperior +!B3 U+00B3 threesuperior +!B4 U+00B4 acute +!B5 U+00B5 mu +!B6 U+00B6 paragraph +!B7 U+00B7 periodcentered +!B8 U+00B8 cedilla +!B9 U+00B9 onesuperior +!BA U+00BA ordmasculine +!BB U+00BB guillemotright +!BC U+00BC onequarter +!BD U+00BD onehalf +!BE U+00BE threequarters +!BF U+00BF questiondown +!C0 U+00C0 Agrave +!C1 U+00C1 Aacute +!C2 U+00C2 Acircumflex +!C3 U+00C3 Atilde +!C4 U+00C4 Adieresis +!C5 U+00C5 Aring +!C6 U+00C6 AE +!C7 U+00C7 Ccedilla +!C8 U+00C8 Egrave +!C9 U+00C9 Eacute +!CA U+00CA Ecircumflex +!CB U+00CB Edieresis +!CC U+00CC Igrave +!CD U+00CD Iacute +!CE U+00CE Icircumflex +!CF U+00CF Idieresis +!D0 U+00D0 Eth +!D1 U+00D1 Ntilde +!D2 U+00D2 Ograve +!D3 U+00D3 Oacute +!D4 U+00D4 Ocircumflex +!D5 U+00D5 Otilde +!D6 U+00D6 Odieresis +!D7 U+00D7 multiply +!D8 U+00D8 Oslash +!D9 U+00D9 Ugrave +!DA U+00DA Uacute +!DB U+00DB Ucircumflex +!DC U+00DC Udieresis +!DD U+00DD Yacute +!DE U+00DE Thorn +!DF U+00DF germandbls +!E0 U+00E0 agrave +!E1 U+00E1 aacute +!E2 U+00E2 acircumflex +!E3 U+00E3 atilde +!E4 U+00E4 adieresis +!E5 U+00E5 aring +!E6 U+00E6 ae +!E7 U+00E7 ccedilla +!E8 U+00E8 egrave +!E9 U+00E9 eacute +!EA U+00EA ecircumflex +!EB U+00EB edieresis +!EC U+00EC igrave +!ED U+00ED iacute +!EE U+00EE icircumflex +!EF U+00EF idieresis +!F0 U+00F0 eth +!F1 U+00F1 ntilde +!F2 U+00F2 ograve +!F3 U+00F3 oacute +!F4 U+00F4 ocircumflex +!F5 U+00F5 otilde +!F6 U+00F6 odieresis +!F7 U+00F7 divide +!F8 U+00F8 oslash +!F9 U+00F9 ugrave +!FA U+00FA uacute +!FB U+00FB ucircumflex +!FC U+00FC udieresis +!FD U+00FD yacute +!FE U+00FE thorn +!FF U+00FF ydieresis diff --git a/backend/libs/fpdf/makefont/iso-8859-11.map b/backend/libs/fpdf/makefont/iso-8859-11.map new file mode 100644 index 0000000..9168812 --- /dev/null +++ b/backend/libs/fpdf/makefont/iso-8859-11.map @@ -0,0 +1,248 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+0080 .notdef +!81 U+0081 .notdef +!82 U+0082 .notdef +!83 U+0083 .notdef +!84 U+0084 .notdef +!85 U+0085 .notdef +!86 U+0086 .notdef +!87 U+0087 .notdef +!88 U+0088 .notdef +!89 U+0089 .notdef +!8A U+008A .notdef +!8B U+008B .notdef +!8C U+008C .notdef +!8D U+008D .notdef +!8E U+008E .notdef +!8F U+008F .notdef +!90 U+0090 .notdef +!91 U+0091 .notdef +!92 U+0092 .notdef +!93 U+0093 .notdef +!94 U+0094 .notdef +!95 U+0095 .notdef +!96 U+0096 .notdef +!97 U+0097 .notdef +!98 U+0098 .notdef +!99 U+0099 .notdef +!9A U+009A .notdef +!9B U+009B .notdef +!9C U+009C .notdef +!9D U+009D .notdef +!9E U+009E .notdef +!9F U+009F .notdef +!A0 U+00A0 space +!A1 U+0E01 kokaithai +!A2 U+0E02 khokhaithai +!A3 U+0E03 khokhuatthai +!A4 U+0E04 khokhwaithai +!A5 U+0E05 khokhonthai +!A6 U+0E06 khorakhangthai +!A7 U+0E07 ngonguthai +!A8 U+0E08 chochanthai +!A9 U+0E09 chochingthai +!AA U+0E0A chochangthai +!AB U+0E0B sosothai +!AC U+0E0C chochoethai +!AD U+0E0D yoyingthai +!AE U+0E0E dochadathai +!AF U+0E0F topatakthai +!B0 U+0E10 thothanthai +!B1 U+0E11 thonangmonthothai +!B2 U+0E12 thophuthaothai +!B3 U+0E13 nonenthai +!B4 U+0E14 dodekthai +!B5 U+0E15 totaothai +!B6 U+0E16 thothungthai +!B7 U+0E17 thothahanthai +!B8 U+0E18 thothongthai +!B9 U+0E19 nonuthai +!BA U+0E1A bobaimaithai +!BB U+0E1B poplathai +!BC U+0E1C phophungthai +!BD U+0E1D fofathai +!BE U+0E1E phophanthai +!BF U+0E1F fofanthai +!C0 U+0E20 phosamphaothai +!C1 U+0E21 momathai +!C2 U+0E22 yoyakthai +!C3 U+0E23 roruathai +!C4 U+0E24 ruthai +!C5 U+0E25 lolingthai +!C6 U+0E26 luthai +!C7 U+0E27 wowaenthai +!C8 U+0E28 sosalathai +!C9 U+0E29 sorusithai +!CA U+0E2A sosuathai +!CB U+0E2B hohipthai +!CC U+0E2C lochulathai +!CD U+0E2D oangthai +!CE U+0E2E honokhukthai +!CF U+0E2F paiyannoithai +!D0 U+0E30 saraathai +!D1 U+0E31 maihanakatthai +!D2 U+0E32 saraaathai +!D3 U+0E33 saraamthai +!D4 U+0E34 saraithai +!D5 U+0E35 saraiithai +!D6 U+0E36 sarauethai +!D7 U+0E37 saraueethai +!D8 U+0E38 sarauthai +!D9 U+0E39 sarauuthai +!DA U+0E3A phinthuthai +!DF U+0E3F bahtthai +!E0 U+0E40 saraethai +!E1 U+0E41 saraaethai +!E2 U+0E42 saraothai +!E3 U+0E43 saraaimaimuanthai +!E4 U+0E44 saraaimaimalaithai +!E5 U+0E45 lakkhangyaothai +!E6 U+0E46 maiyamokthai +!E7 U+0E47 maitaikhuthai +!E8 U+0E48 maiekthai +!E9 U+0E49 maithothai +!EA U+0E4A maitrithai +!EB U+0E4B maichattawathai +!EC U+0E4C thanthakhatthai +!ED U+0E4D nikhahitthai +!EE U+0E4E yamakkanthai +!EF U+0E4F fongmanthai +!F0 U+0E50 zerothai +!F1 U+0E51 onethai +!F2 U+0E52 twothai +!F3 U+0E53 threethai +!F4 U+0E54 fourthai +!F5 U+0E55 fivethai +!F6 U+0E56 sixthai +!F7 U+0E57 seventhai +!F8 U+0E58 eightthai +!F9 U+0E59 ninethai +!FA U+0E5A angkhankhuthai +!FB U+0E5B khomutthai diff --git a/backend/libs/fpdf/makefont/iso-8859-15.map b/backend/libs/fpdf/makefont/iso-8859-15.map new file mode 100644 index 0000000..6c2b571 --- /dev/null +++ b/backend/libs/fpdf/makefont/iso-8859-15.map @@ -0,0 +1,256 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+0080 .notdef +!81 U+0081 .notdef +!82 U+0082 .notdef +!83 U+0083 .notdef +!84 U+0084 .notdef +!85 U+0085 .notdef +!86 U+0086 .notdef +!87 U+0087 .notdef +!88 U+0088 .notdef +!89 U+0089 .notdef +!8A U+008A .notdef +!8B U+008B .notdef +!8C U+008C .notdef +!8D U+008D .notdef +!8E U+008E .notdef +!8F U+008F .notdef +!90 U+0090 .notdef +!91 U+0091 .notdef +!92 U+0092 .notdef +!93 U+0093 .notdef +!94 U+0094 .notdef +!95 U+0095 .notdef +!96 U+0096 .notdef +!97 U+0097 .notdef +!98 U+0098 .notdef +!99 U+0099 .notdef +!9A U+009A .notdef +!9B U+009B .notdef +!9C U+009C .notdef +!9D U+009D .notdef +!9E U+009E .notdef +!9F U+009F .notdef +!A0 U+00A0 space +!A1 U+00A1 exclamdown +!A2 U+00A2 cent +!A3 U+00A3 sterling +!A4 U+20AC Euro +!A5 U+00A5 yen +!A6 U+0160 Scaron +!A7 U+00A7 section +!A8 U+0161 scaron +!A9 U+00A9 copyright +!AA U+00AA ordfeminine +!AB U+00AB guillemotleft +!AC U+00AC logicalnot +!AD U+00AD hyphen +!AE U+00AE registered +!AF U+00AF macron +!B0 U+00B0 degree +!B1 U+00B1 plusminus +!B2 U+00B2 twosuperior +!B3 U+00B3 threesuperior +!B4 U+017D Zcaron +!B5 U+00B5 mu +!B6 U+00B6 paragraph +!B7 U+00B7 periodcentered +!B8 U+017E zcaron +!B9 U+00B9 onesuperior +!BA U+00BA ordmasculine +!BB U+00BB guillemotright +!BC U+0152 OE +!BD U+0153 oe +!BE U+0178 Ydieresis +!BF U+00BF questiondown +!C0 U+00C0 Agrave +!C1 U+00C1 Aacute +!C2 U+00C2 Acircumflex +!C3 U+00C3 Atilde +!C4 U+00C4 Adieresis +!C5 U+00C5 Aring +!C6 U+00C6 AE +!C7 U+00C7 Ccedilla +!C8 U+00C8 Egrave +!C9 U+00C9 Eacute +!CA U+00CA Ecircumflex +!CB U+00CB Edieresis +!CC U+00CC Igrave +!CD U+00CD Iacute +!CE U+00CE Icircumflex +!CF U+00CF Idieresis +!D0 U+00D0 Eth +!D1 U+00D1 Ntilde +!D2 U+00D2 Ograve +!D3 U+00D3 Oacute +!D4 U+00D4 Ocircumflex +!D5 U+00D5 Otilde +!D6 U+00D6 Odieresis +!D7 U+00D7 multiply +!D8 U+00D8 Oslash +!D9 U+00D9 Ugrave +!DA U+00DA Uacute +!DB U+00DB Ucircumflex +!DC U+00DC Udieresis +!DD U+00DD Yacute +!DE U+00DE Thorn +!DF U+00DF germandbls +!E0 U+00E0 agrave +!E1 U+00E1 aacute +!E2 U+00E2 acircumflex +!E3 U+00E3 atilde +!E4 U+00E4 adieresis +!E5 U+00E5 aring +!E6 U+00E6 ae +!E7 U+00E7 ccedilla +!E8 U+00E8 egrave +!E9 U+00E9 eacute +!EA U+00EA ecircumflex +!EB U+00EB edieresis +!EC U+00EC igrave +!ED U+00ED iacute +!EE U+00EE icircumflex +!EF U+00EF idieresis +!F0 U+00F0 eth +!F1 U+00F1 ntilde +!F2 U+00F2 ograve +!F3 U+00F3 oacute +!F4 U+00F4 ocircumflex +!F5 U+00F5 otilde +!F6 U+00F6 odieresis +!F7 U+00F7 divide +!F8 U+00F8 oslash +!F9 U+00F9 ugrave +!FA U+00FA uacute +!FB U+00FB ucircumflex +!FC U+00FC udieresis +!FD U+00FD yacute +!FE U+00FE thorn +!FF U+00FF ydieresis diff --git a/backend/libs/fpdf/makefont/iso-8859-16.map b/backend/libs/fpdf/makefont/iso-8859-16.map new file mode 100644 index 0000000..202c8fe --- /dev/null +++ b/backend/libs/fpdf/makefont/iso-8859-16.map @@ -0,0 +1,256 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+0080 .notdef +!81 U+0081 .notdef +!82 U+0082 .notdef +!83 U+0083 .notdef +!84 U+0084 .notdef +!85 U+0085 .notdef +!86 U+0086 .notdef +!87 U+0087 .notdef +!88 U+0088 .notdef +!89 U+0089 .notdef +!8A U+008A .notdef +!8B U+008B .notdef +!8C U+008C .notdef +!8D U+008D .notdef +!8E U+008E .notdef +!8F U+008F .notdef +!90 U+0090 .notdef +!91 U+0091 .notdef +!92 U+0092 .notdef +!93 U+0093 .notdef +!94 U+0094 .notdef +!95 U+0095 .notdef +!96 U+0096 .notdef +!97 U+0097 .notdef +!98 U+0098 .notdef +!99 U+0099 .notdef +!9A U+009A .notdef +!9B U+009B .notdef +!9C U+009C .notdef +!9D U+009D .notdef +!9E U+009E .notdef +!9F U+009F .notdef +!A0 U+00A0 space +!A1 U+0104 Aogonek +!A2 U+0105 aogonek +!A3 U+0141 Lslash +!A4 U+20AC Euro +!A5 U+201E quotedblbase +!A6 U+0160 Scaron +!A7 U+00A7 section +!A8 U+0161 scaron +!A9 U+00A9 copyright +!AA U+0218 Scommaaccent +!AB U+00AB guillemotleft +!AC U+0179 Zacute +!AD U+00AD hyphen +!AE U+017A zacute +!AF U+017B Zdotaccent +!B0 U+00B0 degree +!B1 U+00B1 plusminus +!B2 U+010C Ccaron +!B3 U+0142 lslash +!B4 U+017D Zcaron +!B5 U+201D quotedblright +!B6 U+00B6 paragraph +!B7 U+00B7 periodcentered +!B8 U+017E zcaron +!B9 U+010D ccaron +!BA U+0219 scommaaccent +!BB U+00BB guillemotright +!BC U+0152 OE +!BD U+0153 oe +!BE U+0178 Ydieresis +!BF U+017C zdotaccent +!C0 U+00C0 Agrave +!C1 U+00C1 Aacute +!C2 U+00C2 Acircumflex +!C3 U+0102 Abreve +!C4 U+00C4 Adieresis +!C5 U+0106 Cacute +!C6 U+00C6 AE +!C7 U+00C7 Ccedilla +!C8 U+00C8 Egrave +!C9 U+00C9 Eacute +!CA U+00CA Ecircumflex +!CB U+00CB Edieresis +!CC U+00CC Igrave +!CD U+00CD Iacute +!CE U+00CE Icircumflex +!CF U+00CF Idieresis +!D0 U+0110 Dcroat +!D1 U+0143 Nacute +!D2 U+00D2 Ograve +!D3 U+00D3 Oacute +!D4 U+00D4 Ocircumflex +!D5 U+0150 Ohungarumlaut +!D6 U+00D6 Odieresis +!D7 U+015A Sacute +!D8 U+0170 Uhungarumlaut +!D9 U+00D9 Ugrave +!DA U+00DA Uacute +!DB U+00DB Ucircumflex +!DC U+00DC Udieresis +!DD U+0118 Eogonek +!DE U+021A Tcommaaccent +!DF U+00DF germandbls +!E0 U+00E0 agrave +!E1 U+00E1 aacute +!E2 U+00E2 acircumflex +!E3 U+0103 abreve +!E4 U+00E4 adieresis +!E5 U+0107 cacute +!E6 U+00E6 ae +!E7 U+00E7 ccedilla +!E8 U+00E8 egrave +!E9 U+00E9 eacute +!EA U+00EA ecircumflex +!EB U+00EB edieresis +!EC U+00EC igrave +!ED U+00ED iacute +!EE U+00EE icircumflex +!EF U+00EF idieresis +!F0 U+0111 dcroat +!F1 U+0144 nacute +!F2 U+00F2 ograve +!F3 U+00F3 oacute +!F4 U+00F4 ocircumflex +!F5 U+0151 ohungarumlaut +!F6 U+00F6 odieresis +!F7 U+015B sacute +!F8 U+0171 uhungarumlaut +!F9 U+00F9 ugrave +!FA U+00FA uacute +!FB U+00FB ucircumflex +!FC U+00FC udieresis +!FD U+0119 eogonek +!FE U+021B tcommaaccent +!FF U+00FF ydieresis diff --git a/backend/libs/fpdf/makefont/iso-8859-2.map b/backend/libs/fpdf/makefont/iso-8859-2.map new file mode 100644 index 0000000..65ae09f --- /dev/null +++ b/backend/libs/fpdf/makefont/iso-8859-2.map @@ -0,0 +1,256 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+0080 .notdef +!81 U+0081 .notdef +!82 U+0082 .notdef +!83 U+0083 .notdef +!84 U+0084 .notdef +!85 U+0085 .notdef +!86 U+0086 .notdef +!87 U+0087 .notdef +!88 U+0088 .notdef +!89 U+0089 .notdef +!8A U+008A .notdef +!8B U+008B .notdef +!8C U+008C .notdef +!8D U+008D .notdef +!8E U+008E .notdef +!8F U+008F .notdef +!90 U+0090 .notdef +!91 U+0091 .notdef +!92 U+0092 .notdef +!93 U+0093 .notdef +!94 U+0094 .notdef +!95 U+0095 .notdef +!96 U+0096 .notdef +!97 U+0097 .notdef +!98 U+0098 .notdef +!99 U+0099 .notdef +!9A U+009A .notdef +!9B U+009B .notdef +!9C U+009C .notdef +!9D U+009D .notdef +!9E U+009E .notdef +!9F U+009F .notdef +!A0 U+00A0 space +!A1 U+0104 Aogonek +!A2 U+02D8 breve +!A3 U+0141 Lslash +!A4 U+00A4 currency +!A5 U+013D Lcaron +!A6 U+015A Sacute +!A7 U+00A7 section +!A8 U+00A8 dieresis +!A9 U+0160 Scaron +!AA U+015E Scedilla +!AB U+0164 Tcaron +!AC U+0179 Zacute +!AD U+00AD hyphen +!AE U+017D Zcaron +!AF U+017B Zdotaccent +!B0 U+00B0 degree +!B1 U+0105 aogonek +!B2 U+02DB ogonek +!B3 U+0142 lslash +!B4 U+00B4 acute +!B5 U+013E lcaron +!B6 U+015B sacute +!B7 U+02C7 caron +!B8 U+00B8 cedilla +!B9 U+0161 scaron +!BA U+015F scedilla +!BB U+0165 tcaron +!BC U+017A zacute +!BD U+02DD hungarumlaut +!BE U+017E zcaron +!BF U+017C zdotaccent +!C0 U+0154 Racute +!C1 U+00C1 Aacute +!C2 U+00C2 Acircumflex +!C3 U+0102 Abreve +!C4 U+00C4 Adieresis +!C5 U+0139 Lacute +!C6 U+0106 Cacute +!C7 U+00C7 Ccedilla +!C8 U+010C Ccaron +!C9 U+00C9 Eacute +!CA U+0118 Eogonek +!CB U+00CB Edieresis +!CC U+011A Ecaron +!CD U+00CD Iacute +!CE U+00CE Icircumflex +!CF U+010E Dcaron +!D0 U+0110 Dcroat +!D1 U+0143 Nacute +!D2 U+0147 Ncaron +!D3 U+00D3 Oacute +!D4 U+00D4 Ocircumflex +!D5 U+0150 Ohungarumlaut +!D6 U+00D6 Odieresis +!D7 U+00D7 multiply +!D8 U+0158 Rcaron +!D9 U+016E Uring +!DA U+00DA Uacute +!DB U+0170 Uhungarumlaut +!DC U+00DC Udieresis +!DD U+00DD Yacute +!DE U+0162 Tcommaaccent +!DF U+00DF germandbls +!E0 U+0155 racute +!E1 U+00E1 aacute +!E2 U+00E2 acircumflex +!E3 U+0103 abreve +!E4 U+00E4 adieresis +!E5 U+013A lacute +!E6 U+0107 cacute +!E7 U+00E7 ccedilla +!E8 U+010D ccaron +!E9 U+00E9 eacute +!EA U+0119 eogonek +!EB U+00EB edieresis +!EC U+011B ecaron +!ED U+00ED iacute +!EE U+00EE icircumflex +!EF U+010F dcaron +!F0 U+0111 dcroat +!F1 U+0144 nacute +!F2 U+0148 ncaron +!F3 U+00F3 oacute +!F4 U+00F4 ocircumflex +!F5 U+0151 ohungarumlaut +!F6 U+00F6 odieresis +!F7 U+00F7 divide +!F8 U+0159 rcaron +!F9 U+016F uring +!FA U+00FA uacute +!FB U+0171 uhungarumlaut +!FC U+00FC udieresis +!FD U+00FD yacute +!FE U+0163 tcommaaccent +!FF U+02D9 dotaccent diff --git a/backend/libs/fpdf/makefont/iso-8859-4.map b/backend/libs/fpdf/makefont/iso-8859-4.map new file mode 100644 index 0000000..a7d87bf --- /dev/null +++ b/backend/libs/fpdf/makefont/iso-8859-4.map @@ -0,0 +1,256 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+0080 .notdef +!81 U+0081 .notdef +!82 U+0082 .notdef +!83 U+0083 .notdef +!84 U+0084 .notdef +!85 U+0085 .notdef +!86 U+0086 .notdef +!87 U+0087 .notdef +!88 U+0088 .notdef +!89 U+0089 .notdef +!8A U+008A .notdef +!8B U+008B .notdef +!8C U+008C .notdef +!8D U+008D .notdef +!8E U+008E .notdef +!8F U+008F .notdef +!90 U+0090 .notdef +!91 U+0091 .notdef +!92 U+0092 .notdef +!93 U+0093 .notdef +!94 U+0094 .notdef +!95 U+0095 .notdef +!96 U+0096 .notdef +!97 U+0097 .notdef +!98 U+0098 .notdef +!99 U+0099 .notdef +!9A U+009A .notdef +!9B U+009B .notdef +!9C U+009C .notdef +!9D U+009D .notdef +!9E U+009E .notdef +!9F U+009F .notdef +!A0 U+00A0 space +!A1 U+0104 Aogonek +!A2 U+0138 kgreenlandic +!A3 U+0156 Rcommaaccent +!A4 U+00A4 currency +!A5 U+0128 Itilde +!A6 U+013B Lcommaaccent +!A7 U+00A7 section +!A8 U+00A8 dieresis +!A9 U+0160 Scaron +!AA U+0112 Emacron +!AB U+0122 Gcommaaccent +!AC U+0166 Tbar +!AD U+00AD hyphen +!AE U+017D Zcaron +!AF U+00AF macron +!B0 U+00B0 degree +!B1 U+0105 aogonek +!B2 U+02DB ogonek +!B3 U+0157 rcommaaccent +!B4 U+00B4 acute +!B5 U+0129 itilde +!B6 U+013C lcommaaccent +!B7 U+02C7 caron +!B8 U+00B8 cedilla +!B9 U+0161 scaron +!BA U+0113 emacron +!BB U+0123 gcommaaccent +!BC U+0167 tbar +!BD U+014A Eng +!BE U+017E zcaron +!BF U+014B eng +!C0 U+0100 Amacron +!C1 U+00C1 Aacute +!C2 U+00C2 Acircumflex +!C3 U+00C3 Atilde +!C4 U+00C4 Adieresis +!C5 U+00C5 Aring +!C6 U+00C6 AE +!C7 U+012E Iogonek +!C8 U+010C Ccaron +!C9 U+00C9 Eacute +!CA U+0118 Eogonek +!CB U+00CB Edieresis +!CC U+0116 Edotaccent +!CD U+00CD Iacute +!CE U+00CE Icircumflex +!CF U+012A Imacron +!D0 U+0110 Dcroat +!D1 U+0145 Ncommaaccent +!D2 U+014C Omacron +!D3 U+0136 Kcommaaccent +!D4 U+00D4 Ocircumflex +!D5 U+00D5 Otilde +!D6 U+00D6 Odieresis +!D7 U+00D7 multiply +!D8 U+00D8 Oslash +!D9 U+0172 Uogonek +!DA U+00DA Uacute +!DB U+00DB Ucircumflex +!DC U+00DC Udieresis +!DD U+0168 Utilde +!DE U+016A Umacron +!DF U+00DF germandbls +!E0 U+0101 amacron +!E1 U+00E1 aacute +!E2 U+00E2 acircumflex +!E3 U+00E3 atilde +!E4 U+00E4 adieresis +!E5 U+00E5 aring +!E6 U+00E6 ae +!E7 U+012F iogonek +!E8 U+010D ccaron +!E9 U+00E9 eacute +!EA U+0119 eogonek +!EB U+00EB edieresis +!EC U+0117 edotaccent +!ED U+00ED iacute +!EE U+00EE icircumflex +!EF U+012B imacron +!F0 U+0111 dcroat +!F1 U+0146 ncommaaccent +!F2 U+014D omacron +!F3 U+0137 kcommaaccent +!F4 U+00F4 ocircumflex +!F5 U+00F5 otilde +!F6 U+00F6 odieresis +!F7 U+00F7 divide +!F8 U+00F8 oslash +!F9 U+0173 uogonek +!FA U+00FA uacute +!FB U+00FB ucircumflex +!FC U+00FC udieresis +!FD U+0169 utilde +!FE U+016B umacron +!FF U+02D9 dotaccent diff --git a/backend/libs/fpdf/makefont/iso-8859-5.map b/backend/libs/fpdf/makefont/iso-8859-5.map new file mode 100644 index 0000000..f9cd4ed --- /dev/null +++ b/backend/libs/fpdf/makefont/iso-8859-5.map @@ -0,0 +1,256 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+0080 .notdef +!81 U+0081 .notdef +!82 U+0082 .notdef +!83 U+0083 .notdef +!84 U+0084 .notdef +!85 U+0085 .notdef +!86 U+0086 .notdef +!87 U+0087 .notdef +!88 U+0088 .notdef +!89 U+0089 .notdef +!8A U+008A .notdef +!8B U+008B .notdef +!8C U+008C .notdef +!8D U+008D .notdef +!8E U+008E .notdef +!8F U+008F .notdef +!90 U+0090 .notdef +!91 U+0091 .notdef +!92 U+0092 .notdef +!93 U+0093 .notdef +!94 U+0094 .notdef +!95 U+0095 .notdef +!96 U+0096 .notdef +!97 U+0097 .notdef +!98 U+0098 .notdef +!99 U+0099 .notdef +!9A U+009A .notdef +!9B U+009B .notdef +!9C U+009C .notdef +!9D U+009D .notdef +!9E U+009E .notdef +!9F U+009F .notdef +!A0 U+00A0 space +!A1 U+0401 afii10023 +!A2 U+0402 afii10051 +!A3 U+0403 afii10052 +!A4 U+0404 afii10053 +!A5 U+0405 afii10054 +!A6 U+0406 afii10055 +!A7 U+0407 afii10056 +!A8 U+0408 afii10057 +!A9 U+0409 afii10058 +!AA U+040A afii10059 +!AB U+040B afii10060 +!AC U+040C afii10061 +!AD U+00AD hyphen +!AE U+040E afii10062 +!AF U+040F afii10145 +!B0 U+0410 afii10017 +!B1 U+0411 afii10018 +!B2 U+0412 afii10019 +!B3 U+0413 afii10020 +!B4 U+0414 afii10021 +!B5 U+0415 afii10022 +!B6 U+0416 afii10024 +!B7 U+0417 afii10025 +!B8 U+0418 afii10026 +!B9 U+0419 afii10027 +!BA U+041A afii10028 +!BB U+041B afii10029 +!BC U+041C afii10030 +!BD U+041D afii10031 +!BE U+041E afii10032 +!BF U+041F afii10033 +!C0 U+0420 afii10034 +!C1 U+0421 afii10035 +!C2 U+0422 afii10036 +!C3 U+0423 afii10037 +!C4 U+0424 afii10038 +!C5 U+0425 afii10039 +!C6 U+0426 afii10040 +!C7 U+0427 afii10041 +!C8 U+0428 afii10042 +!C9 U+0429 afii10043 +!CA U+042A afii10044 +!CB U+042B afii10045 +!CC U+042C afii10046 +!CD U+042D afii10047 +!CE U+042E afii10048 +!CF U+042F afii10049 +!D0 U+0430 afii10065 +!D1 U+0431 afii10066 +!D2 U+0432 afii10067 +!D3 U+0433 afii10068 +!D4 U+0434 afii10069 +!D5 U+0435 afii10070 +!D6 U+0436 afii10072 +!D7 U+0437 afii10073 +!D8 U+0438 afii10074 +!D9 U+0439 afii10075 +!DA U+043A afii10076 +!DB U+043B afii10077 +!DC U+043C afii10078 +!DD U+043D afii10079 +!DE U+043E afii10080 +!DF U+043F afii10081 +!E0 U+0440 afii10082 +!E1 U+0441 afii10083 +!E2 U+0442 afii10084 +!E3 U+0443 afii10085 +!E4 U+0444 afii10086 +!E5 U+0445 afii10087 +!E6 U+0446 afii10088 +!E7 U+0447 afii10089 +!E8 U+0448 afii10090 +!E9 U+0449 afii10091 +!EA U+044A afii10092 +!EB U+044B afii10093 +!EC U+044C afii10094 +!ED U+044D afii10095 +!EE U+044E afii10096 +!EF U+044F afii10097 +!F0 U+2116 afii61352 +!F1 U+0451 afii10071 +!F2 U+0452 afii10099 +!F3 U+0453 afii10100 +!F4 U+0454 afii10101 +!F5 U+0455 afii10102 +!F6 U+0456 afii10103 +!F7 U+0457 afii10104 +!F8 U+0458 afii10105 +!F9 U+0459 afii10106 +!FA U+045A afii10107 +!FB U+045B afii10108 +!FC U+045C afii10109 +!FD U+00A7 section +!FE U+045E afii10110 +!FF U+045F afii10193 diff --git a/backend/libs/fpdf/makefont/iso-8859-7.map b/backend/libs/fpdf/makefont/iso-8859-7.map new file mode 100644 index 0000000..e163796 --- /dev/null +++ b/backend/libs/fpdf/makefont/iso-8859-7.map @@ -0,0 +1,250 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+0080 .notdef +!81 U+0081 .notdef +!82 U+0082 .notdef +!83 U+0083 .notdef +!84 U+0084 .notdef +!85 U+0085 .notdef +!86 U+0086 .notdef +!87 U+0087 .notdef +!88 U+0088 .notdef +!89 U+0089 .notdef +!8A U+008A .notdef +!8B U+008B .notdef +!8C U+008C .notdef +!8D U+008D .notdef +!8E U+008E .notdef +!8F U+008F .notdef +!90 U+0090 .notdef +!91 U+0091 .notdef +!92 U+0092 .notdef +!93 U+0093 .notdef +!94 U+0094 .notdef +!95 U+0095 .notdef +!96 U+0096 .notdef +!97 U+0097 .notdef +!98 U+0098 .notdef +!99 U+0099 .notdef +!9A U+009A .notdef +!9B U+009B .notdef +!9C U+009C .notdef +!9D U+009D .notdef +!9E U+009E .notdef +!9F U+009F .notdef +!A0 U+00A0 space +!A1 U+2018 quoteleft +!A2 U+2019 quoteright +!A3 U+00A3 sterling +!A6 U+00A6 brokenbar +!A7 U+00A7 section +!A8 U+00A8 dieresis +!A9 U+00A9 copyright +!AB U+00AB guillemotleft +!AC U+00AC logicalnot +!AD U+00AD hyphen +!AF U+2015 afii00208 +!B0 U+00B0 degree +!B1 U+00B1 plusminus +!B2 U+00B2 twosuperior +!B3 U+00B3 threesuperior +!B4 U+0384 tonos +!B5 U+0385 dieresistonos +!B6 U+0386 Alphatonos +!B7 U+00B7 periodcentered +!B8 U+0388 Epsilontonos +!B9 U+0389 Etatonos +!BA U+038A Iotatonos +!BB U+00BB guillemotright +!BC U+038C Omicrontonos +!BD U+00BD onehalf +!BE U+038E Upsilontonos +!BF U+038F Omegatonos +!C0 U+0390 iotadieresistonos +!C1 U+0391 Alpha +!C2 U+0392 Beta +!C3 U+0393 Gamma +!C4 U+0394 Delta +!C5 U+0395 Epsilon +!C6 U+0396 Zeta +!C7 U+0397 Eta +!C8 U+0398 Theta +!C9 U+0399 Iota +!CA U+039A Kappa +!CB U+039B Lambda +!CC U+039C Mu +!CD U+039D Nu +!CE U+039E Xi +!CF U+039F Omicron +!D0 U+03A0 Pi +!D1 U+03A1 Rho +!D3 U+03A3 Sigma +!D4 U+03A4 Tau +!D5 U+03A5 Upsilon +!D6 U+03A6 Phi +!D7 U+03A7 Chi +!D8 U+03A8 Psi +!D9 U+03A9 Omega +!DA U+03AA Iotadieresis +!DB U+03AB Upsilondieresis +!DC U+03AC alphatonos +!DD U+03AD epsilontonos +!DE U+03AE etatonos +!DF U+03AF iotatonos +!E0 U+03B0 upsilondieresistonos +!E1 U+03B1 alpha +!E2 U+03B2 beta +!E3 U+03B3 gamma +!E4 U+03B4 delta +!E5 U+03B5 epsilon +!E6 U+03B6 zeta +!E7 U+03B7 eta +!E8 U+03B8 theta +!E9 U+03B9 iota +!EA U+03BA kappa +!EB U+03BB lambda +!EC U+03BC mu +!ED U+03BD nu +!EE U+03BE xi +!EF U+03BF omicron +!F0 U+03C0 pi +!F1 U+03C1 rho +!F2 U+03C2 sigma1 +!F3 U+03C3 sigma +!F4 U+03C4 tau +!F5 U+03C5 upsilon +!F6 U+03C6 phi +!F7 U+03C7 chi +!F8 U+03C8 psi +!F9 U+03C9 omega +!FA U+03CA iotadieresis +!FB U+03CB upsilondieresis +!FC U+03CC omicrontonos +!FD U+03CD upsilontonos +!FE U+03CE omegatonos diff --git a/backend/libs/fpdf/makefont/iso-8859-9.map b/backend/libs/fpdf/makefont/iso-8859-9.map new file mode 100644 index 0000000..48c123a --- /dev/null +++ b/backend/libs/fpdf/makefont/iso-8859-9.map @@ -0,0 +1,256 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+0080 .notdef +!81 U+0081 .notdef +!82 U+0082 .notdef +!83 U+0083 .notdef +!84 U+0084 .notdef +!85 U+0085 .notdef +!86 U+0086 .notdef +!87 U+0087 .notdef +!88 U+0088 .notdef +!89 U+0089 .notdef +!8A U+008A .notdef +!8B U+008B .notdef +!8C U+008C .notdef +!8D U+008D .notdef +!8E U+008E .notdef +!8F U+008F .notdef +!90 U+0090 .notdef +!91 U+0091 .notdef +!92 U+0092 .notdef +!93 U+0093 .notdef +!94 U+0094 .notdef +!95 U+0095 .notdef +!96 U+0096 .notdef +!97 U+0097 .notdef +!98 U+0098 .notdef +!99 U+0099 .notdef +!9A U+009A .notdef +!9B U+009B .notdef +!9C U+009C .notdef +!9D U+009D .notdef +!9E U+009E .notdef +!9F U+009F .notdef +!A0 U+00A0 space +!A1 U+00A1 exclamdown +!A2 U+00A2 cent +!A3 U+00A3 sterling +!A4 U+00A4 currency +!A5 U+00A5 yen +!A6 U+00A6 brokenbar +!A7 U+00A7 section +!A8 U+00A8 dieresis +!A9 U+00A9 copyright +!AA U+00AA ordfeminine +!AB U+00AB guillemotleft +!AC U+00AC logicalnot +!AD U+00AD hyphen +!AE U+00AE registered +!AF U+00AF macron +!B0 U+00B0 degree +!B1 U+00B1 plusminus +!B2 U+00B2 twosuperior +!B3 U+00B3 threesuperior +!B4 U+00B4 acute +!B5 U+00B5 mu +!B6 U+00B6 paragraph +!B7 U+00B7 periodcentered +!B8 U+00B8 cedilla +!B9 U+00B9 onesuperior +!BA U+00BA ordmasculine +!BB U+00BB guillemotright +!BC U+00BC onequarter +!BD U+00BD onehalf +!BE U+00BE threequarters +!BF U+00BF questiondown +!C0 U+00C0 Agrave +!C1 U+00C1 Aacute +!C2 U+00C2 Acircumflex +!C3 U+00C3 Atilde +!C4 U+00C4 Adieresis +!C5 U+00C5 Aring +!C6 U+00C6 AE +!C7 U+00C7 Ccedilla +!C8 U+00C8 Egrave +!C9 U+00C9 Eacute +!CA U+00CA Ecircumflex +!CB U+00CB Edieresis +!CC U+00CC Igrave +!CD U+00CD Iacute +!CE U+00CE Icircumflex +!CF U+00CF Idieresis +!D0 U+011E Gbreve +!D1 U+00D1 Ntilde +!D2 U+00D2 Ograve +!D3 U+00D3 Oacute +!D4 U+00D4 Ocircumflex +!D5 U+00D5 Otilde +!D6 U+00D6 Odieresis +!D7 U+00D7 multiply +!D8 U+00D8 Oslash +!D9 U+00D9 Ugrave +!DA U+00DA Uacute +!DB U+00DB Ucircumflex +!DC U+00DC Udieresis +!DD U+0130 Idotaccent +!DE U+015E Scedilla +!DF U+00DF germandbls +!E0 U+00E0 agrave +!E1 U+00E1 aacute +!E2 U+00E2 acircumflex +!E3 U+00E3 atilde +!E4 U+00E4 adieresis +!E5 U+00E5 aring +!E6 U+00E6 ae +!E7 U+00E7 ccedilla +!E8 U+00E8 egrave +!E9 U+00E9 eacute +!EA U+00EA ecircumflex +!EB U+00EB edieresis +!EC U+00EC igrave +!ED U+00ED iacute +!EE U+00EE icircumflex +!EF U+00EF idieresis +!F0 U+011F gbreve +!F1 U+00F1 ntilde +!F2 U+00F2 ograve +!F3 U+00F3 oacute +!F4 U+00F4 ocircumflex +!F5 U+00F5 otilde +!F6 U+00F6 odieresis +!F7 U+00F7 divide +!F8 U+00F8 oslash +!F9 U+00F9 ugrave +!FA U+00FA uacute +!FB U+00FB ucircumflex +!FC U+00FC udieresis +!FD U+0131 dotlessi +!FE U+015F scedilla +!FF U+00FF ydieresis diff --git a/backend/libs/fpdf/makefont/koi8-r.map b/backend/libs/fpdf/makefont/koi8-r.map new file mode 100644 index 0000000..6ad5d05 --- /dev/null +++ b/backend/libs/fpdf/makefont/koi8-r.map @@ -0,0 +1,256 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+2500 SF100000 +!81 U+2502 SF110000 +!82 U+250C SF010000 +!83 U+2510 SF030000 +!84 U+2514 SF020000 +!85 U+2518 SF040000 +!86 U+251C SF080000 +!87 U+2524 SF090000 +!88 U+252C SF060000 +!89 U+2534 SF070000 +!8A U+253C SF050000 +!8B U+2580 upblock +!8C U+2584 dnblock +!8D U+2588 block +!8E U+258C lfblock +!8F U+2590 rtblock +!90 U+2591 ltshade +!91 U+2592 shade +!92 U+2593 dkshade +!93 U+2320 integraltp +!94 U+25A0 filledbox +!95 U+2219 periodcentered +!96 U+221A radical +!97 U+2248 approxequal +!98 U+2264 lessequal +!99 U+2265 greaterequal +!9A U+00A0 space +!9B U+2321 integralbt +!9C U+00B0 degree +!9D U+00B2 twosuperior +!9E U+00B7 periodcentered +!9F U+00F7 divide +!A0 U+2550 SF430000 +!A1 U+2551 SF240000 +!A2 U+2552 SF510000 +!A3 U+0451 afii10071 +!A4 U+2553 SF520000 +!A5 U+2554 SF390000 +!A6 U+2555 SF220000 +!A7 U+2556 SF210000 +!A8 U+2557 SF250000 +!A9 U+2558 SF500000 +!AA U+2559 SF490000 +!AB U+255A SF380000 +!AC U+255B SF280000 +!AD U+255C SF270000 +!AE U+255D SF260000 +!AF U+255E SF360000 +!B0 U+255F SF370000 +!B1 U+2560 SF420000 +!B2 U+2561 SF190000 +!B3 U+0401 afii10023 +!B4 U+2562 SF200000 +!B5 U+2563 SF230000 +!B6 U+2564 SF470000 +!B7 U+2565 SF480000 +!B8 U+2566 SF410000 +!B9 U+2567 SF450000 +!BA U+2568 SF460000 +!BB U+2569 SF400000 +!BC U+256A SF540000 +!BD U+256B SF530000 +!BE U+256C SF440000 +!BF U+00A9 copyright +!C0 U+044E afii10096 +!C1 U+0430 afii10065 +!C2 U+0431 afii10066 +!C3 U+0446 afii10088 +!C4 U+0434 afii10069 +!C5 U+0435 afii10070 +!C6 U+0444 afii10086 +!C7 U+0433 afii10068 +!C8 U+0445 afii10087 +!C9 U+0438 afii10074 +!CA U+0439 afii10075 +!CB U+043A afii10076 +!CC U+043B afii10077 +!CD U+043C afii10078 +!CE U+043D afii10079 +!CF U+043E afii10080 +!D0 U+043F afii10081 +!D1 U+044F afii10097 +!D2 U+0440 afii10082 +!D3 U+0441 afii10083 +!D4 U+0442 afii10084 +!D5 U+0443 afii10085 +!D6 U+0436 afii10072 +!D7 U+0432 afii10067 +!D8 U+044C afii10094 +!D9 U+044B afii10093 +!DA U+0437 afii10073 +!DB U+0448 afii10090 +!DC U+044D afii10095 +!DD U+0449 afii10091 +!DE U+0447 afii10089 +!DF U+044A afii10092 +!E0 U+042E afii10048 +!E1 U+0410 afii10017 +!E2 U+0411 afii10018 +!E3 U+0426 afii10040 +!E4 U+0414 afii10021 +!E5 U+0415 afii10022 +!E6 U+0424 afii10038 +!E7 U+0413 afii10020 +!E8 U+0425 afii10039 +!E9 U+0418 afii10026 +!EA U+0419 afii10027 +!EB U+041A afii10028 +!EC U+041B afii10029 +!ED U+041C afii10030 +!EE U+041D afii10031 +!EF U+041E afii10032 +!F0 U+041F afii10033 +!F1 U+042F afii10049 +!F2 U+0420 afii10034 +!F3 U+0421 afii10035 +!F4 U+0422 afii10036 +!F5 U+0423 afii10037 +!F6 U+0416 afii10024 +!F7 U+0412 afii10019 +!F8 U+042C afii10046 +!F9 U+042B afii10045 +!FA U+0417 afii10025 +!FB U+0428 afii10042 +!FC U+042D afii10047 +!FD U+0429 afii10043 +!FE U+0427 afii10041 +!FF U+042A afii10044 diff --git a/backend/libs/fpdf/makefont/koi8-u.map b/backend/libs/fpdf/makefont/koi8-u.map new file mode 100644 index 0000000..40a7e4f --- /dev/null +++ b/backend/libs/fpdf/makefont/koi8-u.map @@ -0,0 +1,256 @@ +!00 U+0000 .notdef +!01 U+0001 .notdef +!02 U+0002 .notdef +!03 U+0003 .notdef +!04 U+0004 .notdef +!05 U+0005 .notdef +!06 U+0006 .notdef +!07 U+0007 .notdef +!08 U+0008 .notdef +!09 U+0009 .notdef +!0A U+000A .notdef +!0B U+000B .notdef +!0C U+000C .notdef +!0D U+000D .notdef +!0E U+000E .notdef +!0F U+000F .notdef +!10 U+0010 .notdef +!11 U+0011 .notdef +!12 U+0012 .notdef +!13 U+0013 .notdef +!14 U+0014 .notdef +!15 U+0015 .notdef +!16 U+0016 .notdef +!17 U+0017 .notdef +!18 U+0018 .notdef +!19 U+0019 .notdef +!1A U+001A .notdef +!1B U+001B .notdef +!1C U+001C .notdef +!1D U+001D .notdef +!1E U+001E .notdef +!1F U+001F .notdef +!20 U+0020 space +!21 U+0021 exclam +!22 U+0022 quotedbl +!23 U+0023 numbersign +!24 U+0024 dollar +!25 U+0025 percent +!26 U+0026 ampersand +!27 U+0027 quotesingle +!28 U+0028 parenleft +!29 U+0029 parenright +!2A U+002A asterisk +!2B U+002B plus +!2C U+002C comma +!2D U+002D hyphen +!2E U+002E period +!2F U+002F slash +!30 U+0030 zero +!31 U+0031 one +!32 U+0032 two +!33 U+0033 three +!34 U+0034 four +!35 U+0035 five +!36 U+0036 six +!37 U+0037 seven +!38 U+0038 eight +!39 U+0039 nine +!3A U+003A colon +!3B U+003B semicolon +!3C U+003C less +!3D U+003D equal +!3E U+003E greater +!3F U+003F question +!40 U+0040 at +!41 U+0041 A +!42 U+0042 B +!43 U+0043 C +!44 U+0044 D +!45 U+0045 E +!46 U+0046 F +!47 U+0047 G +!48 U+0048 H +!49 U+0049 I +!4A U+004A J +!4B U+004B K +!4C U+004C L +!4D U+004D M +!4E U+004E N +!4F U+004F O +!50 U+0050 P +!51 U+0051 Q +!52 U+0052 R +!53 U+0053 S +!54 U+0054 T +!55 U+0055 U +!56 U+0056 V +!57 U+0057 W +!58 U+0058 X +!59 U+0059 Y +!5A U+005A Z +!5B U+005B bracketleft +!5C U+005C backslash +!5D U+005D bracketright +!5E U+005E asciicircum +!5F U+005F underscore +!60 U+0060 grave +!61 U+0061 a +!62 U+0062 b +!63 U+0063 c +!64 U+0064 d +!65 U+0065 e +!66 U+0066 f +!67 U+0067 g +!68 U+0068 h +!69 U+0069 i +!6A U+006A j +!6B U+006B k +!6C U+006C l +!6D U+006D m +!6E U+006E n +!6F U+006F o +!70 U+0070 p +!71 U+0071 q +!72 U+0072 r +!73 U+0073 s +!74 U+0074 t +!75 U+0075 u +!76 U+0076 v +!77 U+0077 w +!78 U+0078 x +!79 U+0079 y +!7A U+007A z +!7B U+007B braceleft +!7C U+007C bar +!7D U+007D braceright +!7E U+007E asciitilde +!7F U+007F .notdef +!80 U+2500 SF100000 +!81 U+2502 SF110000 +!82 U+250C SF010000 +!83 U+2510 SF030000 +!84 U+2514 SF020000 +!85 U+2518 SF040000 +!86 U+251C SF080000 +!87 U+2524 SF090000 +!88 U+252C SF060000 +!89 U+2534 SF070000 +!8A U+253C SF050000 +!8B U+2580 upblock +!8C U+2584 dnblock +!8D U+2588 block +!8E U+258C lfblock +!8F U+2590 rtblock +!90 U+2591 ltshade +!91 U+2592 shade +!92 U+2593 dkshade +!93 U+2320 integraltp +!94 U+25A0 filledbox +!95 U+2022 bullet +!96 U+221A radical +!97 U+2248 approxequal +!98 U+2264 lessequal +!99 U+2265 greaterequal +!9A U+00A0 space +!9B U+2321 integralbt +!9C U+00B0 degree +!9D U+00B2 twosuperior +!9E U+00B7 periodcentered +!9F U+00F7 divide +!A0 U+2550 SF430000 +!A1 U+2551 SF240000 +!A2 U+2552 SF510000 +!A3 U+0451 afii10071 +!A4 U+0454 afii10101 +!A5 U+2554 SF390000 +!A6 U+0456 afii10103 +!A7 U+0457 afii10104 +!A8 U+2557 SF250000 +!A9 U+2558 SF500000 +!AA U+2559 SF490000 +!AB U+255A SF380000 +!AC U+255B SF280000 +!AD U+0491 afii10098 +!AE U+255D SF260000 +!AF U+255E SF360000 +!B0 U+255F SF370000 +!B1 U+2560 SF420000 +!B2 U+2561 SF190000 +!B3 U+0401 afii10023 +!B4 U+0404 afii10053 +!B5 U+2563 SF230000 +!B6 U+0406 afii10055 +!B7 U+0407 afii10056 +!B8 U+2566 SF410000 +!B9 U+2567 SF450000 +!BA U+2568 SF460000 +!BB U+2569 SF400000 +!BC U+256A SF540000 +!BD U+0490 afii10050 +!BE U+256C SF440000 +!BF U+00A9 copyright +!C0 U+044E afii10096 +!C1 U+0430 afii10065 +!C2 U+0431 afii10066 +!C3 U+0446 afii10088 +!C4 U+0434 afii10069 +!C5 U+0435 afii10070 +!C6 U+0444 afii10086 +!C7 U+0433 afii10068 +!C8 U+0445 afii10087 +!C9 U+0438 afii10074 +!CA U+0439 afii10075 +!CB U+043A afii10076 +!CC U+043B afii10077 +!CD U+043C afii10078 +!CE U+043D afii10079 +!CF U+043E afii10080 +!D0 U+043F afii10081 +!D1 U+044F afii10097 +!D2 U+0440 afii10082 +!D3 U+0441 afii10083 +!D4 U+0442 afii10084 +!D5 U+0443 afii10085 +!D6 U+0436 afii10072 +!D7 U+0432 afii10067 +!D8 U+044C afii10094 +!D9 U+044B afii10093 +!DA U+0437 afii10073 +!DB U+0448 afii10090 +!DC U+044D afii10095 +!DD U+0449 afii10091 +!DE U+0447 afii10089 +!DF U+044A afii10092 +!E0 U+042E afii10048 +!E1 U+0410 afii10017 +!E2 U+0411 afii10018 +!E3 U+0426 afii10040 +!E4 U+0414 afii10021 +!E5 U+0415 afii10022 +!E6 U+0424 afii10038 +!E7 U+0413 afii10020 +!E8 U+0425 afii10039 +!E9 U+0418 afii10026 +!EA U+0419 afii10027 +!EB U+041A afii10028 +!EC U+041B afii10029 +!ED U+041C afii10030 +!EE U+041D afii10031 +!EF U+041E afii10032 +!F0 U+041F afii10033 +!F1 U+042F afii10049 +!F2 U+0420 afii10034 +!F3 U+0421 afii10035 +!F4 U+0422 afii10036 +!F5 U+0423 afii10037 +!F6 U+0416 afii10024 +!F7 U+0412 afii10019 +!F8 U+042C afii10046 +!F9 U+042B afii10045 +!FA U+0417 afii10025 +!FB U+0428 afii10042 +!FC U+042D afii10047 +!FD U+0429 afii10043 +!FE U+0427 afii10041 +!FF U+042A afii10044 diff --git a/backend/libs/fpdf/makefont/makefont.php b/backend/libs/fpdf/makefont/makefont.php new file mode 100644 index 0000000..2c147ac --- /dev/null +++ b/backend/libs/fpdf/makefont/makefont.php @@ -0,0 +1,447 @@ +$severity: "; + echo "$txt
"; + } +} + +function Notice($txt) +{ + Message($txt, 'Notice'); +} + +function Warning($txt) +{ + Message($txt, 'Warning'); +} + +function Error($txt) +{ + Message($txt, 'Error'); + exit; +} + +function LoadMap($enc) +{ + $file = dirname(__FILE__).'/'.strtolower($enc).'.map'; + $a = file($file); + if(empty($a)) + Error('Encoding not found: '.$enc); + $map = array_fill(0, 256, array('uv'=>-1, 'name'=>'.notdef')); + foreach($a as $line) + { + $e = explode(' ', rtrim($line)); + $c = hexdec(substr($e[0],1)); + $uv = hexdec(substr($e[1],2)); + $name = $e[2]; + $map[$c] = array('uv'=>$uv, 'name'=>$name); + } + return $map; +} + +function GetInfoFromTrueType($file, $embed, $subset, $map) +{ + // Return information from a TrueType font + try + { + $ttf = new TTFParser($file); + $ttf->Parse(); + } + catch(Exception $e) + { + Error($e->getMessage()); + } + if($embed) + { + if(!$ttf->embeddable) + Error('Font license does not allow embedding'); + if($subset) + { + $chars = array(); + foreach($map as $v) + { + if($v['name']!='.notdef') + $chars[] = $v['uv']; + } + $ttf->Subset($chars); + $info['Data'] = $ttf->Build(); + } + else + $info['Data'] = file_get_contents($file); + $info['OriginalSize'] = strlen($info['Data']); + } + $k = 1000/$ttf->unitsPerEm; + $info['FontName'] = $ttf->postScriptName; + $info['Bold'] = $ttf->bold; + $info['ItalicAngle'] = $ttf->italicAngle; + $info['IsFixedPitch'] = $ttf->isFixedPitch; + $info['Ascender'] = round($k*$ttf->typoAscender); + $info['Descender'] = round($k*$ttf->typoDescender); + $info['UnderlineThickness'] = round($k*$ttf->underlineThickness); + $info['UnderlinePosition'] = round($k*$ttf->underlinePosition); + $info['FontBBox'] = array(round($k*$ttf->xMin), round($k*$ttf->yMin), round($k*$ttf->xMax), round($k*$ttf->yMax)); + $info['CapHeight'] = round($k*$ttf->capHeight); + $info['MissingWidth'] = round($k*$ttf->glyphs[0]['w']); + $widths = array_fill(0, 256, $info['MissingWidth']); + foreach($map as $c=>$v) + { + if($v['name']!='.notdef') + { + if(isset($ttf->chars[$v['uv']])) + { + $id = $ttf->chars[$v['uv']]; + $w = $ttf->glyphs[$id]['w']; + $widths[$c] = round($k*$w); + } + else + Warning('Character '.$v['name'].' is missing'); + } + } + $info['Widths'] = $widths; + return $info; +} + +function GetInfoFromType1($file, $embed, $map) +{ + // Return information from a Type1 font + if($embed) + { + $f = fopen($file, 'rb'); + if(!$f) + Error('Can\'t open font file'); + // Read first segment + $a = unpack('Cmarker/Ctype/Vsize', fread($f,6)); + if($a['marker']!=128) + Error('Font file is not a valid binary Type1'); + $size1 = $a['size']; + $data = fread($f, $size1); + // Read second segment + $a = unpack('Cmarker/Ctype/Vsize', fread($f,6)); + if($a['marker']!=128) + Error('Font file is not a valid binary Type1'); + $size2 = $a['size']; + $data .= fread($f, $size2); + fclose($f); + $info['Data'] = $data; + $info['Size1'] = $size1; + $info['Size2'] = $size2; + } + + $afm = substr($file, 0, -3).'afm'; + if(!file_exists($afm)) + Error('AFM font file not found: '.$afm); + $a = file($afm); + if(empty($a)) + Error('AFM file empty or not readable'); + foreach($a as $line) + { + $e = explode(' ', rtrim($line)); + if(count($e)<2) + continue; + $entry = $e[0]; + if($entry=='C') + { + $w = $e[4]; + $name = $e[7]; + $cw[$name] = $w; + } + elseif($entry=='FontName') + $info['FontName'] = $e[1]; + elseif($entry=='Weight') + $info['Weight'] = $e[1]; + elseif($entry=='ItalicAngle') + $info['ItalicAngle'] = (int)$e[1]; + elseif($entry=='Ascender') + $info['Ascender'] = (int)$e[1]; + elseif($entry=='Descender') + $info['Descender'] = (int)$e[1]; + elseif($entry=='UnderlineThickness') + $info['UnderlineThickness'] = (int)$e[1]; + elseif($entry=='UnderlinePosition') + $info['UnderlinePosition'] = (int)$e[1]; + elseif($entry=='IsFixedPitch') + $info['IsFixedPitch'] = ($e[1]=='true'); + elseif($entry=='FontBBox') + $info['FontBBox'] = array((int)$e[1], (int)$e[2], (int)$e[3], (int)$e[4]); + elseif($entry=='CapHeight') + $info['CapHeight'] = (int)$e[1]; + elseif($entry=='StdVW') + $info['StdVW'] = (int)$e[1]; + } + + if(!isset($info['FontName'])) + Error('FontName missing in AFM file'); + if(!isset($info['Ascender'])) + $info['Ascender'] = $info['FontBBox'][3]; + if(!isset($info['Descender'])) + $info['Descender'] = $info['FontBBox'][1]; + $info['Bold'] = isset($info['Weight']) && preg_match('/bold|black/i', $info['Weight']); + if(isset($cw['.notdef'])) + $info['MissingWidth'] = $cw['.notdef']; + else + $info['MissingWidth'] = 0; + $widths = array_fill(0, 256, $info['MissingWidth']); + foreach($map as $c=>$v) + { + if($v['name']!='.notdef') + { + if(isset($cw[$v['name']])) + $widths[$c] = $cw[$v['name']]; + else + Warning('Character '.$v['name'].' is missing'); + } + } + $info['Widths'] = $widths; + return $info; +} + +function MakeFontDescriptor($info) +{ + // Ascent + $fd = "array('Ascent'=>".$info['Ascender']; + // Descent + $fd .= ",'Descent'=>".$info['Descender']; + // CapHeight + if(!empty($info['CapHeight'])) + $fd .= ",'CapHeight'=>".$info['CapHeight']; + else + $fd .= ",'CapHeight'=>".$info['Ascender']; + // Flags + $flags = 0; + if($info['IsFixedPitch']) + $flags += 1<<0; + $flags += 1<<5; + if($info['ItalicAngle']!=0) + $flags += 1<<6; + $fd .= ",'Flags'=>".$flags; + // FontBBox + $fbb = $info['FontBBox']; + $fd .= ",'FontBBox'=>'[".$fbb[0].' '.$fbb[1].' '.$fbb[2].' '.$fbb[3]."]'"; + // ItalicAngle + $fd .= ",'ItalicAngle'=>".$info['ItalicAngle']; + // StemV + if(isset($info['StdVW'])) + $stemv = $info['StdVW']; + elseif($info['Bold']) + $stemv = 120; + else + $stemv = 70; + $fd .= ",'StemV'=>".$stemv; + // MissingWidth + $fd .= ",'MissingWidth'=>".$info['MissingWidth'].')'; + return $fd; +} + +function MakeWidthArray($widths) +{ + $s = "array(\n\t"; + for($c=0;$c<=255;$c++) + { + if(chr($c)=="'") + $s .= "'\\''"; + elseif(chr($c)=="\\") + $s .= "'\\\\'"; + elseif($c>=32 && $c<=126) + $s .= "'".chr($c)."'"; + else + $s .= "chr($c)"; + $s .= '=>'.$widths[$c]; + if($c<255) + $s .= ','; + if(($c+1)%22==0) + $s .= "\n\t"; + } + $s .= ')'; + return $s; +} + +function MakeFontEncoding($map) +{ + // Build differences from reference encoding + $ref = LoadMap('cp1252'); + $s = ''; + $last = 0; + for($c=32;$c<=255;$c++) + { + if($map[$c]['name']!=$ref[$c]['name']) + { + if($c!=$last+1) + $s .= $c.' '; + $last = $c; + $s .= '/'.$map[$c]['name'].' '; + } + } + return rtrim($s); +} + +function MakeUnicodeArray($map) +{ + // Build mapping to Unicode values + $ranges = array(); + foreach($map as $c=>$v) + { + $uv = $v['uv']; + if($uv!=-1) + { + if(isset($range)) + { + if($c==$range[1]+1 && $uv==$range[3]+1) + { + $range[1]++; + $range[3]++; + } + else + { + $ranges[] = $range; + $range = array($c, $c, $uv, $uv); + } + } + else + $range = array($c, $c, $uv, $uv); + } + } + $ranges[] = $range; + + foreach($ranges as $range) + { + if(isset($s)) + $s .= ','; + else + $s = 'array('; + $s .= $range[0].'=>'; + $nb = $range[1]-$range[0]+1; + if($nb>1) + $s .= 'array('.$range[2].','.$nb.')'; + else + $s .= $range[2]; + } + $s .= ')'; + return $s; +} + +function SaveToFile($file, $s, $mode) +{ + $f = fopen($file, 'w'.$mode); + if(!$f) + Error('Can\'t write to file '.$file); + fwrite($f, $s); + fclose($f); +} + +function MakeDefinitionFile($file, $type, $enc, $embed, $subset, $map, $info) +{ + $s = "\n"; + SaveToFile($file, $s, 't'); +} + +function MakeFont($fontfile, $enc='cp1252', $embed=true, $subset=true) +{ + // Generate a font definition file + if(!file_exists($fontfile)) + Error('Font file not found: '.$fontfile); + $ext = strtolower(substr($fontfile,-3)); + if($ext=='ttf' || $ext=='otf') + $type = 'TrueType'; + elseif($ext=='pfb') + $type = 'Type1'; + else + Error('Unrecognized font file extension: '.$ext); + + $map = LoadMap($enc); + + if($type=='TrueType') + $info = GetInfoFromTrueType($fontfile, $embed, $subset, $map); + else + $info = GetInfoFromType1($fontfile, $embed, $map); + + $basename = substr(basename($fontfile), 0, -4); + if($embed) + { + if(function_exists('gzcompress')) + { + $file = $basename.'.z'; + SaveToFile($file, gzcompress($info['Data']), 'b'); + $info['File'] = $file; + Message('Font file compressed: '.$file); + } + else + { + $info['File'] = basename($fontfile); + $subset = false; + Notice('Font file could not be compressed (zlib extension not available)'); + } + } + + MakeDefinitionFile($basename.'.php', $type, $enc, $embed, $subset, $map, $info); + Message('Font definition file generated: '.$basename.'.php'); +} + +if(PHP_SAPI=='cli') +{ + // Command-line interface + ini_set('log_errors', '0'); + if($argc==1) + die("Usage: php makefont.php fontfile [encoding] [embed] [subset]\n"); + $fontfile = $argv[1]; + if($argc>=3) + $enc = $argv[2]; + else + $enc = 'cp1252'; + if($argc>=4) + $embed = ($argv[3]=='true' || $argv[3]=='1'); + else + $embed = true; + if($argc>=5) + $subset = ($argv[4]=='true' || $argv[4]=='1'); + else + $subset = true; + MakeFont($fontfile, $enc, $embed, $subset); +} +?> diff --git a/backend/libs/fpdf/makefont/ttfparser.php b/backend/libs/fpdf/makefont/ttfparser.php new file mode 100644 index 0000000..1ec1276 --- /dev/null +++ b/backend/libs/fpdf/makefont/ttfparser.php @@ -0,0 +1,714 @@ +f = fopen($file, 'rb'); + if(!$this->f) + $this->Error('Can\'t open file: '.$file); + } + + function __destruct() + { + if(is_resource($this->f)) + fclose($this->f); + } + + function Parse() + { + $this->ParseOffsetTable(); + $this->ParseHead(); + $this->ParseHhea(); + $this->ParseMaxp(); + $this->ParseHmtx(); + $this->ParseLoca(); + $this->ParseGlyf(); + $this->ParseCmap(); + $this->ParseName(); + $this->ParseOS2(); + $this->ParsePost(); + } + + function ParseOffsetTable() + { + $version = $this->Read(4); + if($version=='OTTO') + $this->Error('OpenType fonts based on PostScript outlines are not supported'); + if($version!="\x00\x01\x00\x00") + $this->Error('Unrecognized file format'); + $numTables = $this->ReadUShort(); + $this->Skip(3*2); // searchRange, entrySelector, rangeShift + $this->tables = array(); + for($i=0;$i<$numTables;$i++) + { + $tag = $this->Read(4); + $checkSum = $this->Read(4); + $offset = $this->ReadULong(); + $length = $this->ReadULong(); + $this->tables[$tag] = array('offset'=>$offset, 'length'=>$length, 'checkSum'=>$checkSum); + } + } + + function ParseHead() + { + $this->Seek('head'); + $this->Skip(3*4); // version, fontRevision, checkSumAdjustment + $magicNumber = $this->ReadULong(); + if($magicNumber!=0x5F0F3CF5) + $this->Error('Incorrect magic number'); + $this->Skip(2); // flags + $this->unitsPerEm = $this->ReadUShort(); + $this->Skip(2*8); // created, modified + $this->xMin = $this->ReadShort(); + $this->yMin = $this->ReadShort(); + $this->xMax = $this->ReadShort(); + $this->yMax = $this->ReadShort(); + $this->Skip(3*2); // macStyle, lowestRecPPEM, fontDirectionHint + $this->indexToLocFormat = $this->ReadShort(); + } + + function ParseHhea() + { + $this->Seek('hhea'); + $this->Skip(4+15*2); + $this->numberOfHMetrics = $this->ReadUShort(); + } + + function ParseMaxp() + { + $this->Seek('maxp'); + $this->Skip(4); + $this->numGlyphs = $this->ReadUShort(); + } + + function ParseHmtx() + { + $this->Seek('hmtx'); + $this->glyphs = array(); + for($i=0;$i<$this->numberOfHMetrics;$i++) + { + $advanceWidth = $this->ReadUShort(); + $lsb = $this->ReadShort(); + $this->glyphs[$i] = array('w'=>$advanceWidth, 'lsb'=>$lsb); + } + for($i=$this->numberOfHMetrics;$i<$this->numGlyphs;$i++) + { + $lsb = $this->ReadShort(); + $this->glyphs[$i] = array('w'=>$advanceWidth, 'lsb'=>$lsb); + } + } + + function ParseLoca() + { + $this->Seek('loca'); + $offsets = array(); + if($this->indexToLocFormat==0) + { + // Short format + for($i=0;$i<=$this->numGlyphs;$i++) + $offsets[] = 2*$this->ReadUShort(); + } + else + { + // Long format + for($i=0;$i<=$this->numGlyphs;$i++) + $offsets[] = $this->ReadULong(); + } + for($i=0;$i<$this->numGlyphs;$i++) + { + $this->glyphs[$i]['offset'] = $offsets[$i]; + $this->glyphs[$i]['length'] = $offsets[$i+1] - $offsets[$i]; + } + } + + function ParseGlyf() + { + $tableOffset = $this->tables['glyf']['offset']; + foreach($this->glyphs as &$glyph) + { + if($glyph['length']>0) + { + fseek($this->f, $tableOffset+$glyph['offset'], SEEK_SET); + if($this->ReadShort()<0) + { + // Composite glyph + $this->Skip(4*2); // xMin, yMin, xMax, yMax + $offset = 5*2; + $a = array(); + do + { + $flags = $this->ReadUShort(); + $index = $this->ReadUShort(); + $a[$offset+2] = $index; + if($flags & 1) // ARG_1_AND_2_ARE_WORDS + $skip = 2*2; + else + $skip = 2; + if($flags & 8) // WE_HAVE_A_SCALE + $skip += 2; + elseif($flags & 64) // WE_HAVE_AN_X_AND_Y_SCALE + $skip += 2*2; + elseif($flags & 128) // WE_HAVE_A_TWO_BY_TWO + $skip += 4*2; + $this->Skip($skip); + $offset += 2*2 + $skip; + } + while($flags & 32); // MORE_COMPONENTS + $glyph['components'] = $a; + } + } + } + } + + function ParseCmap() + { + $this->Seek('cmap'); + $this->Skip(2); // version + $numTables = $this->ReadUShort(); + $offset31 = 0; + for($i=0;$i<$numTables;$i++) + { + $platformID = $this->ReadUShort(); + $encodingID = $this->ReadUShort(); + $offset = $this->ReadULong(); + if($platformID==3 && $encodingID==1) + $offset31 = $offset; + } + if($offset31==0) + $this->Error('No Unicode encoding found'); + + $startCount = array(); + $endCount = array(); + $idDelta = array(); + $idRangeOffset = array(); + $this->chars = array(); + fseek($this->f, $this->tables['cmap']['offset']+$offset31, SEEK_SET); + $format = $this->ReadUShort(); + if($format!=4) + $this->Error('Unexpected subtable format: '.$format); + $this->Skip(2*2); // length, language + $segCount = $this->ReadUShort()/2; + $this->Skip(3*2); // searchRange, entrySelector, rangeShift + for($i=0;$i<$segCount;$i++) + $endCount[$i] = $this->ReadUShort(); + $this->Skip(2); // reservedPad + for($i=0;$i<$segCount;$i++) + $startCount[$i] = $this->ReadUShort(); + for($i=0;$i<$segCount;$i++) + $idDelta[$i] = $this->ReadShort(); + $offset = ftell($this->f); + for($i=0;$i<$segCount;$i++) + $idRangeOffset[$i] = $this->ReadUShort(); + + for($i=0;$i<$segCount;$i++) + { + $c1 = $startCount[$i]; + $c2 = $endCount[$i]; + $d = $idDelta[$i]; + $ro = $idRangeOffset[$i]; + if($ro>0) + fseek($this->f, $offset+2*$i+$ro, SEEK_SET); + for($c=$c1;$c<=$c2;$c++) + { + if($c==0xFFFF) + break; + if($ro>0) + { + $gid = $this->ReadUShort(); + if($gid>0) + $gid += $d; + } + else + $gid = $c+$d; + if($gid>=65536) + $gid -= 65536; + if($gid>0) + $this->chars[$c] = $gid; + } + } + } + + function ParseName() + { + $this->Seek('name'); + $tableOffset = $this->tables['name']['offset']; + $this->postScriptName = ''; + $this->Skip(2); // format + $count = $this->ReadUShort(); + $stringOffset = $this->ReadUShort(); + for($i=0;$i<$count;$i++) + { + $this->Skip(3*2); // platformID, encodingID, languageID + $nameID = $this->ReadUShort(); + $length = $this->ReadUShort(); + $offset = $this->ReadUShort(); + if($nameID==6) + { + // PostScript name + fseek($this->f, $tableOffset+$stringOffset+$offset, SEEK_SET); + $s = $this->Read($length); + $s = str_replace(chr(0), '', $s); + $s = preg_replace('|[ \[\](){}<>/%]|', '', $s); + $this->postScriptName = $s; + break; + } + } + if($this->postScriptName=='') + $this->Error('PostScript name not found'); + } + + function ParseOS2() + { + $this->Seek('OS/2'); + $version = $this->ReadUShort(); + $this->Skip(3*2); // xAvgCharWidth, usWeightClass, usWidthClass + $fsType = $this->ReadUShort(); + $this->embeddable = ($fsType!=2) && ($fsType & 0x200)==0; + $this->Skip(11*2+10+4*4+4); + $fsSelection = $this->ReadUShort(); + $this->bold = ($fsSelection & 32)!=0; + $this->Skip(2*2); // usFirstCharIndex, usLastCharIndex + $this->typoAscender = $this->ReadShort(); + $this->typoDescender = $this->ReadShort(); + if($version>=2) + { + $this->Skip(3*2+2*4+2); + $this->capHeight = $this->ReadShort(); + } + else + $this->capHeight = 0; + } + + function ParsePost() + { + $this->Seek('post'); + $version = $this->ReadULong(); + $this->italicAngle = $this->ReadShort(); + $this->Skip(2); // Skip decimal part + $this->underlinePosition = $this->ReadShort(); + $this->underlineThickness = $this->ReadShort(); + $this->isFixedPitch = ($this->ReadULong()!=0); + if($version==0x20000) + { + // Extract glyph names + $this->Skip(4*4); // min/max usage + $this->Skip(2); // numberOfGlyphs + $glyphNameIndex = array(); + $names = array(); + $numNames = 0; + for($i=0;$i<$this->numGlyphs;$i++) + { + $index = $this->ReadUShort(); + $glyphNameIndex[] = $index; + if($index>=258 && $index-257>$numNames) + $numNames = $index-257; + } + for($i=0;$i<$numNames;$i++) + { + $len = ord($this->Read(1)); + $names[] = $this->Read($len); + } + foreach($glyphNameIndex as $i=>$index) + { + if($index>=258) + $this->glyphs[$i]['name'] = $names[$index-258]; + else + $this->glyphs[$i]['name'] = $index; + } + $this->glyphNames = true; + } + else + $this->glyphNames = false; + } + + function Subset($chars) + { + $this->subsettedGlyphs = array(); + $this->AddGlyph(0); + $this->subsettedChars = array(); + foreach($chars as $char) + { + if(isset($this->chars[$char])) + { + $this->subsettedChars[] = $char; + $this->AddGlyph($this->chars[$char]); + } + } + } + + function AddGlyph($id) + { + if(!isset($this->glyphs[$id]['ssid'])) + { + $this->glyphs[$id]['ssid'] = count($this->subsettedGlyphs); + $this->subsettedGlyphs[] = $id; + if(isset($this->glyphs[$id]['components'])) + { + foreach($this->glyphs[$id]['components'] as $cid) + $this->AddGlyph($cid); + } + } + } + + function Build() + { + $this->BuildCmap(); + $this->BuildHhea(); + $this->BuildHmtx(); + $this->BuildLoca(); + $this->BuildGlyf(); + $this->BuildMaxp(); + $this->BuildPost(); + return $this->BuildFont(); + } + + function BuildCmap() + { + if(!isset($this->subsettedChars)) + return; + + // Divide charset in contiguous segments + $chars = $this->subsettedChars; + sort($chars); + $segments = array(); + $segment = array($chars[0], $chars[0]); + for($i=1;$i$segment[1]+1) + { + $segments[] = $segment; + $segment = array($chars[$i], $chars[$i]); + } + else + $segment[1]++; + } + $segments[] = $segment; + $segments[] = array(0xFFFF, 0xFFFF); + $segCount = count($segments); + + // Build a Format 4 subtable + $startCount = array(); + $endCount = array(); + $idDelta = array(); + $idRangeOffset = array(); + $glyphIdArray = ''; + for($i=0;$i<$segCount;$i++) + { + list($start, $end) = $segments[$i]; + $startCount[] = $start; + $endCount[] = $end; + if($start!=$end) + { + // Segment with multiple chars + $idDelta[] = 0; + $idRangeOffset[] = strlen($glyphIdArray) + ($segCount-$i)*2; + for($c=$start;$c<=$end;$c++) + { + $ssid = $this->glyphs[$this->chars[$c]]['ssid']; + $glyphIdArray .= pack('n', $ssid); + } + } + else + { + // Segment with a single char + if($start<0xFFFF) + $ssid = $this->glyphs[$this->chars[$start]]['ssid']; + else + $ssid = 0; + $idDelta[] = $ssid - $start; + $idRangeOffset[] = 0; + } + } + $entrySelector = 0; + $n = $segCount; + while($n!=1) + { + $n = $n>>1; + $entrySelector++; + } + $searchRange = (1<<$entrySelector)*2; + $rangeShift = 2*$segCount - $searchRange; + $cmap = pack('nnnn', 2*$segCount, $searchRange, $entrySelector, $rangeShift); + foreach($endCount as $val) + $cmap .= pack('n', $val); + $cmap .= pack('n', 0); // reservedPad + foreach($startCount as $val) + $cmap .= pack('n', $val); + foreach($idDelta as $val) + $cmap .= pack('n', $val); + foreach($idRangeOffset as $val) + $cmap .= pack('n', $val); + $cmap .= $glyphIdArray; + + $data = pack('nn', 0, 1); // version, numTables + $data .= pack('nnN', 3, 1, 12); // platformID, encodingID, offset + $data .= pack('nnn', 4, 6+strlen($cmap), 0); // format, length, language + $data .= $cmap; + $this->SetTable('cmap', $data); + } + + function BuildHhea() + { + $this->LoadTable('hhea'); + $numberOfHMetrics = count($this->subsettedGlyphs); + $data = substr_replace($this->tables['hhea']['data'], pack('n',$numberOfHMetrics), 4+15*2, 2); + $this->SetTable('hhea', $data); + } + + function BuildHmtx() + { + $data = ''; + foreach($this->subsettedGlyphs as $id) + { + $glyph = $this->glyphs[$id]; + $data .= pack('nn', $glyph['w'], $glyph['lsb']); + } + $this->SetTable('hmtx', $data); + } + + function BuildLoca() + { + $data = ''; + $offset = 0; + foreach($this->subsettedGlyphs as $id) + { + if($this->indexToLocFormat==0) + $data .= pack('n', $offset/2); + else + $data .= pack('N', $offset); + $offset += $this->glyphs[$id]['length']; + } + if($this->indexToLocFormat==0) + $data .= pack('n', $offset/2); + else + $data .= pack('N', $offset); + $this->SetTable('loca', $data); + } + + function BuildGlyf() + { + $tableOffset = $this->tables['glyf']['offset']; + $data = ''; + foreach($this->subsettedGlyphs as $id) + { + $glyph = $this->glyphs[$id]; + fseek($this->f, $tableOffset+$glyph['offset'], SEEK_SET); + $glyph_data = $this->Read($glyph['length']); + if(isset($glyph['components'])) + { + // Composite glyph + foreach($glyph['components'] as $offset=>$cid) + { + $ssid = $this->glyphs[$cid]['ssid']; + $glyph_data = substr_replace($glyph_data, pack('n',$ssid), $offset, 2); + } + } + $data .= $glyph_data; + } + $this->SetTable('glyf', $data); + } + + function BuildMaxp() + { + $this->LoadTable('maxp'); + $numGlyphs = count($this->subsettedGlyphs); + $data = substr_replace($this->tables['maxp']['data'], pack('n',$numGlyphs), 4, 2); + $this->SetTable('maxp', $data); + } + + function BuildPost() + { + $this->Seek('post'); + if($this->glyphNames) + { + // Version 2.0 + $numberOfGlyphs = count($this->subsettedGlyphs); + $numNames = 0; + $names = ''; + $data = $this->Read(2*4+2*2+5*4); + $data .= pack('n', $numberOfGlyphs); + foreach($this->subsettedGlyphs as $id) + { + $name = $this->glyphs[$id]['name']; + if(is_string($name)) + { + $data .= pack('n', 258+$numNames); + $names .= chr(strlen($name)).$name; + $numNames++; + } + else + $data .= pack('n', $name); + } + $data .= $names; + } + else + { + // Version 3.0 + $this->Skip(4); + $data = "\x00\x03\x00\x00"; + $data .= $this->Read(4+2*2+5*4); + } + $this->SetTable('post', $data); + } + + function BuildFont() + { + $tags = array(); + foreach(array('cmap', 'cvt ', 'fpgm', 'glyf', 'head', 'hhea', 'hmtx', 'loca', 'maxp', 'name', 'post', 'prep') as $tag) + { + if(isset($this->tables[$tag])) + $tags[] = $tag; + } + $numTables = count($tags); + $offset = 12 + 16*$numTables; + foreach($tags as $tag) + { + if(!isset($this->tables[$tag]['data'])) + $this->LoadTable($tag); + $this->tables[$tag]['offset'] = $offset; + $offset += strlen($this->tables[$tag]['data']); + } + + // Build offset table + $entrySelector = 0; + $n = $numTables; + while($n!=1) + { + $n = $n>>1; + $entrySelector++; + } + $searchRange = 16*(1<<$entrySelector); + $rangeShift = 16*$numTables - $searchRange; + $offsetTable = pack('nnnnnn', 1, 0, $numTables, $searchRange, $entrySelector, $rangeShift); + foreach($tags as $tag) + { + $table = $this->tables[$tag]; + $offsetTable .= $tag.$table['checkSum'].pack('NN', $table['offset'], $table['length']); + } + + // Compute checkSumAdjustment (0xB1B0AFBA - font checkSum) + $s = $this->CheckSum($offsetTable); + foreach($tags as $tag) + $s .= $this->tables[$tag]['checkSum']; + $a = unpack('n2', $this->CheckSum($s)); + $high = 0xB1B0 + ($a[1]^0xFFFF); + $low = 0xAFBA + ($a[2]^0xFFFF) + 1; + $checkSumAdjustment = pack('nn', $high+($low>>16), $low); + $this->tables['head']['data'] = substr_replace($this->tables['head']['data'], $checkSumAdjustment, 8, 4); + + $font = $offsetTable; + foreach($tags as $tag) + $font .= $this->tables[$tag]['data']; + + return $font; + } + + function LoadTable($tag) + { + $this->Seek($tag); + $length = $this->tables[$tag]['length']; + $n = $length % 4; + if($n>0) + $length += 4 - $n; + $this->tables[$tag]['data'] = $this->Read($length); + } + + function SetTable($tag, $data) + { + $length = strlen($data); + $n = $length % 4; + if($n>0) + $data = str_pad($data, $length+4-$n, "\x00"); + $this->tables[$tag]['data'] = $data; + $this->tables[$tag]['length'] = $length; + $this->tables[$tag]['checkSum'] = $this->CheckSum($data); + } + + function Seek($tag) + { + if(!isset($this->tables[$tag])) + $this->Error('Table not found: '.$tag); + fseek($this->f, $this->tables[$tag]['offset'], SEEK_SET); + } + + function Skip($n) + { + fseek($this->f, $n, SEEK_CUR); + } + + function Read($n) + { + return $n>0 ? fread($this->f, $n) : ''; + } + + function ReadUShort() + { + $a = unpack('nn', fread($this->f,2)); + return $a['n']; + } + + function ReadShort() + { + $a = unpack('nn', fread($this->f,2)); + $v = $a['n']; + if($v>=0x8000) + $v -= 65536; + return $v; + } + + function ReadULong() + { + $a = unpack('NN', fread($this->f,4)); + return $a['N']; + } + + function CheckSum($s) + { + $n = strlen($s); + $high = 0; + $low = 0; + for($i=0;$i<$n;$i+=4) + { + $high += (ord($s[$i])<<8) + ord($s[$i+1]); + $low += (ord($s[$i+2])<<8) + ord($s[$i+3]); + } + return pack('nn', $high+($low>>16), $low); + } + + function Error($msg) + { + throw new Exception($msg); + } +} +?> diff --git a/backend/libs/fpdf/o/o/o/o/SmallLogo.altform-lightunplated.png b/backend/libs/fpdf/o/o/o/o/SmallLogo.altform-lightunplated.png new file mode 100644 index 0000000000000000000000000000000000000000..4569f6b5a20e296948686392342534e02af9c251 GIT binary patch literal 570 zcmeAS@N?(olHy`uVBq!ia0vp^Iv~u!1|;QLq8Nb`V{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%G}c0*}aI1_o|n5N2eUHAe!d;k>7dV@QPi+iN?$m;*)F9@rbJ9n+b$!zD0A zDKjSU$SJoZ)rgy!ua$2^-TK8b?G-mi7@M?rph<@EyAHRQ&9f{z<17-2XLJ^>6WSrq z^RQj>-+{T+eaU6Hds?&>UCh54(3%9Q6 z(qyka1zT7bbK6d-_`O=(qTe>)k?Zu|f*jSFAFsHp&(_ibp{HA?)f-N@;TinM(pf62 z`po~|zg-1eTYf&^@U42tHG^N_^r2nr7T?MQ+k^Rw+hqoZBjAEmq&n|a)3>3Y_eR^7)dx`fteUSN+;msLG* z`H9p066>X(LPH{SoRc(v@os$5k@|f370GG7q9Am3+M#<3q-B}UF6*y2&bRH(;b!Bz z9eRAhkB)}%3Etnc|`D^}YZA literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/SmallLogo.altform-lightunplated_targetsize-256.png b/backend/libs/fpdf/o/o/o/o/SmallLogo.altform-lightunplated_targetsize-256.png new file mode 100644 index 0000000000000000000000000000000000000000..28f0be6d12e5076655a7bfc7bb2beb24dcb066e7 GIT binary patch literal 1660 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5893O0R7}x|G!U;i$lZxy-8q?;Kn_c~qpu?a z!^VE@KZ&eBK4*bPWHAE+w=f7ZGR&GI!N9;K=;`7ZQW5v|?*8n%U*(Q}Jil_AukhpE zTOK`E)dF6tY6WG6TyShsQ0fqgk=3z?D|mll;qC_-U--nW?mjJYbeZsA!Gr!JLDLLf zm8(+CE2VlpFS}L8*ws6nEAX;^{bJ@-<^+W5Av!;;vq>H;1N3NsiS z3>X^{m>3SSFf?&8un047s4)om46sDR^BXg7=GEri`*bL3=eD2evAMfnKgdljsadgZ z+uHScQ|Igd3k<*gjpu%pTKch9S@#`S6JEY~x@qga*zntGa(~<hDnQFexU;63zsj%4G>IXYJi_R}@F3kS-<7d>*Z+EBe zx>a`jNI>PAsVjHgG7n&!VZSlpnwUAzoQaQvQ>*g!tlOr0ZvC|4<#ksDSKV~dDs27dUsdP-F0i*y;%M5UD2gmbK}!j^pv^1&WcXY-(K?W z{<_t*%%Tl554WHC@L}JsTi-rbb3eVUuXpw8Hg-A7fO!>V%hqkn&5P6Iey)Gzs+~GG zg_s4XA80(;xvBj8JfM!3|Ibh7PM`id>-NIMlT*JPJzTo=?W?WXPcMD)ihV1+f`Mle zFr-dB`jZu#JA0nAzI&hl)uU&Ra8i`wo;f>KZvjU4v~zLmR@c}4d2s#H>+8}$i~H*P zrc}?{w|L#ZnO3{@^Yp%3*FE=xJS<(Gv2Kw2TldoI=Zmxd>MfsK-THRZ-jCt2xwmbL zyl+}x`+xh-$$D9>?eY>m`t5rISr)iwcT1=KJK_|3$LE>f*(n=ePTX~a6A}i4AeR86 zd&9Yn#+&c{I>Wa{H*d;MVeZne=Z)9fM#)uuONh<={c3Ob)4$v8)~~KdxSsLF#a^xh z-sm!R0c$_#s<8H}v*q(&{F-z;q1H2wd3 zW5WOY*zezer#5BFx@~_;^7iWNE8e;8U*(UhCyk6YZr3YwVyH5)*|YwPj9p0h|Cm4j z+Bg0BtPf1xf7V%_KKT3H+ST=9=i)VH&klc;q>jj$?-{DDyev7jF81&HXJ21m_ug(T qQ7^TB^X%!sQgARu>zbf{Y~7cBdQN!Xln1Oa7(8A5T-G@yGywq9kXp|G literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/SmallLogo.altform-unplated.png b/backend/libs/fpdf/o/o/o/o/SmallLogo.altform-unplated.png new file mode 100644 index 0000000000000000000000000000000000000000..4569f6b5a20e296948686392342534e02af9c251 GIT binary patch literal 570 zcmeAS@N?(olHy`uVBq!ia0vp^Iv~u!1|;QLq8Nb`V{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%G}c0*}aI1_o|n5N2eUHAe!d;k>7dV@QPi+iN?$m;*)F9@rbJ9n+b$!zD0A zDKjSU$SJoZ)rgy!ua$2^-TK8b?G-mi7@M?rph<@EyAHRQ&9f{z<17-2XLJ^>6WSrq z^RQj>-+{T+eaU6Hds?&>UCh54(3%9Q6 z(qyka1zT7bbK6d-_`O=(qTe>)k?Zu|f*jSFAFsHp&(_ibp{HA?)f-N@;TinM(pf62 z`po~|zg-1eTYf&^@U42tHG^N_^r2nr7T?MQ+k^Rw+hqoZBjAEmq&n|a)3>3Y_eR^7)dx`fteUSN+;msLG* z`H9p066>X(LPH{SoRc(v@os$5k@|f370GG7q9Am3+M#<3q-B}UF6*y2&bRH(;b!Bz z9eRAhkB)}%3Etnc|`D^}YZA literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/SmallLogo.altform-unplated_targetsize-256.png b/backend/libs/fpdf/o/o/o/o/SmallLogo.altform-unplated_targetsize-256.png new file mode 100644 index 0000000000000000000000000000000000000000..28f0be6d12e5076655a7bfc7bb2beb24dcb066e7 GIT binary patch literal 1660 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5893O0R7}x|G!U;i$lZxy-8q?;Kn_c~qpu?a z!^VE@KZ&eBK4*bPWHAE+w=f7ZGR&GI!N9;K=;`7ZQW5v|?*8n%U*(Q}Jil_AukhpE zTOK`E)dF6tY6WG6TyShsQ0fqgk=3z?D|mll;qC_-U--nW?mjJYbeZsA!Gr!JLDLLf zm8(+CE2VlpFS}L8*ws6nEAX;^{bJ@-<^+W5Av!;;vq>H;1N3NsiS z3>X^{m>3SSFf?&8un047s4)om46sDR^BXg7=GEri`*bL3=eD2evAMfnKgdljsadgZ z+uHScQ|Igd3k<*gjpu%pTKch9S@#`S6JEY~x@qga*zntGa(~<hDnQFexU;63zsj%4G>IXYJi_R}@F3kS-<7d>*Z+EBe zx>a`jNI>PAsVjHgG7n&!VZSlpnwUAzoQaQvQ>*g!tlOr0ZvC|4<#ksDSKV~dDs27dUsdP-F0i*y;%M5UD2gmbK}!j^pv^1&WcXY-(K?W z{<_t*%%Tl554WHC@L}JsTi-rbb3eVUuXpw8Hg-A7fO!>V%hqkn&5P6Iey)Gzs+~GG zg_s4XA80(;xvBj8JfM!3|Ibh7PM`id>-NIMlT*JPJzTo=?W?WXPcMD)ihV1+f`Mle zFr-dB`jZu#JA0nAzI&hl)uU&Ra8i`wo;f>KZvjU4v~zLmR@c}4d2s#H>+8}$i~H*P zrc}?{w|L#ZnO3{@^Yp%3*FE=xJS<(Gv2Kw2TldoI=Zmxd>MfsK-THRZ-jCt2xwmbL zyl+}x`+xh-$$D9>?eY>m`t5rISr)iwcT1=KJK_|3$LE>f*(n=ePTX~a6A}i4AeR86 zd&9Yn#+&c{I>Wa{H*d;MVeZne=Z)9fM#)uuONh<={c3Ob)4$v8)~~KdxSsLF#a^xh z-sm!R0c$_#s<8H}v*q(&{F-z;q1H2wd3 zW5WOY*zezer#5BFx@~_;^7iWNE8e;8U*(UhCyk6YZr3YwVyH5)*|YwPj9p0h|Cm4j z+Bg0BtPf1xf7V%_KKT3H+ST=9=i)VH&klc;q>jj$?-{DDyev7jF81&HXJ21m_ug(T qQ7^TB^X%!sQgARu>zbf{Y~7cBdQN!Xln1Oa7(8A5T-G@yGywq9kXp|G literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-black.png b/backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-black.png new file mode 100644 index 0000000000000000000000000000000000000000..4569f6b5a20e296948686392342534e02af9c251 GIT binary patch literal 570 zcmeAS@N?(olHy`uVBq!ia0vp^Iv~u!1|;QLq8Nb`V{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%G}c0*}aI1_o|n5N2eUHAe!d;k>7dV@QPi+iN?$m;*)F9@rbJ9n+b$!zD0A zDKjSU$SJoZ)rgy!ua$2^-TK8b?G-mi7@M?rph<@EyAHRQ&9f{z<17-2XLJ^>6WSrq z^RQj>-+{T+eaU6Hds?&>UCh54(3%9Q6 z(qyka1zT7bbK6d-_`O=(qTe>)k?Zu|f*jSFAFsHp&(_ibp{HA?)f-N@;TinM(pf62 z`po~|zg-1eTYf&^@U42tHG^N_^r2nr7T?MQ+k^Rw+hqoZBjAEmq&n|a)3>3Y_eR^7)dx`fteUSN+;msLG* z`H9p066>X(LPH{SoRc(v@os$5k@|f370GG7q9Am3+M#<3q-B}UF6*y2&bRH(;b!Bz z9eRAhkB)}%3Etnc|`D^}YZA literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-black_altform-unplated_targetsize-256.png b/backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-black_altform-unplated_targetsize-256.png new file mode 100644 index 0000000000000000000000000000000000000000..28f0be6d12e5076655a7bfc7bb2beb24dcb066e7 GIT binary patch literal 1660 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5893O0R7}x|G!U;i$lZxy-8q?;Kn_c~qpu?a z!^VE@KZ&eBK4*bPWHAE+w=f7ZGR&GI!N9;K=;`7ZQW5v|?*8n%U*(Q}Jil_AukhpE zTOK`E)dF6tY6WG6TyShsQ0fqgk=3z?D|mll;qC_-U--nW?mjJYbeZsA!Gr!JLDLLf zm8(+CE2VlpFS}L8*ws6nEAX;^{bJ@-<^+W5Av!;;vq>H;1N3NsiS z3>X^{m>3SSFf?&8un047s4)om46sDR^BXg7=GEri`*bL3=eD2evAMfnKgdljsadgZ z+uHScQ|Igd3k<*gjpu%pTKch9S@#`S6JEY~x@qga*zntGa(~<hDnQFexU;63zsj%4G>IXYJi_R}@F3kS-<7d>*Z+EBe zx>a`jNI>PAsVjHgG7n&!VZSlpnwUAzoQaQvQ>*g!tlOr0ZvC|4<#ksDSKV~dDs27dUsdP-F0i*y;%M5UD2gmbK}!j^pv^1&WcXY-(K?W z{<_t*%%Tl554WHC@L}JsTi-rbb3eVUuXpw8Hg-A7fO!>V%hqkn&5P6Iey)Gzs+~GG zg_s4XA80(;xvBj8JfM!3|Ibh7PM`id>-NIMlT*JPJzTo=?W?WXPcMD)ihV1+f`Mle zFr-dB`jZu#JA0nAzI&hl)uU&Ra8i`wo;f>KZvjU4v~zLmR@c}4d2s#H>+8}$i~H*P zrc}?{w|L#ZnO3{@^Yp%3*FE=xJS<(Gv2Kw2TldoI=Zmxd>MfsK-THRZ-jCt2xwmbL zyl+}x`+xh-$$D9>?eY>m`t5rISr)iwcT1=KJK_|3$LE>f*(n=ePTX~a6A}i4AeR86 zd&9Yn#+&c{I>Wa{H*d;MVeZne=Z)9fM#)uuONh<={c3Ob)4$v8)~~KdxSsLF#a^xh z-sm!R0c$_#s<8H}v*q(&{F-z;q1H2wd3 zW5WOY*zezer#5BFx@~_;^7iWNE8e;8U*(UhCyk6YZr3YwVyH5)*|YwPj9p0h|Cm4j z+Bg0BtPf1xf7V%_KKT3H+ST=9=i)VH&klc;q>jj$?-{DDyev7jF81&HXJ21m_ug(T qQ7^TB^X%!sQgARu>zbf{Y~7cBdQN!Xln1Oa7(8A5T-G@yGywq9kXp|G literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-high.png b/backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-high.png new file mode 100644 index 0000000000000000000000000000000000000000..4569f6b5a20e296948686392342534e02af9c251 GIT binary patch literal 570 zcmeAS@N?(olHy`uVBq!ia0vp^Iv~u!1|;QLq8Nb`V{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%G}c0*}aI1_o|n5N2eUHAe!d;k>7dV@QPi+iN?$m;*)F9@rbJ9n+b$!zD0A zDKjSU$SJoZ)rgy!ua$2^-TK8b?G-mi7@M?rph<@EyAHRQ&9f{z<17-2XLJ^>6WSrq z^RQj>-+{T+eaU6Hds?&>UCh54(3%9Q6 z(qyka1zT7bbK6d-_`O=(qTe>)k?Zu|f*jSFAFsHp&(_ibp{HA?)f-N@;TinM(pf62 z`po~|zg-1eTYf&^@U42tHG^N_^r2nr7T?MQ+k^Rw+hqoZBjAEmq&n|a)3>3Y_eR^7)dx`fteUSN+;msLG* z`H9p066>X(LPH{SoRc(v@os$5k@|f370GG7q9Am3+M#<3q-B}UF6*y2&bRH(;b!Bz z9eRAhkB)}%3Etnc|`D^}YZA literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-high_altform-unplated_targetsize-256.png b/backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-high_altform-unplated_targetsize-256.png new file mode 100644 index 0000000000000000000000000000000000000000..28f0be6d12e5076655a7bfc7bb2beb24dcb066e7 GIT binary patch literal 1660 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5893O0R7}x|G!U;i$lZxy-8q?;Kn_c~qpu?a z!^VE@KZ&eBK4*bPWHAE+w=f7ZGR&GI!N9;K=;`7ZQW5v|?*8n%U*(Q}Jil_AukhpE zTOK`E)dF6tY6WG6TyShsQ0fqgk=3z?D|mll;qC_-U--nW?mjJYbeZsA!Gr!JLDLLf zm8(+CE2VlpFS}L8*ws6nEAX;^{bJ@-<^+W5Av!;;vq>H;1N3NsiS z3>X^{m>3SSFf?&8un047s4)om46sDR^BXg7=GEri`*bL3=eD2evAMfnKgdljsadgZ z+uHScQ|Igd3k<*gjpu%pTKch9S@#`S6JEY~x@qga*zntGa(~<hDnQFexU;63zsj%4G>IXYJi_R}@F3kS-<7d>*Z+EBe zx>a`jNI>PAsVjHgG7n&!VZSlpnwUAzoQaQvQ>*g!tlOr0ZvC|4<#ksDSKV~dDs27dUsdP-F0i*y;%M5UD2gmbK}!j^pv^1&WcXY-(K?W z{<_t*%%Tl554WHC@L}JsTi-rbb3eVUuXpw8Hg-A7fO!>V%hqkn&5P6Iey)Gzs+~GG zg_s4XA80(;xvBj8JfM!3|Ibh7PM`id>-NIMlT*JPJzTo=?W?WXPcMD)ihV1+f`Mle zFr-dB`jZu#JA0nAzI&hl)uU&Ra8i`wo;f>KZvjU4v~zLmR@c}4d2s#H>+8}$i~H*P zrc}?{w|L#ZnO3{@^Yp%3*FE=xJS<(Gv2Kw2TldoI=Zmxd>MfsK-THRZ-jCt2xwmbL zyl+}x`+xh-$$D9>?eY>m`t5rISr)iwcT1=KJK_|3$LE>f*(n=ePTX~a6A}i4AeR86 zd&9Yn#+&c{I>Wa{H*d;MVeZne=Z)9fM#)uuONh<={c3Ob)4$v8)~~KdxSsLF#a^xh z-sm!R0c$_#s<8H}v*q(&{F-z;q1H2wd3 zW5WOY*zezer#5BFx@~_;^7iWNE8e;8U*(UhCyk6YZr3YwVyH5)*|YwPj9p0h|Cm4j z+Bg0BtPf1xf7V%_KKT3H+ST=9=i)VH&klc;q>jj$?-{DDyev7jF81&HXJ21m_ug(T qQ7^TB^X%!sQgARu>zbf{Y~7cBdQN!Xln1Oa7(8A5T-G@yGywq9kXp|G literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-white.png b/backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-white.png new file mode 100644 index 0000000000000000000000000000000000000000..4569f6b5a20e296948686392342534e02af9c251 GIT binary patch literal 570 zcmeAS@N?(olHy`uVBq!ia0vp^Iv~u!1|;QLq8Nb`V{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%G}c0*}aI1_o|n5N2eUHAe!d;k>7dV@QPi+iN?$m;*)F9@rbJ9n+b$!zD0A zDKjSU$SJoZ)rgy!ua$2^-TK8b?G-mi7@M?rph<@EyAHRQ&9f{z<17-2XLJ^>6WSrq z^RQj>-+{T+eaU6Hds?&>UCh54(3%9Q6 z(qyka1zT7bbK6d-_`O=(qTe>)k?Zu|f*jSFAFsHp&(_ibp{HA?)f-N@;TinM(pf62 z`po~|zg-1eTYf&^@U42tHG^N_^r2nr7T?MQ+k^Rw+hqoZBjAEmq&n|a)3>3Y_eR^7)dx`fteUSN+;msLG* z`H9p066>X(LPH{SoRc(v@os$5k@|f370GG7q9Am3+M#<3q-B}UF6*y2&bRH(;b!Bz z9eRAhkB)}%3Etnc|`D^}YZA literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-white_altform-unplated_targetsize-256.png b/backend/libs/fpdf/o/o/o/o/SmallLogo.contrast-white_altform-unplated_targetsize-256.png new file mode 100644 index 0000000000000000000000000000000000000000..28f0be6d12e5076655a7bfc7bb2beb24dcb066e7 GIT binary patch literal 1660 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5893O0R7}x|G!U;i$lZxy-8q?;Kn_c~qpu?a z!^VE@KZ&eBK4*bPWHAE+w=f7ZGR&GI!N9;K=;`7ZQW5v|?*8n%U*(Q}Jil_AukhpE zTOK`E)dF6tY6WG6TyShsQ0fqgk=3z?D|mll;qC_-U--nW?mjJYbeZsA!Gr!JLDLLf zm8(+CE2VlpFS}L8*ws6nEAX;^{bJ@-<^+W5Av!;;vq>H;1N3NsiS z3>X^{m>3SSFf?&8un047s4)om46sDR^BXg7=GEri`*bL3=eD2evAMfnKgdljsadgZ z+uHScQ|Igd3k<*gjpu%pTKch9S@#`S6JEY~x@qga*zntGa(~<hDnQFexU;63zsj%4G>IXYJi_R}@F3kS-<7d>*Z+EBe zx>a`jNI>PAsVjHgG7n&!VZSlpnwUAzoQaQvQ>*g!tlOr0ZvC|4<#ksDSKV~dDs27dUsdP-F0i*y;%M5UD2gmbK}!j^pv^1&WcXY-(K?W z{<_t*%%Tl554WHC@L}JsTi-rbb3eVUuXpw8Hg-A7fO!>V%hqkn&5P6Iey)Gzs+~GG zg_s4XA80(;xvBj8JfM!3|Ibh7PM`id>-NIMlT*JPJzTo=?W?WXPcMD)ihV1+f`Mle zFr-dB`jZu#JA0nAzI&hl)uU&Ra8i`wo;f>KZvjU4v~zLmR@c}4d2s#H>+8}$i~H*P zrc}?{w|L#ZnO3{@^Yp%3*FE=xJS<(Gv2Kw2TldoI=Zmxd>MfsK-THRZ-jCt2xwmbL zyl+}x`+xh-$$D9>?eY>m`t5rISr)iwcT1=KJK_|3$LE>f*(n=ePTX~a6A}i4AeR86 zd&9Yn#+&c{I>Wa{H*d;MVeZne=Z)9fM#)uuONh<={c3Ob)4$v8)~~KdxSsLF#a^xh z-sm!R0c$_#s<8H}v*q(&{F-z;q1H2wd3 zW5WOY*zezer#5BFx@~_;^7iWNE8e;8U*(UhCyk6YZr3YwVyH5)*|YwPj9p0h|Cm4j z+Bg0BtPf1xf7V%_KKT3H+ST=9=i)VH&klc;q>jj$?-{DDyev7jF81&HXJ21m_ug(T qQ7^TB^X%!sQgARu>zbf{Y~7cBdQN!Xln1Oa7(8A5T-G@yGywq9kXp|G literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/SmallLogo.png b/backend/libs/fpdf/o/o/o/o/SmallLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..4569f6b5a20e296948686392342534e02af9c251 GIT binary patch literal 570 zcmeAS@N?(olHy`uVBq!ia0vp^Iv~u!1|;QLq8Nb`V{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%G}c0*}aI1_o|n5N2eUHAe!d;k>7dV@QPi+iN?$m;*)F9@rbJ9n+b$!zD0A zDKjSU$SJoZ)rgy!ua$2^-TK8b?G-mi7@M?rph<@EyAHRQ&9f{z<17-2XLJ^>6WSrq z^RQj>-+{T+eaU6Hds?&>UCh54(3%9Q6 z(qyka1zT7bbK6d-_`O=(qTe>)k?Zu|f*jSFAFsHp&(_ibp{HA?)f-N@;TinM(pf62 z`po~|zg-1eTYf&^@U42tHG^N_^r2nr7T?MQ+k^Rw+hqoZBjAEmq&n|a)3>3Y_eR^7)dx`fteUSN+;msLG* z`H9p066>X(LPH{SoRc(v@os$5k@|f370GG7q9Am3+M#<3q-B}UF6*y2&bRH(;b!Bz z9eRAhkB)}%3Etnc|`D^}YZA literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/SmallLogo.scale-200.png b/backend/libs/fpdf/o/o/o/o/SmallLogo.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..91f96a48e15d3755512c96e79966c9e171bddbc4 GIT binary patch literal 877 zcmeAS@N?(olHy`uVBq!ia0vp^5g^RL1|$oo8khhn#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=G`DAk4@xYmNj112dDSi(^Pd+}k_ny)PHa9RK)z&bpmjzg?a4 zllhj2wpY+1D{iHV?iUxfI!|A)U!j9f@ryW1tX0X2OPaell`8a|4lfciXRcr3y+8Zy z>pvgwW__@$ll=0tEdY;Ndw&h-i!{ zxL?k9bmRBZnck_7gmOQBH!tVU3c9!ImC^JKNkZORUKxpdBvhZB*t=de_F0knE|qy% zms6KT*-bd~dy!tT?et4YUsX$Ha;p?1uG9FuKCEP>baheWnmPN`Q^jRwR{wIHzVl*r zMSvfqr;erS8hqJmb<-dLZc=hVhMK=3?`%T|2EM4*FX6Q=^ zk5@*UC$B$oX0iXSJ#%kxzcalqdj0w0!k))1`b9`qF5K(8I^S(+T-U2l*NXl*JehJn zK3!jFtNhvh-_<9Tsa}#jx4ZWO)A#T5CZFT;p1ytQQ_-7ifBinT;#);b8{6hxdvf33 w*tF|kuy|NTqrcX?=7SOvJ&pK@g)aY?{%IsheY0H`4a_18p00i_>zopr05c|){{R30 literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/SmallLogo.scale-400.png b/backend/libs/fpdf/o/o/o/o/SmallLogo.scale-400.png new file mode 100644 index 0000000000000000000000000000000000000000..cfe06b672d16a16374a7dbc667c0ca41b83b3961 GIT binary patch literal 1299 zcmeAS@N?(olHy`uVBq!ia0vp^8$g(Y4M?uv{v-}aF%}28J29*~C-V}>VM%xNb!1@J z*w6hZkrl}2EbxddW?@sIh-VlQ90VRd`$ z>nmF}N1aqty7KlxOJLQ_TpqUOyE13?JAQcJc;mi7;%?4EdiVBBF)EPTCYti%(5qLs zR=nP2dhXhq%pmE_e;-s!oRRzX`Gd{;`R~PBKJ9G%^lbWbfq75tc9bkiZdf7yM_-|{ zL9v&{NO#qIiHKEeZlxuk4v(nz-o3_R#&^-M+NGKNtLlGpy*_%#Pg?K$Z!Y~+4dUt9 z*Vfp76TNn!V*Xct@tW4HyRK|_y3;g1@o9IgnUUcGZJR!U31U};f80th-WHbogX{H+ zC*el`(xsPf%RIwJ?GJ4pyzI7ZGRhR+ZXTS1vJxV zlJ?)ptN$iX_;bba(`5D^`oNHLJ3tss+nK-E^mTu3;kIYmd++b7%;2w&`Yw8Hp7P#r zudJ(UmYN$GCj3mAzCPyxCr{=~?j4`cKliNueA0No)!PcY8I!($+VcHJef-J)YS~8R zEfKL1+h-Pw#{bxUk~{Ua{M)Znd1Vw8Xqe!BH*Wv9BBxwE8)jEgM%V0>jl`|MvI! z_diaR^MCOC#I>;7QL|?U?wRzxX}NNO2SIfD&i0Gfrbm~(KCK%6vUi_(g1)@|FRs`9 z(xuTmqCQW(H+y;e+VT~*!_89k9yl#LeyaU=&C>9_-&e1-`EfZsqPaSL)1`mcfkHcN z^LvlA0Rx$XF>_`$)AQZC-yYbP82|F`zM#!p-Am&WzrNMGrQOWD@6zt-`jfNPPFtUI qBIZEFzJitp6Q(vAA%o5P8B_Ocabc?dsst>^7(8A5T-G@yGywqEfm9s; literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/SplashScreen.png b/backend/libs/fpdf/o/o/o/o/SplashScreen.png new file mode 100644 index 0000000000000000000000000000000000000000..1a775f9f1e72d27ca3544c6dede177d7a543a089 GIT binary patch literal 76339 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�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 literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/o/o/o/o/StoreLogo.png b/backend/libs/fpdf/o/o/o/o/StoreLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..d08d449be773f232bb27ffcde85e610ef88a3280 GIT binary patch literal 615 zcmeAS@N?(olHy`uVBq!ia0vp^DImQL70(Y)*K0-hCiMzjv*CsZ*LoV$tFs;JzO2VLCD2r_5u#E zi&jc0j4xHfrspWEZEbDMHB$)l+NGnQ5arJ8$Ya)Zf_3$Rbq>1wjN<-1YW*+roblt^ zvsy4Lo2tI><+;{2apzm8nnv;FgGprrkJMLZ@U+xJnuO+I{DcB;(3 zAFceXG$UN3myV*{Of-SgxJAap&)qVaLwitzFwwF~Q`Q@dpzO<4bn) zXV!B6egAJo*s(|3XGT3Klt-}U)Q$PXxntYtlsCshs$m3Y~AZ$eE6^Ua{raMTQbYwePm__v9;U~S7uM&0S_(==44$rjF6*2U FngCO{?HJJgzua8UhFpZIt6BBfAePE%)EIs@2#DrNoSPyTOyw9 zt%}q|-_OHjY%WjABFE1E6#dkE;Wsy;V{bT66XZrK~!TOVy@vO;$ zye+#%fIhnn3CY7#!e;@`B5(<~0=xuV2W~*S1$+hg8qkp^zss)}mVkevj~3)um1TL) zdy2lPNKdCOTKSU2s+Ai*#$O3uM5EH5;Zb^U)UROm)RkW9Cp-Mbt}bw<0)_pdD%A5ouX`Aa~_Uxi4R+Y*%go zzmc!e@%wU1<)1^sId||a@~O%{ldr(I6zW{WY=q{57nIurV+fr$o?5|*t zH|y*Q4_(ogwR#Pl2XAf2-+?zL|4?^|I?gR?9M>CiyB~*{+)4dW)DN=#;n8q=G&quW z;>YoLG>ZK!Y6oc;4vabaTS{e|$$d;`(mt;FF2<1;as}`dQxiF~U2% zalR$P~k`hEF)rq<`X*blzHXhQ#EeKf91h<=Om;cps8tb0=j z+Y|eAu?Axt`kK`TT!W)=f4x}{$7C>X{UhfTNWXhJ{$PsV810qMIVI+t(C4f?y6WG2 eG2Xk%UYi%sl|%ch3!9T?rziY>z`q0hzwi&OCr8i# literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/tfpdf.php b/backend/libs/fpdf/tfpdf.php new file mode 100644 index 0000000..171f2a8 --- /dev/null +++ b/backend/libs/fpdf/tfpdf.php @@ -0,0 +1,2371 @@ + * +* Tycho Veltmeijer (versions 1.30+) * +* License: LGPL * +*******************************************************************************/ + +class tFPDF +{ +const VERSION = '1.33'; +protected $unifontSubset; +protected $page; // current page number +protected $n; // current object number +protected $offsets; // array of object offsets +protected $buffer; // buffer holding in-memory PDF +protected $pages; // array containing pages +protected $state; // current document state +protected $compress; // compression flag +protected $k; // scale factor (number of points in user unit) +protected $DefOrientation; // default orientation +protected $CurOrientation; // current orientation +protected $StdPageSizes; // standard page sizes +protected $DefPageSize; // default page size +protected $CurPageSize; // current page size +protected $CurRotation; // current page rotation +protected $PageInfo; // page-related data +protected $wPt, $hPt; // dimensions of current page in points +protected $w, $h; // dimensions of current page in user unit +protected $lMargin; // left margin +protected $tMargin; // top margin +protected $rMargin; // right margin +protected $bMargin; // page break margin +protected $cMargin; // cell margin +protected $x, $y; // current position in user unit +protected $lasth; // height of last printed cell +protected $LineWidth; // line width in user unit +protected $fontpath; // path containing fonts +protected $CoreFonts; // array of core font names +protected $fonts; // array of used fonts +protected $FontFiles; // array of font files +protected $encodings; // array of encodings +protected $cmaps; // array of ToUnicode CMaps +protected $FontFamily; // current font family +protected $FontStyle; // current font style +protected $underline; // underlining flag +protected $CurrentFont; // current font info +protected $FontSizePt; // current font size in points +protected $FontSize; // current font size in user unit +protected $DrawColor; // commands for drawing color +protected $FillColor; // commands for filling color +protected $TextColor; // commands for text color +protected $ColorFlag; // indicates whether fill and text colors are different +protected $WithAlpha; // indicates whether alpha channel is used +protected $ws; // word spacing +protected $images; // array of used images +protected $PageLinks; // array of links in pages +protected $links; // array of internal links +protected $AutoPageBreak; // automatic page breaking +protected $PageBreakTrigger; // threshold used to trigger page breaks +protected $InHeader; // flag set when processing header +protected $InFooter; // flag set when processing footer +protected $AliasNbPages; // alias for total number of pages +protected $ZoomMode; // zoom display mode +protected $LayoutMode; // layout display mode +protected $metadata; // document properties +protected $CreationDate; // document creation date +protected $PDFVersion; // PDF version number + +/******************************************************************************* +* Public methods * +*******************************************************************************/ + +function __construct($orientation='P', $unit='mm', $size='A4') +{ + // Some checks + $this->_dochecks(); + // Initialization of properties + $this->state = 0; + $this->page = 0; + $this->n = 2; + $this->buffer = ''; + $this->pages = array(); + $this->PageInfo = array(); + $this->fonts = array(); + $this->FontFiles = array(); + $this->encodings = array(); + $this->cmaps = array(); + $this->images = array(); + $this->links = array(); + $this->InHeader = false; + $this->InFooter = false; + $this->lasth = 0; + $this->FontFamily = ''; + $this->FontStyle = ''; + $this->FontSizePt = 12; + $this->underline = false; + $this->DrawColor = '0 G'; + $this->FillColor = '0 g'; + $this->TextColor = '0 g'; + $this->ColorFlag = false; + $this->WithAlpha = false; + $this->ws = 0; + // Font path + if(defined('FPDF_FONTPATH')) + { + $this->fontpath = FPDF_FONTPATH; + if(substr($this->fontpath,-1)!='/' && substr($this->fontpath,-1)!='\\') + $this->fontpath .= '/'; + } + elseif(is_dir(dirname(__FILE__).'/font')) + $this->fontpath = dirname(__FILE__).'/font/'; + else + $this->fontpath = ''; + // Core fonts + $this->CoreFonts = array('courier', 'helvetica', 'times', 'symbol', 'zapfdingbats'); + // Scale factor + if($unit=='pt') + $this->k = 1; + elseif($unit=='mm') + $this->k = 72/25.4; + elseif($unit=='cm') + $this->k = 72/2.54; + elseif($unit=='in') + $this->k = 72; + else + $this->Error('Incorrect unit: '.$unit); + // Page sizes + $this->StdPageSizes = array('a3'=>array(841.89,1190.55), 'a4'=>array(595.28,841.89), 'a5'=>array(420.94,595.28), + 'letter'=>array(612,792), 'legal'=>array(612,1008)); + $size = $this->_getpagesize($size); + $this->DefPageSize = $size; + $this->CurPageSize = $size; + // Page orientation + $orientation = strtolower($orientation); + if($orientation=='p' || $orientation=='portrait') + { + $this->DefOrientation = 'P'; + $this->w = $size[0]; + $this->h = $size[1]; + } + elseif($orientation=='l' || $orientation=='landscape') + { + $this->DefOrientation = 'L'; + $this->w = $size[1]; + $this->h = $size[0]; + } + else + $this->Error('Incorrect orientation: '.$orientation); + $this->CurOrientation = $this->DefOrientation; + $this->wPt = $this->w*$this->k; + $this->hPt = $this->h*$this->k; + // Page rotation + $this->CurRotation = 0; + // Page margins (1 cm) + $margin = 28.35/$this->k; + $this->SetMargins($margin,$margin); + // Interior cell margin (1 mm) + $this->cMargin = $margin/10; + // Line width (0.2 mm) + $this->LineWidth = .567/$this->k; + // Automatic page break + $this->SetAutoPageBreak(true,2*$margin); + // Default display mode + $this->SetDisplayMode('default'); + // Enable compression + $this->SetCompression(true); + // Metadata + $this->metadata = array('Producer'=>'tFPDF '.self::VERSION); + // Set default PDF version number + $this->PDFVersion = '1.3'; +} + +function SetMargins($left, $top, $right=null) +{ + // Set left, top and right margins + $this->lMargin = $left; + $this->tMargin = $top; + if($right===null) + $right = $left; + $this->rMargin = $right; +} + +function SetLeftMargin($margin) +{ + // Set left margin + $this->lMargin = $margin; + if($this->page>0 && $this->x<$margin) + $this->x = $margin; +} + +function SetTopMargin($margin) +{ + // Set top margin + $this->tMargin = $margin; +} + +function SetRightMargin($margin) +{ + // Set right margin + $this->rMargin = $margin; +} + +function SetAutoPageBreak($auto, $margin=0) +{ + // Set auto page break mode and triggering margin + $this->AutoPageBreak = $auto; + $this->bMargin = $margin; + $this->PageBreakTrigger = $this->h-$margin; +} + +function SetDisplayMode($zoom, $layout='default') +{ + // Set display mode in viewer + if($zoom=='fullpage' || $zoom=='fullwidth' || $zoom=='real' || $zoom=='default' || !is_string($zoom)) + $this->ZoomMode = $zoom; + else + $this->Error('Incorrect zoom display mode: '.$zoom); + if($layout=='single' || $layout=='continuous' || $layout=='two' || $layout=='default') + $this->LayoutMode = $layout; + else + $this->Error('Incorrect layout display mode: '.$layout); +} + +function SetCompression($compress) +{ + // Set page compression + if(function_exists('gzcompress')) + $this->compress = $compress; + else + $this->compress = false; +} + +function SetTitle($title, $isUTF8=false) +{ + // Title of document + $this->metadata['Title'] = $isUTF8 ? $title : $this->_UTF8encode($title); +} + +function SetAuthor($author, $isUTF8=false) +{ + // Author of document + $this->metadata['Author'] = $isUTF8 ? $author : $this->_UTF8encode($author); +} + +function SetSubject($subject, $isUTF8=false) +{ + // Subject of document + $this->metadata['Subject'] = $isUTF8 ? $subject : $this->_UTF8encode($subject); +} + +function SetKeywords($keywords, $isUTF8=false) +{ + // Keywords of document + $this->metadata['Keywords'] = $isUTF8 ? $keywords : $this->_UTF8encode($keywords); +} + +function SetCreator($creator, $isUTF8=false) +{ + // Creator of document + $this->metadata['Creator'] = $isUTF8 ? $creator : $this->_UTF8encode($creator); +} + +function AliasNbPages($alias='{nb}') +{ + // Define an alias for total number of pages + $this->AliasNbPages = $alias; +} + +function Error($msg) +{ + // Fatal error + throw new Exception('tFPDF error: '.$msg); +} + +function Close() +{ + // Terminate document + if($this->state==3) + return; + if($this->page==0) + $this->AddPage(); + // Page footer + $this->InFooter = true; + $this->Footer(); + $this->InFooter = false; + // Close page + $this->_endpage(); + // Close document + $this->_enddoc(); +} + +function AddPage($orientation='', $size='', $rotation=0) +{ + // Start a new page + if($this->state==3) + $this->Error('The document is closed'); + $family = $this->FontFamily; + $style = $this->FontStyle.($this->underline ? 'U' : ''); + $fontsize = $this->FontSizePt; + $lw = $this->LineWidth; + $dc = $this->DrawColor; + $fc = $this->FillColor; + $tc = $this->TextColor; + $cf = $this->ColorFlag; + if($this->page>0) + { + // Page footer + $this->InFooter = true; + $this->Footer(); + $this->InFooter = false; + // Close page + $this->_endpage(); + } + // Start new page + $this->_beginpage($orientation,$size,$rotation); + // Set line cap style to square + $this->_out('2 J'); + // Set line width + $this->LineWidth = $lw; + $this->_out(sprintf('%.2F w',$lw*$this->k)); + // Set font + if($family) + $this->SetFont($family,$style,$fontsize); + // Set colors + $this->DrawColor = $dc; + if($dc!='0 G') + $this->_out($dc); + $this->FillColor = $fc; + if($fc!='0 g') + $this->_out($fc); + $this->TextColor = $tc; + $this->ColorFlag = $cf; + // Page header + $this->InHeader = true; + $this->Header(); + $this->InHeader = false; + // Restore line width + if($this->LineWidth!=$lw) + { + $this->LineWidth = $lw; + $this->_out(sprintf('%.2F w',$lw*$this->k)); + } + // Restore font + if($family) + $this->SetFont($family,$style,$fontsize); + // Restore colors + if($this->DrawColor!=$dc) + { + $this->DrawColor = $dc; + $this->_out($dc); + } + if($this->FillColor!=$fc) + { + $this->FillColor = $fc; + $this->_out($fc); + } + $this->TextColor = $tc; + $this->ColorFlag = $cf; +} + +function Header() +{ + // To be implemented in your own inherited class +} + +function Footer() +{ + // To be implemented in your own inherited class +} + +function PageNo() +{ + // Get current page number + return $this->page; +} + +function SetDrawColor($r, $g=null, $b=null) +{ + // Set color for all stroking operations + if(($r==0 && $g==0 && $b==0) || $g===null) + $this->DrawColor = sprintf('%.3F G',$r/255); + else + $this->DrawColor = sprintf('%.3F %.3F %.3F RG',$r/255,$g/255,$b/255); + if($this->page>0) + $this->_out($this->DrawColor); +} + +function SetFillColor($r, $g=null, $b=null) +{ + // Set color for all filling operations + if(($r==0 && $g==0 && $b==0) || $g===null) + $this->FillColor = sprintf('%.3F g',$r/255); + else + $this->FillColor = sprintf('%.3F %.3F %.3F rg',$r/255,$g/255,$b/255); + $this->ColorFlag = ($this->FillColor!=$this->TextColor); + if($this->page>0) + $this->_out($this->FillColor); +} + +function SetTextColor($r, $g=null, $b=null) +{ + // Set color for text + if(($r==0 && $g==0 && $b==0) || $g===null) + $this->TextColor = sprintf('%.3F g',$r/255); + else + $this->TextColor = sprintf('%.3F %.3F %.3F rg',$r/255,$g/255,$b/255); + $this->ColorFlag = ($this->FillColor!=$this->TextColor); +} + +function GetStringWidth($s) +{ + // Get width of a string in the current font + $s = (string)$s; + $cw = $this->CurrentFont['cw']; + $w=0; + if ($this->unifontSubset) { + $unicode = $this->UTF8StringToArray($s); + foreach($unicode as $char) { + if (isset($cw[2*$char])) { $w += (ord($cw[2*$char])<<8) + ord($cw[2*$char+1]); } + else if($char>0 && $char<128 && isset($cw[chr($char)])) { $w += $cw[chr($char)]; } + else if(isset($this->CurrentFont['desc']['MissingWidth'])) { $w += $this->CurrentFont['desc']['MissingWidth']; } + else if(isset($this->CurrentFont['MissingWidth'])) { $w += $this->CurrentFont['MissingWidth']; } + else { $w += 500; } + } + } + else { + $l = strlen($s); + for($i=0;$i<$l;$i++) + $w += $cw[$s[$i]]; + } + return $w*$this->FontSize/1000; +} + +function SetLineWidth($width) +{ + // Set line width + $this->LineWidth = $width; + if($this->page>0) + $this->_out(sprintf('%.2F w',$width*$this->k)); +} + +function Line($x1, $y1, $x2, $y2) +{ + // Draw a line + $this->_out(sprintf('%.2F %.2F m %.2F %.2F l S',$x1*$this->k,($this->h-$y1)*$this->k,$x2*$this->k,($this->h-$y2)*$this->k)); +} + +function Rect($x, $y, $w, $h, $style='') +{ + // Draw a rectangle + if($style=='F') + $op = 'f'; + elseif($style=='FD' || $style=='DF') + $op = 'B'; + else + $op = 'S'; + $this->_out(sprintf('%.2F %.2F %.2F %.2F re %s',$x*$this->k,($this->h-$y)*$this->k,$w*$this->k,-$h*$this->k,$op)); +} + +function AddFont($family, $style='', $file='', $uni=false) +{ + // Add a TrueType, OpenType or Type1 font + $family = strtolower($family); + $style = strtoupper($style); + if($style=='IB') + $style = 'BI'; + if($file=='') { + if ($uni) { + $file = str_replace(' ','',$family).strtolower($style).'.ttf'; + } + else { + $file = str_replace(' ','',$family).strtolower($style).'.php'; + } + } + $fontkey = $family.$style; + if(isset($this->fonts[$fontkey])) + return; + if ($uni) { + if (defined("_SYSTEM_TTFONTS") && file_exists(_SYSTEM_TTFONTS.$file )) { $ttffilename = _SYSTEM_TTFONTS.$file ; } + else { $ttffilename = $this->fontpath.'unifont/'.$file ; } + $unifilename = $this->fontpath.'unifont/'.strtolower(substr($file ,0,(strpos($file ,'.')))); + $name = ''; + $originalsize = 0; + $ttfstat = stat($ttffilename); + if (file_exists($unifilename.'.mtx.php')) { + include($unifilename.'.mtx.php'); + } + if (!isset($type) || !isset($name) || $originalsize != $ttfstat['size']) { + $ttffile = $ttffilename; + require_once($this->fontpath.'unifont/ttfonts.php'); + $ttf = new TTFontFile(); + $ttf->getMetrics($ttffile); + $cw = $ttf->charWidths; + $name = preg_replace('/[ ()]/','',$ttf->fullName); + + $desc= array('Ascent'=>round($ttf->ascent), + 'Descent'=>round($ttf->descent), + 'CapHeight'=>round($ttf->capHeight), + 'Flags'=>$ttf->flags, + 'FontBBox'=>'['.round($ttf->bbox[0])." ".round($ttf->bbox[1])." ".round($ttf->bbox[2])." ".round($ttf->bbox[3]).']', + 'ItalicAngle'=>$ttf->italicAngle, + 'StemV'=>round($ttf->stemV), + 'MissingWidth'=>round($ttf->defaultWidth)); + $up = round($ttf->underlinePosition); + $ut = round($ttf->underlineThickness); + $originalsize = $ttfstat['size']+0; + $type = 'TTF'; + // Generate metrics .php file + $s='"; + if (is_writable(dirname($this->fontpath.'unifont/'.'x'))) { + $fh = fopen($unifilename.'.mtx.php',"w"); + fwrite($fh,$s,strlen($s)); + fclose($fh); + $fh = fopen($unifilename.'.cw.dat',"wb"); + fwrite($fh,$cw,strlen($cw)); + fclose($fh); + @unlink($unifilename.'.cw127.php'); + } + unset($ttf); + } + else { + $cw = @file_get_contents($unifilename.'.cw.dat'); + } + $i = count($this->fonts)+1; + if(!empty($this->AliasNbPages)) + $sbarr = range(0,57); + else + $sbarr = range(0,32); + $this->fonts[$fontkey] = array('i'=>$i, 'type'=>$type, 'name'=>$name, 'desc'=>$desc, 'up'=>$up, 'ut'=>$ut, 'cw'=>$cw, 'ttffile'=>$ttffile, 'fontkey'=>$fontkey, 'subset'=>$sbarr, 'unifilename'=>$unifilename); + + $this->FontFiles[$fontkey]=array('length1'=>$originalsize, 'type'=>"TTF", 'ttffile'=>$ttffile); + $this->FontFiles[$file]=array('type'=>"TTF"); + unset($cw); + } + else { + $info = $this->_loadfont($file); + $info['i'] = count($this->fonts)+1; + if(!empty($info['file'])) + { + // Embedded font + if($info['type']=='TrueType') + $this->FontFiles[$info['file']] = array('length1'=>$info['originalsize']); + else + $this->FontFiles[$info['file']] = array('length1'=>$info['size1'], 'length2'=>$info['size2']); + } + $this->fonts[$fontkey] = $info; + } +} + +function SetFont($family, $style='', $size=0) +{ + // Select a font; size given in points + if($family=='') + $family = $this->FontFamily; + else + $family = strtolower($family); + $style = strtoupper($style); + if(strpos($style,'U')!==false) + { + $this->underline = true; + $style = str_replace('U','',$style); + } + else + $this->underline = false; + if($style=='IB') + $style = 'BI'; + if($size==0) + $size = $this->FontSizePt; + // Test if font is already selected + if($this->FontFamily==$family && $this->FontStyle==$style && $this->FontSizePt==$size) + return; + + // Test if font is already loaded + $fontkey = $family.$style; + if(!isset($this->fonts[$fontkey])) + { + // Test if one of the core fonts + if($family=='arial') + $family = 'helvetica'; + if(in_array($family,$this->CoreFonts)) + { + if($family=='symbol' || $family=='zapfdingbats') + $style = ''; + $fontkey = $family.$style; + if(!isset($this->fonts[$fontkey])) + $this->AddFont($family,$style); + } + else + $this->Error('Undefined font: '.$family.' '.$style); + } + // Select it + $this->FontFamily = $family; + $this->FontStyle = $style; + $this->FontSizePt = $size; + $this->FontSize = $size/$this->k; + $this->CurrentFont = &$this->fonts[$fontkey]; + if ($this->fonts[$fontkey]['type']=='TTF') { $this->unifontSubset = true; } + else { $this->unifontSubset = false; } + if($this->page>0) + $this->_out(sprintf('BT /F%d %.2F Tf ET',$this->CurrentFont['i'],$this->FontSizePt)); +} + +function SetFontSize($size) +{ + // Set font size in points + if($this->FontSizePt==$size) + return; + $this->FontSizePt = $size; + $this->FontSize = $size/$this->k; + if($this->page>0) + $this->_out(sprintf('BT /F%d %.2F Tf ET',$this->CurrentFont['i'],$this->FontSizePt)); +} + +function AddLink() +{ + // Create a new internal link + $n = count($this->links)+1; + $this->links[$n] = array(0, 0); + return $n; +} + +function SetLink($link, $y=0, $page=-1) +{ + // Set destination of internal link + if($y==-1) + $y = $this->y; + if($page==-1) + $page = $this->page; + $this->links[$link] = array($page, $y); +} + +function Link($x, $y, $w, $h, $link) +{ + // Put a link on the page + $this->PageLinks[$this->page][] = array($x*$this->k, $this->hPt-$y*$this->k, $w*$this->k, $h*$this->k, $link); +} + +function Text($x, $y, $txt) +{ + // Output a string + $txt = (string)$txt; + if(!isset($this->CurrentFont)) + $this->Error('No font has been set'); + if ($this->unifontSubset) + { + $txt2 = '('.$this->_escape($this->UTF8ToUTF16BE($txt, false)).')'; + foreach($this->UTF8StringToArray($txt) as $uni) + $this->CurrentFont['subset'][$uni] = $uni; + } + else + $txt2 = '('.$this->_escape($txt).')'; + $s = sprintf('BT %.2F %.2F Td %s Tj ET',$x*$this->k,($this->h-$y)*$this->k,$txt2); + if($this->underline && $txt!='') + $s .= ' '.$this->_dounderline($x,$y,$txt); + if($this->ColorFlag) + $s = 'q '.$this->TextColor.' '.$s.' Q'; + $this->_out($s); +} + +function AcceptPageBreak() +{ + // Accept automatic page break or not + return $this->AutoPageBreak; +} + +function Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=false, $link='') +{ + // Output a cell + $txt = (string)$txt; + $k = $this->k; + if($this->y+$h>$this->PageBreakTrigger && !$this->InHeader && !$this->InFooter && $this->AcceptPageBreak()) + { + // Automatic page break + $x = $this->x; + $ws = $this->ws; + if($ws>0) + { + $this->ws = 0; + $this->_out('0 Tw'); + } + $this->AddPage($this->CurOrientation,$this->CurPageSize,$this->CurRotation); + $this->x = $x; + if($ws>0) + { + $this->ws = $ws; + $this->_out(sprintf('%.3F Tw',$ws*$k)); + } + } + if($w==0) + $w = $this->w-$this->rMargin-$this->x; + $s = ''; + if($fill || $border==1) + { + if($fill) + $op = ($border==1) ? 'B' : 'f'; + else + $op = 'S'; + $s = sprintf('%.2F %.2F %.2F %.2F re %s ',$this->x*$k,($this->h-$this->y)*$k,$w*$k,-$h*$k,$op); + } + if(is_string($border)) + { + $x = $this->x; + $y = $this->y; + if(strpos($border,'L')!==false) + $s .= sprintf('%.2F %.2F m %.2F %.2F l S ',$x*$k,($this->h-$y)*$k,$x*$k,($this->h-($y+$h))*$k); + if(strpos($border,'T')!==false) + $s .= sprintf('%.2F %.2F m %.2F %.2F l S ',$x*$k,($this->h-$y)*$k,($x+$w)*$k,($this->h-$y)*$k); + if(strpos($border,'R')!==false) + $s .= sprintf('%.2F %.2F m %.2F %.2F l S ',($x+$w)*$k,($this->h-$y)*$k,($x+$w)*$k,($this->h-($y+$h))*$k); + if(strpos($border,'B')!==false) + $s .= sprintf('%.2F %.2F m %.2F %.2F l S ',$x*$k,($this->h-($y+$h))*$k,($x+$w)*$k,($this->h-($y+$h))*$k); + } + if($txt!=='') + { + if(!isset($this->CurrentFont)) + $this->Error('No font has been set'); + if($align=='R') + $dx = $w-$this->cMargin-$this->GetStringWidth($txt); + elseif($align=='C') + $dx = ($w-$this->GetStringWidth($txt))/2; + else + $dx = $this->cMargin; + if($this->ColorFlag) + $s .= 'q '.$this->TextColor.' '; + // If multibyte, Tw has no effect - do word spacing using an adjustment before each space + if ($this->ws && $this->unifontSubset) { + foreach($this->UTF8StringToArray($txt) as $uni) + $this->CurrentFont['subset'][$uni] = $uni; + $space = $this->_escape($this->UTF8ToUTF16BE(' ', false)); + $s .= sprintf('BT 0 Tw %.2F %.2F Td [',($this->x+$dx)*$k,($this->h-($this->y+.5*$h+.3*$this->FontSize))*$k); + $t = explode(' ',$txt); + $numt = count($t); + for($i=0;$i<$numt;$i++) { + $tx = $t[$i]; + $tx = '('.$this->_escape($this->UTF8ToUTF16BE($tx, false)).')'; + $s .= sprintf('%s ',$tx); + if (($i+1)<$numt) { + $adj = -($this->ws*$this->k)*1000/$this->FontSizePt; + $s .= sprintf('%d(%s) ',$adj,$space); + } + } + $s .= '] TJ'; + $s .= ' ET'; + } + else { + if ($this->unifontSubset) + { + $txt2 = '('.$this->_escape($this->UTF8ToUTF16BE($txt, false)).')'; + foreach($this->UTF8StringToArray($txt) as $uni) + $this->CurrentFont['subset'][$uni] = $uni; + } + else + $txt2='('.$this->_escape($txt).')'; + $s .= sprintf('BT %.2F %.2F Td %s Tj ET',($this->x+$dx)*$k,($this->h-($this->y+.5*$h+.3*$this->FontSize))*$k,$txt2); + } + if($this->underline) + $s .= ' '.$this->_dounderline($this->x+$dx,$this->y+.5*$h+.3*$this->FontSize,$txt); + if($this->ColorFlag) + $s .= ' Q'; + if($link) + $this->Link($this->x+$dx,$this->y+.5*$h-.5*$this->FontSize,$this->GetStringWidth($txt),$this->FontSize,$link); + } + if($s) + $this->_out($s); + $this->lasth = $h; + if($ln>0) + { + // Go to next line + $this->y += $h; + if($ln==1) + $this->x = $this->lMargin; + } + else + $this->x += $w; +} + +function MultiCell($w, $h, $txt, $border=0, $align='J', $fill=false) +{ + // Output text with automatic or explicit line breaks + if(!isset($this->CurrentFont)) + $this->Error('No font has been set'); + $cw = $this->CurrentFont['cw']; + if($w==0) + $w = $this->w-$this->rMargin-$this->x; + $wmax = ($w-2*$this->cMargin); + //$wmax = ($w-2*$this->cMargin)*1000/$this->FontSize; + $s = str_replace("\r",'',(string)$txt); + if ($this->unifontSubset) { + $nb=mb_strlen($s, 'utf-8'); + while($nb>0 && mb_substr($s,$nb-1,1,'utf-8')=="\n") $nb--; + } + else { + $nb = strlen($s); + if($nb>0 && $s[$nb-1]=="\n") + $nb--; + } + $b = 0; + if($border) + { + if($border==1) + { + $border = 'LTRB'; + $b = 'LRT'; + $b2 = 'LR'; + } + else + { + $b2 = ''; + if(strpos($border,'L')!==false) + $b2 .= 'L'; + if(strpos($border,'R')!==false) + $b2 .= 'R'; + $b = (strpos($border,'T')!==false) ? $b2.'T' : $b2; + } + } + $sep = -1; + $i = 0; + $j = 0; + $l = 0; + $ns = 0; + $nl = 1; + while($i<$nb) + { + // Get next character + if ($this->unifontSubset) { + $c = mb_substr($s,$i,1,'UTF-8'); + } + else { + $c=$s[$i]; + } + if($c=="\n") + { + // Explicit line break + if($this->ws>0) + { + $this->ws = 0; + $this->_out('0 Tw'); + } + if ($this->unifontSubset) { + $this->Cell($w,$h,mb_substr($s,$j,$i-$j,'UTF-8'),$b,2,$align,$fill); + } + else { + $this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill); + } + $i++; + $sep = -1; + $j = $i; + $l = 0; + $ns = 0; + $nl++; + if($border && $nl==2) + $b = $b2; + continue; + } + if($c==' ') + { + $sep = $i; + $ls = $l; + $ns++; + } + + if ($this->unifontSubset) { $l += $this->GetStringWidth($c); } + else { $l += $cw[$c]*$this->FontSize/1000; } + + if($l>$wmax) + { + // Automatic line break + if($sep==-1) + { + if($i==$j) + $i++; + if($this->ws>0) + { + $this->ws = 0; + $this->_out('0 Tw'); + } + if ($this->unifontSubset) { + $this->Cell($w,$h,mb_substr($s,$j,$i-$j,'UTF-8'),$b,2,$align,$fill); + } + else { + $this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill); + } + } + else + { + if($align=='J') + { + $this->ws = ($ns>1) ? ($wmax-$ls)/($ns-1) : 0; + $this->_out(sprintf('%.3F Tw',$this->ws*$this->k)); + } + if ($this->unifontSubset) { + $this->Cell($w,$h,mb_substr($s,$j,$sep-$j,'UTF-8'),$b,2,$align,$fill); + } + else { + $this->Cell($w,$h,substr($s,$j,$sep-$j),$b,2,$align,$fill); + } + $i = $sep+1; + } + $sep = -1; + $j = $i; + $l = 0; + $ns = 0; + $nl++; + if($border && $nl==2) + $b = $b2; + } + else + $i++; + } + // Last chunk + if($this->ws>0) + { + $this->ws = 0; + $this->_out('0 Tw'); + } + if($border && strpos($border,'B')!==false) + $b .= 'B'; + if ($this->unifontSubset) { + $this->Cell($w,$h,mb_substr($s,$j,$i-$j,'UTF-8'),$b,2,$align,$fill); + } + else { + $this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill); + } + $this->x = $this->lMargin; +} + +function Write($h, $txt, $link='') +{ + // Output text in flowing mode + if(!isset($this->CurrentFont)) + $this->Error('No font has been set'); + $cw = $this->CurrentFont['cw']; + $w = $this->w-$this->rMargin-$this->x; + $wmax = ($w-2*$this->cMargin); + $s = str_replace("\r",'',(string)$txt); + if ($this->unifontSubset) { + $nb = mb_strlen($s, 'UTF-8'); + if($nb==1 && $s==" ") { + $this->x += $this->GetStringWidth($s); + return; + } + } + else { + $nb = strlen($s); + } + $sep = -1; + $i = 0; + $j = 0; + $l = 0; + $nl = 1; + while($i<$nb) + { + // Get next character + if ($this->unifontSubset) { + $c = mb_substr($s,$i,1,'UTF-8'); + } + else { + $c = $s[$i]; + } + if($c=="\n") + { + // Explicit line break + if ($this->unifontSubset) { + $this->Cell($w,$h,mb_substr($s,$j,$i-$j,'UTF-8'),0,2,'',false,$link); + } + else { + $this->Cell($w,$h,substr($s,$j,$i-$j),0,2,'',false,$link); + } + $i++; + $sep = -1; + $j = $i; + $l = 0; + if($nl==1) + { + $this->x = $this->lMargin; + $w = $this->w-$this->rMargin-$this->x; + $wmax = ($w-2*$this->cMargin); + } + $nl++; + continue; + } + if($c==' ') + $sep = $i; + + if ($this->unifontSubset) { $l += $this->GetStringWidth($c); } + else { $l += $cw[$c]*$this->FontSize/1000; } + + if($l>$wmax) + { + // Automatic line break + if($sep==-1) + { + if($this->x>$this->lMargin) + { + // Move to next line + $this->x = $this->lMargin; + $this->y += $h; + $w = $this->w-$this->rMargin-$this->x; + $wmax = ($w-2*$this->cMargin); + $i++; + $nl++; + continue; + } + if($i==$j) + $i++; + if ($this->unifontSubset) { + $this->Cell($w,$h,mb_substr($s,$j,$i-$j,'UTF-8'),0,2,'',false,$link); + } + else { + $this->Cell($w,$h,substr($s,$j,$i-$j),0,2,'',false,$link); + } + } + else + { + if ($this->unifontSubset) { + $this->Cell($w,$h,mb_substr($s,$j,$sep-$j,'UTF-8'),0,2,'',false,$link); + } + else { + $this->Cell($w,$h,substr($s,$j,$sep-$j),0,2,'',false,$link); + } + $i = $sep+1; + } + $sep = -1; + $j = $i; + $l = 0; + if($nl==1) + { + $this->x = $this->lMargin; + $w = $this->w-$this->rMargin-$this->x; + $wmax = ($w-2*$this->cMargin); + } + $nl++; + } + else + $i++; + } + // Last chunk + if($i!=$j) { + if ($this->unifontSubset) { + $this->Cell($l,$h,mb_substr($s,$j,$i-$j,'UTF-8'),0,0,'',false,$link); + } + else { + $this->Cell($l,$h,substr($s,$j),0,0,'',false,$link); + } + } +} + +function Ln($h=null) +{ + // Line feed; default value is the last cell height + $this->x = $this->lMargin; + if($h===null) + $this->y += $this->lasth; + else + $this->y += $h; +} + +function Image($file, $x=null, $y=null, $w=0, $h=0, $type='', $link='') +{ + // Put an image on the page + if($file=='') + $this->Error('Image file name is empty'); + if(!isset($this->images[$file])) + { + // First use of this image, get info + if($type=='') + { + $pos = strrpos($file,'.'); + if(!$pos) + $this->Error('Image file has no extension and no type was specified: '.$file); + $type = substr($file,$pos+1); + } + $type = strtolower($type); + if($type=='jpeg') + $type = 'jpg'; + $mtd = '_parse'.$type; + if(!method_exists($this,$mtd)) + $this->Error('Unsupported image type: '.$type); + $info = $this->$mtd($file); + $info['i'] = count($this->images)+1; + $this->images[$file] = $info; + } + else + $info = $this->images[$file]; + + // Automatic width and height calculation if needed + if($w==0 && $h==0) + { + // Put image at 96 dpi + $w = -96; + $h = -96; + } + if($w<0) + $w = -$info['w']*72/$w/$this->k; + if($h<0) + $h = -$info['h']*72/$h/$this->k; + if($w==0) + $w = $h*$info['w']/$info['h']; + if($h==0) + $h = $w*$info['h']/$info['w']; + + // Flowing mode + if($y===null) + { + if($this->y+$h>$this->PageBreakTrigger && !$this->InHeader && !$this->InFooter && $this->AcceptPageBreak()) + { + // Automatic page break + $x2 = $this->x; + $this->AddPage($this->CurOrientation,$this->CurPageSize,$this->CurRotation); + $this->x = $x2; + } + $y = $this->y; + $this->y += $h; + } + + if($x===null) + $x = $this->x; + $this->_out(sprintf('q %.2F 0 0 %.2F %.2F %.2F cm /I%d Do Q',$w*$this->k,$h*$this->k,$x*$this->k,($this->h-($y+$h))*$this->k,$info['i'])); + if($link) + $this->Link($x,$y,$w,$h,$link); +} + +function GetPageWidth() +{ + // Get current page width + return $this->w; +} + +function GetPageHeight() +{ + // Get current page height + return $this->h; +} + +function GetX() +{ + // Get x position + return $this->x; +} + +function SetX($x) +{ + // Set x position + if($x>=0) + $this->x = $x; + else + $this->x = $this->w+$x; +} + +function GetY() +{ + // Get y position + return $this->y; +} + +function SetY($y, $resetX=true) +{ + // Set y position and optionally reset x + if($y>=0) + $this->y = $y; + else + $this->y = $this->h+$y; + if($resetX) + $this->x = $this->lMargin; +} + +function SetXY($x, $y) +{ + // Set x and y positions + $this->SetX($x); + $this->SetY($y,false); +} + +function Output($dest='', $name='', $isUTF8=false) +{ + // Output PDF to some destination + $this->Close(); + if(strlen($name)==1 && strlen($dest)!=1) + { + // Fix parameter order + $tmp = $dest; + $dest = $name; + $name = $tmp; + } + if($dest=='') + $dest = 'I'; + if($name=='') + $name = 'doc.pdf'; + switch(strtoupper($dest)) + { + case 'I': + // Send to standard output + $this->_checkoutput(); + if(PHP_SAPI!='cli') + { + // We send to a browser + header('Content-Type: application/pdf'); + header('Content-Disposition: inline; '.$this->_httpencode('filename',$name,$isUTF8)); + header('Cache-Control: private, max-age=0, must-revalidate'); + header('Pragma: public'); + } + echo $this->buffer; + break; + case 'D': + // Download file + $this->_checkoutput(); + header('Content-Type: application/pdf'); + header('Content-Disposition: attachment; '.$this->_httpencode('filename',$name,$isUTF8)); + header('Cache-Control: private, max-age=0, must-revalidate'); + header('Pragma: public'); + echo $this->buffer; + break; + case 'F': + // Save to local file + if(!file_put_contents($name,$this->buffer)) + $this->Error('Unable to create output file: '.$name); + break; + case 'S': + // Return as a string + return $this->buffer; + default: + $this->Error('Incorrect output destination: '.$dest); + } + return ''; +} + +/******************************************************************************* +* Protected methods * +*******************************************************************************/ + +protected function _dochecks() +{ + // Check availability of mbstring + if(!function_exists('mb_strlen')) + $this->Error('mbstring extension is not available'); +} + +protected function _checkoutput() +{ + if(PHP_SAPI!='cli') + { + if(headers_sent($file,$line)) + $this->Error("Some data has already been output, can't send PDF file (output started at $file:$line)"); + } + if(ob_get_length()) + { + // The output buffer is not empty + if(preg_match('/^(\xEF\xBB\xBF)?\s*$/',ob_get_contents())) + { + // It contains only a UTF-8 BOM and/or whitespace, let's clean it + ob_clean(); + } + else + $this->Error("Some data has already been output, can't send PDF file"); + } +} + +protected function _getpagesize($size) +{ + if(is_string($size)) + { + $size = strtolower($size); + if(!isset($this->StdPageSizes[$size])) + $this->Error('Unknown page size: '.$size); + $a = $this->StdPageSizes[$size]; + return array($a[0]/$this->k, $a[1]/$this->k); + } + else + { + if($size[0]>$size[1]) + return array($size[1], $size[0]); + else + return $size; + } +} + +protected function _beginpage($orientation, $size, $rotation) +{ + $this->page++; + $this->pages[$this->page] = ''; + $this->PageLinks[$this->page] = array(); + $this->state = 2; + $this->x = $this->lMargin; + $this->y = $this->tMargin; + $this->FontFamily = ''; + // Check page size and orientation + if($orientation=='') + $orientation = $this->DefOrientation; + else + $orientation = strtoupper($orientation[0]); + if($size=='') + $size = $this->DefPageSize; + else + $size = $this->_getpagesize($size); + if($orientation!=$this->CurOrientation || $size[0]!=$this->CurPageSize[0] || $size[1]!=$this->CurPageSize[1]) + { + // New size or orientation + if($orientation=='P') + { + $this->w = $size[0]; + $this->h = $size[1]; + } + else + { + $this->w = $size[1]; + $this->h = $size[0]; + } + $this->wPt = $this->w*$this->k; + $this->hPt = $this->h*$this->k; + $this->PageBreakTrigger = $this->h-$this->bMargin; + $this->CurOrientation = $orientation; + $this->CurPageSize = $size; + } + if($orientation!=$this->DefOrientation || $size[0]!=$this->DefPageSize[0] || $size[1]!=$this->DefPageSize[1]) + $this->PageInfo[$this->page]['size'] = array($this->wPt, $this->hPt); + if($rotation!=0) + { + if($rotation%90!=0) + $this->Error('Incorrect rotation value: '.$rotation); + $this->PageInfo[$this->page]['rotation'] = $rotation; + } + $this->CurRotation = $rotation; +} + +protected function _endpage() +{ + $this->state = 1; +} + +protected function _loadfont($font) +{ + // Load a font definition file from the font directory + if(strpos($font,'/')!==false || strpos($font,"\\")!==false) + $this->Error('Incorrect font definition file name: '.$font); + include($this->fontpath.$font); + if(!isset($name)) + $this->Error('Could not include font definition file'); + if(isset($enc)) + $enc = strtolower($enc); + if(!isset($subsetted)) + $subsetted = false; + return get_defined_vars(); +} + +protected function _isascii($s) +{ + // Test if string is ASCII + $nb = strlen($s); + for($i=0;$i<$nb;$i++) + { + if(ord($s[$i])>127) + return false; + } + return true; +} + +protected function _httpencode($param, $value, $isUTF8) +{ + // Encode HTTP header field parameter + if($this->_isascii($value)) + return $param.'="'.$value.'"'; + if(!$isUTF8) + $value = $this->_UTF8encode($value); + return $param."*=UTF-8''".rawurlencode($value); +} + +protected function _UTF8encode($s) +{ + // Convert ISO-8859-1 to UTF-8 + return mb_convert_encoding($s,'UTF-8','ISO-8859-1'); +} + +protected function _UTF8toUTF16($s) +{ + // Convert UTF-8 to UTF-16BE with BOM + return "\xFE\xFF".mb_convert_encoding($s,'UTF-16BE','UTF-8'); +} + +protected function _escape($s) +{ + // Escape special characters + if(strpos($s,'(')!==false || strpos($s,')')!==false || strpos($s,'\\')!==false || strpos($s,"\r")!==false) + return str_replace(array('\\','(',')',"\r"), array('\\\\','\\(','\\)','\\r'), $s); + else + return $s; +} + +protected function _textstring($s) +{ + // Format a text string + if(!$this->_isascii($s)) + $s = $this->_UTF8toUTF16($s); + return '('.$this->_escape($s).')'; +} + +protected function _dounderline($x, $y, $txt) +{ + // Underline text + $up = $this->CurrentFont['up']; + $ut = $this->CurrentFont['ut']; + $w = $this->GetStringWidth($txt)+$this->ws*substr_count($txt,' '); + return sprintf('%.2F %.2F %.2F %.2F re f',$x*$this->k,($this->h-($y-$up/1000*$this->FontSize))*$this->k,$w*$this->k,-$ut/1000*$this->FontSizePt); +} + +protected function _parsejpg($file) +{ + // Extract info from a JPEG file + $a = getimagesize($file); + if(!$a) + $this->Error('Missing or incorrect image file: '.$file); + if($a[2]!=2) + $this->Error('Not a JPEG file: '.$file); + if(!isset($a['channels']) || $a['channels']==3) + $colspace = 'DeviceRGB'; + elseif($a['channels']==4) + $colspace = 'DeviceCMYK'; + else + $colspace = 'DeviceGray'; + $bpc = isset($a['bits']) ? $a['bits'] : 8; + $data = file_get_contents($file); + return array('w'=>$a[0], 'h'=>$a[1], 'cs'=>$colspace, 'bpc'=>$bpc, 'f'=>'DCTDecode', 'data'=>$data); +} + +protected function _parsepng($file) +{ + // Extract info from a PNG file + $f = fopen($file,'rb'); + if(!$f) + $this->Error('Can\'t open image file: '.$file); + $info = $this->_parsepngstream($f,$file); + fclose($f); + return $info; +} + +protected function _parsepngstream($f, $file) +{ + // Check signature + if($this->_readstream($f,8)!=chr(137).'PNG'.chr(13).chr(10).chr(26).chr(10)) + $this->Error('Not a PNG file: '.$file); + + // Read header chunk + $this->_readstream($f,4); + if($this->_readstream($f,4)!='IHDR') + $this->Error('Incorrect PNG file: '.$file); + $w = $this->_readint($f); + $h = $this->_readint($f); + $bpc = ord($this->_readstream($f,1)); + if($bpc>8) + $this->Error('16-bit depth not supported: '.$file); + $ct = ord($this->_readstream($f,1)); + if($ct==0 || $ct==4) + $colspace = 'DeviceGray'; + elseif($ct==2 || $ct==6) + $colspace = 'DeviceRGB'; + elseif($ct==3) + $colspace = 'Indexed'; + else + $this->Error('Unknown color type: '.$file); + if(ord($this->_readstream($f,1))!=0) + $this->Error('Unknown compression method: '.$file); + if(ord($this->_readstream($f,1))!=0) + $this->Error('Unknown filter method: '.$file); + if(ord($this->_readstream($f,1))!=0) + $this->Error('Interlacing not supported: '.$file); + $this->_readstream($f,4); + $dp = '/Predictor 15 /Colors '.($colspace=='DeviceRGB' ? 3 : 1).' /BitsPerComponent '.$bpc.' /Columns '.$w; + + // Scan chunks looking for palette, transparency and image data + $pal = ''; + $trns = ''; + $data = ''; + do + { + $n = $this->_readint($f); + $type = $this->_readstream($f,4); + if($type=='PLTE') + { + // Read palette + $pal = $this->_readstream($f,$n); + $this->_readstream($f,4); + } + elseif($type=='tRNS') + { + // Read transparency info + $t = $this->_readstream($f,$n); + if($ct==0) + $trns = array(ord(substr($t,1,1))); + elseif($ct==2) + $trns = array(ord(substr($t,1,1)), ord(substr($t,3,1)), ord(substr($t,5,1))); + else + { + $pos = strpos($t,chr(0)); + if($pos!==false) + $trns = array($pos); + } + $this->_readstream($f,4); + } + elseif($type=='IDAT') + { + // Read image data block + $data .= $this->_readstream($f,$n); + $this->_readstream($f,4); + } + elseif($type=='IEND') + break; + else + $this->_readstream($f,$n+4); + } + while($n); + + if($colspace=='Indexed' && empty($pal)) + $this->Error('Missing palette in '.$file); + $info = array('w'=>$w, 'h'=>$h, 'cs'=>$colspace, 'bpc'=>$bpc, 'f'=>'FlateDecode', 'dp'=>$dp, 'pal'=>$pal, 'trns'=>$trns); + if($ct>=4) + { + // Extract alpha channel + if(!function_exists('gzuncompress')) + $this->Error('Zlib not available, can\'t handle alpha channel: '.$file); + $data = gzuncompress($data); + $color = ''; + $alpha = ''; + if($ct==4) + { + // Gray image + $len = 2*$w; + for($i=0;$i<$h;$i++) + { + $pos = (1+$len)*$i; + $color .= $data[$pos]; + $alpha .= $data[$pos]; + $line = substr($data,$pos+1,$len); + $color .= preg_replace('/(.)./s','$1',$line); + $alpha .= preg_replace('/.(.)/s','$1',$line); + } + } + else + { + // RGB image + $len = 4*$w; + for($i=0;$i<$h;$i++) + { + $pos = (1+$len)*$i; + $color .= $data[$pos]; + $alpha .= $data[$pos]; + $line = substr($data,$pos+1,$len); + $color .= preg_replace('/(.{3})./s','$1',$line); + $alpha .= preg_replace('/.{3}(.)/s','$1',$line); + } + } + unset($data); + $data = gzcompress($color); + $info['smask'] = gzcompress($alpha); + $this->WithAlpha = true; + if($this->PDFVersion<'1.4') + $this->PDFVersion = '1.4'; + } + $info['data'] = $data; + return $info; +} + +protected function _readstream($f, $n) +{ + // Read n bytes from stream + $res = ''; + while($n>0 && !feof($f)) + { + $s = fread($f,$n); + if($s===false) + $this->Error('Error while reading stream'); + $n -= strlen($s); + $res .= $s; + } + if($n>0) + $this->Error('Unexpected end of stream'); + return $res; +} + +protected function _readint($f) +{ + // Read a 4-byte integer from stream + $a = unpack('Ni',$this->_readstream($f,4)); + return $a['i']; +} + +protected function _parsegif($file) +{ + // Extract info from a GIF file (via PNG conversion) + if(!function_exists('imagepng')) + $this->Error('GD extension is required for GIF support'); + if(!function_exists('imagecreatefromgif')) + $this->Error('GD has no GIF read support'); + $im = imagecreatefromgif($file); + if(!$im) + $this->Error('Missing or incorrect image file: '.$file); + imageinterlace($im,0); + ob_start(); + imagepng($im); + $data = ob_get_clean(); + imagedestroy($im); + $f = fopen('php://temp','rb+'); + if(!$f) + $this->Error('Unable to create memory stream'); + fwrite($f,$data); + rewind($f); + $info = $this->_parsepngstream($f,$file); + fclose($f); + return $info; +} + +protected function _out($s) +{ + // Add a line to the document + if($this->state==2) + $this->pages[$this->page] .= $s."\n"; + elseif($this->state==1) + $this->_put($s); + elseif($this->state==0) + $this->Error('No page has been added yet'); + elseif($this->state==3) + $this->Error('The document is closed'); +} + +protected function _put($s) +{ + $this->buffer .= $s."\n"; +} + +protected function _getoffset() +{ + return strlen($this->buffer); +} + +protected function _newobj($n=null) +{ + // Begin a new object + if($n===null) + $n = ++$this->n; + $this->offsets[$n] = $this->_getoffset(); + $this->_put($n.' 0 obj'); +} + +protected function _putstream($data) +{ + $this->_put('stream'); + $this->_put($data); + $this->_put('endstream'); +} + +protected function _putstreamobject($data) +{ + if($this->compress) + { + $entries = '/Filter /FlateDecode '; + $data = gzcompress($data); + } + else + $entries = ''; + $entries .= '/Length '.strlen($data); + $this->_newobj(); + $this->_put('<<'.$entries.'>>'); + $this->_putstream($data); + $this->_put('endobj'); +} + +protected function _putlinks($n) +{ + foreach($this->PageLinks[$n] as $pl) + { + $this->_newobj(); + $rect = sprintf('%.2F %.2F %.2F %.2F',$pl[0],$pl[1],$pl[0]+$pl[2],$pl[1]-$pl[3]); + $s = '<_textstring($pl[4]).'>>>>'; + else + { + $l = $this->links[$pl[4]]; + if(isset($this->PageInfo[$l[0]]['size'])) + $h = $this->PageInfo[$l[0]]['size'][1]; + else + $h = ($this->DefOrientation=='P') ? $this->DefPageSize[1]*$this->k : $this->DefPageSize[0]*$this->k; + $s .= sprintf('/Dest [%d 0 R /XYZ 0 %.2F null]>>',$this->PageInfo[$l[0]]['n'],$h-$l[1]*$this->k); + } + $this->_put($s); + $this->_put('endobj'); + } +} + +protected function _putpage($n) +{ + $this->_newobj(); + $this->_put('<_put('/Parent 1 0 R'); + if(isset($this->PageInfo[$n]['size'])) + $this->_put(sprintf('/MediaBox [0 0 %.2F %.2F]',$this->PageInfo[$n]['size'][0],$this->PageInfo[$n]['size'][1])); + if(isset($this->PageInfo[$n]['rotation'])) + $this->_put('/Rotate '.$this->PageInfo[$n]['rotation']); + $this->_put('/Resources 2 0 R'); + if(!empty($this->PageLinks[$n])) + { + $s = '/Annots ['; + foreach($this->PageLinks[$n] as $pl) + $s .= $pl[5].' 0 R '; + $s .= ']'; + $this->_put($s); + } + if($this->WithAlpha) + $this->_put('/Group <>'); + $this->_put('/Contents '.($this->n+1).' 0 R>>'); + $this->_put('endobj'); + // Page content + if(!empty($this->AliasNbPages)) { + $alias = $this->UTF8ToUTF16BE($this->AliasNbPages, false); + $r = $this->UTF8ToUTF16BE($this->page, false); + $this->pages[$n] = str_replace($alias,$r,$this->pages[$n]); + // Now repeat for no pages in non-subset fonts + $this->pages[$n] = str_replace($this->AliasNbPages,$this->page,$this->pages[$n]); + } + $this->_putstreamobject($this->pages[$n]); + // Link annotations + $this->_putlinks($n); +} + +protected function _putpages() +{ + $nb = $this->page; + $n = $this->n; + for($i=1;$i<=$nb;$i++) + { + $this->PageInfo[$i]['n'] = ++$n; + $n++; + foreach($this->PageLinks[$i] as &$pl) + $pl[5] = ++$n; + unset($pl); + } + for($i=1;$i<=$nb;$i++) + $this->_putpage($i); + // Pages root + $this->_newobj(1); + $this->_put('<PageInfo[$i]['n'].' 0 R '; + $kids .= ']'; + $this->_put($kids); + $this->_put('/Count '.$nb); + if($this->DefOrientation=='P') + { + $w = $this->DefPageSize[0]; + $h = $this->DefPageSize[1]; + } + else + { + $w = $this->DefPageSize[1]; + $h = $this->DefPageSize[0]; + } + $this->_put(sprintf('/MediaBox [0 0 %.2F %.2F]',$w*$this->k,$h*$this->k)); + $this->_put('>>'); + $this->_put('endobj'); +} + +protected function _putfonts() +{ + foreach($this->FontFiles as $file=>$info) + { + if (!isset($info['type']) || $info['type']!='TTF') { + // Font file embedding + $this->_newobj(); + $this->FontFiles[$file]['n'] = $this->n; + $font = file_get_contents($this->fontpath.$file,true); + if(!$font) + $this->Error('Font file not found: '.$file); + $compressed = (substr($file,-2)=='.z'); + if(!$compressed && isset($info['length2'])) + $font = substr($font,6,$info['length1']).substr($font,6+$info['length1']+6,$info['length2']); + $this->_put('<_put('/Filter /FlateDecode'); + $this->_put('/Length1 '.$info['length1']); + if(isset($info['length2'])) + $this->_put('/Length2 '.$info['length2'].' /Length3 0'); + $this->_put('>>'); + $this->_putstream($font); + $this->_put('endobj'); + } + } + foreach($this->fonts as $k=>$font) + { + // Encoding + if(isset($font['diff'])) + { + if(!isset($this->encodings[$font['enc']])) + { + $this->_newobj(); + $this->_put('<>'); + $this->_put('endobj'); + $this->encodings[$font['enc']] = $this->n; + } + } + // ToUnicode CMap + if(isset($font['uv'])) + { + if(isset($font['enc'])) + $cmapkey = $font['enc']; + else + $cmapkey = $font['name']; + if(!isset($this->cmaps[$cmapkey])) + { + $cmap = $this->_tounicodecmap($font['uv']); + $this->_putstreamobject($cmap); + $this->cmaps[$cmapkey] = $this->n; + } + } + // Font object + $type = $font['type']; + $name = $font['name']; + if($type=='Core') + { + // Core font + $this->fonts[$k]['n'] = $this->n+1; + $this->_newobj(); + $this->_put('<_put('/BaseFont /'.$name); + $this->_put('/Subtype /Type1'); + if($name!='Symbol' && $name!='ZapfDingbats') + $this->_put('/Encoding /WinAnsiEncoding'); + if(isset($font['uv'])) + $this->_put('/ToUnicode '.$this->cmaps[$cmapkey].' 0 R'); + $this->_put('>>'); + $this->_put('endobj'); + } + elseif($type=='Type1' || $type=='TrueType') + { + // Additional Type1 or TrueType/OpenType font + if(isset($font['subsetted']) && $font['subsetted']) + $name = 'AAAAAA+'.$name; + $this->fonts[$k]['n'] = $this->n+1; + $this->_newobj(); + $this->_put('<_put('/BaseFont /'.$name); + $this->_put('/Subtype /'.$type); + $this->_put('/FirstChar 32 /LastChar 255'); + $this->_put('/Widths '.($this->n+1).' 0 R'); + $this->_put('/FontDescriptor '.($this->n+2).' 0 R'); + + if($font['enc']) + { + if(isset($font['diff'])) + $this->_put('/Encoding '.$this->encodings[$font['enc']].' 0 R'); + else + $this->_put('/Encoding /WinAnsiEncoding'); + } + + if(isset($font['uv'])) + $this->_put('/ToUnicode '.$this->cmaps[$cmapkey].' 0 R'); + $this->_put('>>'); + $this->_put('endobj'); + // Widths + $this->_newobj(); + $cw = $font['cw']; + $s = '['; + for($i=32;$i<=255;$i++) + $s .= $cw[chr($i)].' '; + $this->_put($s.']'); + $this->_put('endobj'); + // Descriptor + $this->_newobj(); + $s = '<$v) + $s .= ' /'.$k.' '.$v; + + if(!empty($font['file'])) + $s .= ' /FontFile'.($type=='Type1' ? '' : '2').' '.$this->FontFiles[$font['file']]['n'].' 0 R'; + $this->_put($s.'>>'); + $this->_put('endobj'); + } + // TrueType embedded SUBSETS or FULL + else if ($type=='TTF') { + $this->fonts[$k]['n']=$this->n+1; + require_once($this->fontpath.'unifont/ttfonts.php'); + $ttf = new TTFontFile(); + $fontname = 'MPDFAA'.'+'.$font['name']; + $subset = $font['subset']; + unset($subset[0]); + $ttfontstream = $ttf->makeSubset($font['ttffile'], $subset); + $ttfontsize = strlen($ttfontstream); + $fontstream = gzcompress($ttfontstream); + $codeToGlyph = $ttf->codeToGlyph; + unset($codeToGlyph[0]); + + // Type0 Font + // A composite font - a font composed of other fonts, organized hierarchically + $this->_newobj(); + $this->_put('<_put('/Subtype /Type0'); + $this->_put('/BaseFont /'.$fontname.''); + $this->_put('/Encoding /Identity-H'); + $this->_put('/DescendantFonts ['.($this->n + 1).' 0 R]'); + $this->_put('/ToUnicode '.($this->n + 2).' 0 R'); + $this->_put('>>'); + $this->_put('endobj'); + + // CIDFontType2 + // A CIDFont whose glyph descriptions are based on TrueType font technology + $this->_newobj(); + $this->_put('<_put('/Subtype /CIDFontType2'); + $this->_put('/BaseFont /'.$fontname.''); + $this->_put('/CIDSystemInfo '.($this->n + 2).' 0 R'); + $this->_put('/FontDescriptor '.($this->n + 3).' 0 R'); + if (isset($font['desc']['MissingWidth'])){ + $this->_out('/DW '.$font['desc']['MissingWidth'].''); + } + + $this->_putTTfontwidths($font, $ttf->maxUni); + + $this->_put('/CIDToGIDMap '.($this->n + 4).' 0 R'); + $this->_put('>>'); + $this->_put('endobj'); + + // ToUnicode + $this->_newobj(); + $toUni = "/CIDInit /ProcSet findresource begin\n"; + $toUni .= "12 dict begin\n"; + $toUni .= "begincmap\n"; + $toUni .= "/CIDSystemInfo\n"; + $toUni .= "<_put('<>'); + $this->_putstream($toUni); + $this->_put('endobj'); + + // CIDSystemInfo dictionary + $this->_newobj(); + $this->_put('<_put('/Ordering (UCS)'); + $this->_put('/Supplement 0'); + $this->_put('>>'); + $this->_put('endobj'); + + // Font descriptor + $this->_newobj(); + $this->_put('<_put('/FontName /'.$fontname); + foreach($font['desc'] as $kd=>$v) { + if ($kd == 'Flags') { $v = $v | 4; $v = $v & ~32; } // SYMBOLIC font flag + $this->_out(' /'.$kd.' '.$v); + } + $this->_put('/FontFile2 '.($this->n + 2).' 0 R'); + $this->_put('>>'); + $this->_put('endobj'); + + // Embed CIDToGIDMap + // A specification of the mapping from CIDs to glyph indices + $cidtogidmap = ''; + $cidtogidmap = str_pad('', 256*256*2, "\x00"); + foreach($codeToGlyph as $cc=>$glyph) { + $cidtogidmap[$cc*2] = chr($glyph >> 8); + $cidtogidmap[$cc*2 + 1] = chr($glyph & 0xFF); + } + $cidtogidmap = gzcompress($cidtogidmap); + $this->_newobj(); + $this->_put('<_put('/Filter /FlateDecode'); + $this->_put('>>'); + $this->_putstream($cidtogidmap); + $this->_put('endobj'); + + //Font file + $this->_newobj(); + $this->_put('<_put('/Filter /FlateDecode'); + $this->_put('/Length1 '.$ttfontsize); + $this->_put('>>'); + $this->_putstream($fontstream); + $this->_put('endobj'); + unset($ttf); + } + else + { + // Allow for additional types + $this->fonts[$k]['n'] = $this->n+1; + $mtd = '_put'.strtolower($type); + if(!method_exists($this,$mtd)) + $this->Error('Unsupported font type: '.$type); + $this->$mtd($font); + } + } +} + +protected function _putTTfontwidths($font, $maxUni) { + if (file_exists($font['unifilename'].'.cw127.php')) { + include($font['unifilename'].'.cw127.php') ; + $startcid = 128; + } + else { + $rangeid = 0; + $range = array(); + $prevcid = -2; + $prevwidth = -1; + $interval = false; + $startcid = 1; + } + $cwlen = $maxUni + 1; + + // for each character + for ($cid=$startcid; $cid<$cwlen; $cid++) { + if ($cid==128 && (!file_exists($font['unifilename'].'.cw127.php'))) { + if (is_writable(dirname($this->fontpath.'unifont/x'))) { + $fh = fopen($font['unifilename'].'.cw127.php',"wb"); + $cw127='"; + fwrite($fh,$cw127,strlen($cw127)); + fclose($fh); + } + } + if ((!isset($font['cw'][$cid*2]) || !isset($font['cw'][$cid*2+1])) || + ($font['cw'][$cid*2] == "\00" && $font['cw'][$cid*2+1] == "\00")) { continue; } + + $width = (ord($font['cw'][$cid*2]) << 8) + ord($font['cw'][$cid*2+1]); + if ($width == 65535) { $width = 0; } + if ($cid > 255 && (!isset($font['subset'][$cid]) || !$font['subset'][$cid])) { continue; } + if (!isset($font['dw']) || (isset($font['dw']) && $width != $font['dw'])) { + if ($cid == ($prevcid + 1)) { + if ($width == $prevwidth) { + if ($width == $range[$rangeid][0]) { + $range[$rangeid][] = $width; + } + else { + array_pop($range[$rangeid]); + // new range + $rangeid = $prevcid; + $range[$rangeid] = array(); + $range[$rangeid][] = $prevwidth; + $range[$rangeid][] = $width; + } + $interval = true; + $range[$rangeid]['interval'] = true; + } else { + if ($interval) { + // new range + $rangeid = $cid; + $range[$rangeid] = array(); + $range[$rangeid][] = $width; + } + else { $range[$rangeid][] = $width; } + $interval = false; + } + } else { + $rangeid = $cid; + $range[$rangeid] = array(); + $range[$rangeid][] = $width; + $interval = false; + } + $prevcid = $cid; + $prevwidth = $width; + } + } + $prevk = -1; + $nextk = -1; + $prevint = false; + foreach ($range as $k => $ws) { + $cws = count($ws); + if (($k == $nextk) AND (!$prevint) AND ((!isset($ws['interval'])) OR ($cws < 4))) { + if (isset($range[$k]['interval'])) { unset($range[$k]['interval']); } + $range[$prevk] = array_merge($range[$prevk], $range[$k]); + unset($range[$k]); + } + else { $prevk = $k; } + $nextk = $k + $cws; + if (isset($ws['interval'])) { + if ($cws > 3) { $prevint = true; } + else { $prevint = false; } + unset($range[$k]['interval']); + --$nextk; + } + else { $prevint = false; } + } + $w = ''; + foreach ($range as $k => $ws) { + if (count(array_count_values($ws)) == 1) { $w .= ' '.$k.' '.($k + count($ws) - 1).' '.$ws[0]; } + else { $w .= ' '.$k.' [ '.implode(' ', $ws).' ]' . "\n"; } + } + $this->_out('/W ['.$w.' ]'); +} + +protected function _tounicodecmap($uv) +{ + $ranges = ''; + $nbr = 0; + $chars = ''; + $nbc = 0; + foreach($uv as $c=>$v) + { + if(is_array($v)) + { + $ranges .= sprintf("<%02X> <%02X> <%04X>\n",$c,$c+$v[1]-1,$v[0]); + $nbr++; + } + else + { + $chars .= sprintf("<%02X> <%04X>\n",$c,$v); + $nbc++; + } + } + $s = "/CIDInit /ProcSet findresource begin\n"; + $s .= "12 dict begin\n"; + $s .= "begincmap\n"; + $s .= "/CIDSystemInfo\n"; + $s .= "<0) + { + $s .= "$nbr beginbfrange\n"; + $s .= $ranges; + $s .= "endbfrange\n"; + } + if($nbc>0) + { + $s .= "$nbc beginbfchar\n"; + $s .= $chars; + $s .= "endbfchar\n"; + } + $s .= "endcmap\n"; + $s .= "CMapName currentdict /CMap defineresource pop\n"; + $s .= "end\n"; + $s .= "end"; + return $s; +} + +protected function _putimages() +{ + foreach(array_keys($this->images) as $file) + { + $this->_putimage($this->images[$file]); + unset($this->images[$file]['data']); + unset($this->images[$file]['smask']); + } +} + +protected function _putimage(&$info) +{ + $this->_newobj(); + $info['n'] = $this->n; + $this->_put('<_put('/Subtype /Image'); + $this->_put('/Width '.$info['w']); + $this->_put('/Height '.$info['h']); + if($info['cs']=='Indexed') + $this->_put('/ColorSpace [/Indexed /DeviceRGB '.(strlen($info['pal'])/3-1).' '.($this->n+1).' 0 R]'); + else + { + $this->_put('/ColorSpace /'.$info['cs']); + if($info['cs']=='DeviceCMYK') + $this->_put('/Decode [1 0 1 0 1 0 1 0]'); + } + $this->_put('/BitsPerComponent '.$info['bpc']); + if(isset($info['f'])) + $this->_put('/Filter /'.$info['f']); + if(isset($info['dp'])) + $this->_put('/DecodeParms <<'.$info['dp'].'>>'); + if(isset($info['trns']) && is_array($info['trns'])) + { + $trns = ''; + for($i=0;$i_put('/Mask ['.$trns.']'); + } + if(isset($info['smask'])) + $this->_put('/SMask '.($this->n+1).' 0 R'); + $this->_put('/Length '.strlen($info['data']).'>>'); + $this->_putstream($info['data']); + $this->_put('endobj'); + // Soft mask + if(isset($info['smask'])) + { + $dp = '/Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns '.$info['w']; + $smask = array('w'=>$info['w'], 'h'=>$info['h'], 'cs'=>'DeviceGray', 'bpc'=>8, 'f'=>$info['f'], 'dp'=>$dp, 'data'=>$info['smask']); + $this->_putimage($smask); + } + // Palette + if($info['cs']=='Indexed') + $this->_putstreamobject($info['pal']); +} + +protected function _putxobjectdict() +{ + foreach($this->images as $image) + $this->_put('/I'.$image['i'].' '.$image['n'].' 0 R'); +} + +protected function _putresourcedict() +{ + $this->_put('/ProcSet [/PDF /Text /ImageB /ImageC /ImageI]'); + $this->_put('/Font <<'); + foreach($this->fonts as $font) + $this->_put('/F'.$font['i'].' '.$font['n'].' 0 R'); + $this->_put('>>'); + $this->_put('/XObject <<'); + $this->_putxobjectdict(); + $this->_put('>>'); +} + +protected function _putresources() +{ + $this->_putfonts(); + $this->_putimages(); + // Resource dictionary + $this->_newobj(2); + $this->_put('<<'); + $this->_putresourcedict(); + $this->_put('>>'); + $this->_put('endobj'); +} + +protected function _putinfo() +{ + $date = @date('YmdHisO',$this->CreationDate); + $this->metadata['CreationDate'] = 'D:'.substr($date,0,-2)."'".substr($date,-2)."'"; + foreach($this->metadata as $key=>$value) + $this->_put('/'.$key.' '.$this->_textstring($value)); +} + +protected function _putcatalog() +{ + $n = $this->PageInfo[1]['n']; + $this->_put('/Type /Catalog'); + $this->_put('/Pages 1 0 R'); + if($this->ZoomMode=='fullpage') + $this->_put('/OpenAction ['.$n.' 0 R /Fit]'); + elseif($this->ZoomMode=='fullwidth') + $this->_put('/OpenAction ['.$n.' 0 R /FitH null]'); + elseif($this->ZoomMode=='real') + $this->_put('/OpenAction ['.$n.' 0 R /XYZ null null 1]'); + elseif(!is_string($this->ZoomMode)) + $this->_put('/OpenAction ['.$n.' 0 R /XYZ null null '.sprintf('%.2F',$this->ZoomMode/100).']'); + if($this->LayoutMode=='single') + $this->_put('/PageLayout /SinglePage'); + elseif($this->LayoutMode=='continuous') + $this->_put('/PageLayout /OneColumn'); + elseif($this->LayoutMode=='two') + $this->_put('/PageLayout /TwoColumnLeft'); +} + +protected function _putheader() +{ + $this->_put('%PDF-'.$this->PDFVersion); +} + +protected function _puttrailer() +{ + $this->_put('/Size '.($this->n+1)); + $this->_put('/Root '.$this->n.' 0 R'); + $this->_put('/Info '.($this->n-1).' 0 R'); +} + +protected function _enddoc() +{ + $this->CreationDate = time(); + $this->_putheader(); + $this->_putpages(); + $this->_putresources(); + // Info + $this->_newobj(); + $this->_put('<<'); + $this->_putinfo(); + $this->_put('>>'); + $this->_put('endobj'); + // Catalog + $this->_newobj(); + $this->_put('<<'); + $this->_putcatalog(); + $this->_put('>>'); + $this->_put('endobj'); + // Cross-ref + $offset = $this->_getoffset(); + $this->_put('xref'); + $this->_put('0 '.($this->n+1)); + $this->_put('0000000000 65535 f '); + for($i=1;$i<=$this->n;$i++) + $this->_put(sprintf('%010d 00000 n ',$this->offsets[$i])); + // Trailer + $this->_put('trailer'); + $this->_put('<<'); + $this->_puttrailer(); + $this->_put('>>'); + $this->_put('startxref'); + $this->_put($offset); + $this->_put('%%EOF'); + $this->state = 3; +} + +// ********* NEW FUNCTIONS ********* +// Converts UTF-8 strings to UTF16-BE. +protected function UTF8ToUTF16BE($str, $setbom=true) { + $outstr = ""; + if ($setbom) { + $outstr .= "\xFE\xFF"; // Byte Order Mark (BOM) + } + $outstr .= mb_convert_encoding($str, 'UTF-16BE', 'UTF-8'); + return $outstr; +} + +// Converts UTF-8 strings to codepoints array +protected function UTF8StringToArray($str) { + $out = array(); + $len = strlen($str); + for ($i = 0; $i < $len; $i++) { + $uni = -1; + $h = ord($str[$i]); + if ( $h <= 0x7F ) + $uni = $h; + elseif ( $h >= 0xC2 ) { + if ( ($h <= 0xDF) && ($i < $len -1) ) + $uni = ($h & 0x1F) << 6 | (ord($str[++$i]) & 0x3F); + elseif ( ($h <= 0xEF) && ($i < $len -2) ) + $uni = ($h & 0x0F) << 12 | (ord($str[++$i]) & 0x3F) << 6 + | (ord($str[++$i]) & 0x3F); + elseif ( ($h <= 0xF4) && ($i < $len -3) ) + $uni = ($h & 0x0F) << 18 | (ord($str[++$i]) & 0x3F) << 12 + | (ord($str[++$i]) & 0x3F) << 6 + | (ord($str[++$i]) & 0x3F); + } + if ($uni >= 0) { + $out[] = $uni; + } + } + return $out; +} + +} +?> diff --git a/backend/libs/fpdf/tutorial/20k_c1.txt b/backend/libs/fpdf/tutorial/20k_c1.txt new file mode 100644 index 0000000..6d5b295 --- /dev/null +++ b/backend/libs/fpdf/tutorial/20k_c1.txt @@ -0,0 +1,10 @@ +The year 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has forgotten. Without getting into those rumors that upset civilians in the seaports and deranged the public mind even far inland, it must be said that professional seamen were especially alarmed. Traders, shipowners, captains of vessels, skippers, and master mariners from Europe and America, naval officers from every country, and at their heels the various national governments on these two continents, were all extremely disturbed by the business. +In essence, over a period of time several ships had encountered "an enormous thing" at sea, a long spindle-shaped object, sometimes giving off a phosphorescent glow, infinitely bigger and faster than any whale. +The relevant data on this apparition, as recorded in various logbooks, agreed pretty closely as to the structure of the object or creature in question, its unprecedented speed of movement, its startling locomotive power, and the unique vitality with which it seemed to be gifted. If it was a cetacean, it exceeded in bulk any whale previously classified by science. No naturalist, neither Cuvier nor Lacépède, neither Professor Dumeril nor Professor de Quatrefages, would have accepted the existence of such a monster sight unseen -- specifically, unseen by their own scientific eyes. +Striking an average of observations taken at different times -- rejecting those timid estimates that gave the object a length of 200 feet, and ignoring those exaggerated views that saw it as a mile wide and three long--you could still assert that this phenomenal creature greatly exceeded the dimensions of anything then known to ichthyologists, if it existed at all. +Now then, it did exist, this was an undeniable fact; and since the human mind dotes on objects of wonder, you can understand the worldwide excitement caused by this unearthly apparition. As for relegating it to the realm of fiction, that charge had to be dropped. +In essence, on July 20, 1866, the steamer Governor Higginson, from the Calcutta & Burnach Steam Navigation Co., encountered this moving mass five miles off the eastern shores of Australia. Captain Baker at first thought he was in the presence of an unknown reef; he was even about to fix its exact position when two waterspouts shot out of this inexplicable object and sprang hissing into the air some 150 feet. So, unless this reef was subject to the intermittent eruptions of a geyser, the Governor Higginson had fair and honest dealings with some aquatic mammal, until then unknown, that could spurt from its blowholes waterspouts mixed with air and steam. +Similar events were likewise observed in Pacific seas, on July 23 of the same year, by the Christopher Columbus from the West India & Pacific Steam Navigation Co. Consequently, this extraordinary cetacean could transfer itself from one locality to another with startling swiftness, since within an interval of just three days, the Governor Higginson and the Christopher Columbus had observed it at two positions on the charts separated by a distance of more than 700 nautical leagues. +Fifteen days later and 2,000 leagues farther, the Helvetia from the Compagnie Nationale and the Shannon from the Royal Mail line, running on opposite tacks in that part of the Atlantic lying between the United States and Europe, respectively signaled each other that the monster had been sighted in latitude 42 degrees 15' north and longitude 60 degrees 35' west of the meridian of Greenwich. From their simultaneous observations, they were able to estimate the mammal's minimum length at more than 350 English feet; this was because both the Shannon and the Helvetia were of smaller dimensions, although each measured 100 meters stem to stern. Now then, the biggest whales, those rorqual whales that frequent the waterways of the Aleutian Islands, have never exceeded a length of 56 meters--if they reach even that. +One after another, reports arrived that would profoundly affect public opinion: new observations taken by the transatlantic liner Pereire, the Inman line's Etna running afoul of the monster, an official report drawn up by officers on the French frigate Normandy, dead-earnest reckonings obtained by the general staff of Commodore Fitz-James aboard the Lord Clyde. In lighthearted countries, people joked about this phenomenon, but such serious, practical countries as England, America, and Germany were deeply concerned. +In every big city the monster was the latest rage; they sang about it in the coffee houses, they ridiculed it in the newspapers, they dramatized it in the theaters. The tabloids found it a fine opportunity for hatching all sorts of hoaxes. In those newspapers short of copy, you saw the reappearance of every gigantic imaginary creature, from "Moby Dick," that dreadful white whale from the High Arctic regions, to the stupendous kraken whose tentacles could entwine a 500-ton craft and drag it into the ocean depths. They even reprinted reports from ancient times: the views of Aristotle and Pliny accepting the existence of such monsters, then the Norwegian stories of Bishop Pontoppidan, the narratives of Paul Egede, and finally the reports of Captain Harrington -- whose good faith is above suspicion--in which he claims he saw, while aboard the Castilian in 1857, one of those enormous serpents that, until then, had frequented only the seas of France's old extremist newspaper, The Constitutionalist. diff --git a/backend/libs/fpdf/tutorial/20k_c2.txt b/backend/libs/fpdf/tutorial/20k_c2.txt new file mode 100644 index 0000000..7b5c565 --- /dev/null +++ b/backend/libs/fpdf/tutorial/20k_c2.txt @@ -0,0 +1,23 @@ +During the period in which these developments were occurring, I had returned from a scientific undertaking organized to explore the Nebraska badlands in the United States. In my capacity as Assistant Professor at the Paris Museum of Natural History, I had been attached to this expedition by the French government. After spending six months in Nebraska, I arrived in New York laden with valuable collections near the end of March. My departure for France was set for early May. In the meantime, then, I was busy classifying my mineralogical, botanical, and zoological treasures when that incident took place with the Scotia. +I was perfectly abreast of this question, which was the big news of the day, and how could I not have been? I had read and reread every American and European newspaper without being any farther along. This mystery puzzled me. Finding it impossible to form any views, I drifted from one extreme to the other. Something was out there, that much was certain, and any doubting Thomas was invited to place his finger on the Scotia's wound. +When I arrived in New York, the question was at the boiling point. The hypothesis of a drifting islet or an elusive reef, put forward by people not quite in their right minds, was completely eliminated. And indeed, unless this reef had an engine in its belly, how could it move about with such prodigious speed? +Also discredited was the idea of a floating hull or some other enormous wreckage, and again because of this speed of movement. +So only two possible solutions to the question were left, creating two very distinct groups of supporters: on one side, those favoring a monster of colossal strength; on the other, those favoring an "underwater boat" of tremendous motor power. +Now then, although the latter hypothesis was completely admissible, it couldn't stand up to inquiries conducted in both the New World and the Old. That a private individual had such a mechanism at his disposal was less than probable. Where and when had he built it, and how could he have built it in secret? +Only some government could own such an engine of destruction, and in these disaster-filled times, when men tax their ingenuity to build increasingly powerful aggressive weapons, it was possible that, unknown to the rest of the world, some nation could have been testing such a fearsome machine. The Chassepot rifle led to the torpedo, and the torpedo has led to this underwater battering ram, which in turn will lead to the world putting its foot down. At least I hope it will. +But this hypothesis of a war machine collapsed in the face of formal denials from the various governments. Since the public interest was at stake and transoceanic travel was suffering, the sincerity of these governments could not be doubted. Besides, how could the assembly of this underwater boat have escaped public notice? Keeping a secret under such circumstances would be difficult enough for an individual, and certainly impossible for a nation whose every move is under constant surveillance by rival powers. +So, after inquiries conducted in England, France, Russia, Prussia, Spain, Italy, America, and even Turkey, the hypothesis of an underwater Monitor was ultimately rejected. +After I arrived in New York, several people did me the honor of consulting me on the phenomenon in question. In France I had published a two-volume work, in quarto, entitled The Mysteries of the Great Ocean Depths. Well received in scholarly circles, this book had established me as a specialist in this pretty obscure field of natural history. My views were in demand. As long as I could deny the reality of the business, I confined myself to a flat "no comment." But soon, pinned to the wall, I had to explain myself straight out. And in this vein, "the honorable Pierre Aronnax, Professor at the Paris Museum," was summoned by The New York Herald to formulate his views no matter what. +I complied. Since I could no longer hold my tongue, I let it wag. I discussed the question in its every aspect, both political and scientific, and this is an excerpt from the well-padded article I published in the issue of April 30. + +"Therefore," I wrote, "after examining these different hypotheses one by one, we are forced, every other supposition having been refuted, to accept the existence of an extremely powerful marine animal. +"The deepest parts of the ocean are totally unknown to us. No soundings have been able to reach them. What goes on in those distant depths? What creatures inhabit, or could inhabit, those regions twelve or fifteen miles beneath the surface of the water? What is the constitution of these animals? It's almost beyond conjecture. +"However, the solution to this problem submitted to me can take the form of a choice between two alternatives. +"Either we know every variety of creature populating our planet, or we do not. +"If we do not know every one of them, if nature still keeps ichthyological secrets from us, nothing is more admissible than to accept the existence of fish or cetaceans of new species or even new genera, animals with a basically 'cast-iron' constitution that inhabit strata beyond the reach of our soundings, and which some development or other, an urge or a whim if you prefer, can bring to the upper level of the ocean for long intervals. +"If, on the other hand, we do know every living species, we must look for the animal in question among those marine creatures already cataloged, and in this event I would be inclined to accept the existence of a giant narwhale. +"The common narwhale, or sea unicorn, often reaches a length of sixty feet. Increase its dimensions fivefold or even tenfold, then give this cetacean a strength in proportion to its size while enlarging its offensive weapons, and you have the animal we're looking for. It would have the proportions determined by the officers of the Shannon, the instrument needed to perforate the Scotia, and the power to pierce a steamer's hull. +"In essence, the narwhale is armed with a sort of ivory sword, or lance, as certain naturalists have expressed it. It's a king-sized tooth as hard as steel. Some of these teeth have been found buried in the bodies of baleen whales, which the narwhale attacks with invariable success. Others have been wrenched, not without difficulty, from the undersides of vessels that narwhales have pierced clean through, as a gimlet pierces a wine barrel. The museum at the Faculty of Medicine in Paris owns one of these tusks with a length of 2.25 meters and a width at its base of forty-eight centimeters! +"All right then! Imagine this weapon to be ten times stronger and the animal ten times more powerful, launch it at a speed of twenty miles per hour, multiply its mass times its velocity, and you get just the collision we need to cause the specified catastrophe. +"So, until information becomes more abundant, I plump for a sea unicorn of colossal dimensions, no longer armed with a mere lance but with an actual spur, like ironclad frigates or those warships called 'rams,' whose mass and motor power it would possess simultaneously. +"This inexplicable phenomenon is thus explained away--unless it's something else entirely, which, despite everything that has been sighted, studied, explored and experienced, is still possible!" diff --git a/backend/libs/fpdf/tutorial/CevicheOne-Regular-Licence.txt b/backend/libs/fpdf/tutorial/CevicheOne-Regular-Licence.txt new file mode 100644 index 0000000..e4eabd8 --- /dev/null +++ b/backend/libs/fpdf/tutorial/CevicheOne-Regular-Licence.txt @@ -0,0 +1,94 @@ +Copyright (c) 2011 by LatinoType Limitada (luciano@latinotype.com), +with Reserved Font Names "Cecivhe" and "Ceviche One" + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/backend/libs/fpdf/tutorial/CevicheOne-Regular.php b/backend/libs/fpdf/tutorial/CevicheOne-Regular.php new file mode 100644 index 0000000..ca5c411 --- /dev/null +++ b/backend/libs/fpdf/tutorial/CevicheOne-Regular.php @@ -0,0 +1,25 @@ +806,'Descent'=>-237,'CapHeight'=>425,'Flags'=>32,'FontBBox'=>'[-42 -237 1427 806]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>294); +$up = -75; +$ut = 50; +$cw = array( + chr(0)=>294,chr(1)=>294,chr(2)=>294,chr(3)=>294,chr(4)=>294,chr(5)=>294,chr(6)=>294,chr(7)=>294,chr(8)=>294,chr(9)=>294,chr(10)=>294,chr(11)=>294,chr(12)=>294,chr(13)=>294,chr(14)=>294,chr(15)=>294,chr(16)=>294,chr(17)=>294,chr(18)=>294,chr(19)=>294,chr(20)=>294,chr(21)=>294, + chr(22)=>294,chr(23)=>294,chr(24)=>294,chr(25)=>294,chr(26)=>294,chr(27)=>294,chr(28)=>294,chr(29)=>294,chr(30)=>294,chr(31)=>294,' '=>130,'!'=>254,'"'=>334,'#'=>496,'$'=>469,'%'=>765,'&'=>761,'\''=>148,'('=>268,')'=>269,'*'=>435,'+'=>442, + ','=>235,'-'=>339,'.'=>233,'/'=>301,'0'=>512,'1'=>252,'2'=>501,'3'=>471,'4'=>537,'5'=>471,'6'=>501,'7'=>424,'8'=>506,'9'=>502,':'=>292,';'=>299,'<'=>463,'='=>483,'>'=>459,'?'=>453,'@'=>672,'A'=>511, + 'B'=>573,'C'=>480,'D'=>541,'E'=>507,'F'=>490,'G'=>515,'H'=>517,'I'=>250,'J'=>270,'K'=>570,'L'=>368,'M'=>620,'N'=>548,'O'=>507,'P'=>540,'Q'=>532,'R'=>552,'S'=>490,'T'=>434,'U'=>527,'V'=>514,'W'=>670, + 'X'=>541,'Y'=>497,'Z'=>499,'['=>288,'\\'=>472,']'=>288,'^'=>448,'_'=>350,'`'=>449,'a'=>446,'b'=>454,'c'=>394,'d'=>462,'e'=>404,'f'=>332,'g'=>458,'h'=>446,'i'=>234,'j'=>232,'k'=>457,'l'=>231,'m'=>659, + 'n'=>450,'o'=>412,'p'=>436,'q'=>468,'r'=>389,'s'=>394,'t'=>318,'u'=>458,'v'=>421,'w'=>612,'x'=>450,'y'=>429,'z'=>423,'{'=>312,'|'=>231,'}'=>312,'~'=>504,chr(127)=>294,chr(128)=>586,chr(129)=>294,chr(130)=>176,chr(131)=>377, + chr(132)=>361,chr(133)=>761,chr(134)=>422,chr(135)=>425,chr(136)=>448,chr(137)=>1050,chr(138)=>490,chr(139)=>377,chr(140)=>787,chr(141)=>294,chr(142)=>499,chr(143)=>294,chr(144)=>294,chr(145)=>171,chr(146)=>148,chr(147)=>357,chr(148)=>334,chr(149)=>266,chr(150)=>444,chr(151)=>554,chr(152)=>416,chr(153)=>608, + chr(154)=>394,chr(155)=>378,chr(156)=>674,chr(157)=>294,chr(158)=>423,chr(159)=>497,chr(160)=>130,chr(161)=>253,chr(162)=>424,chr(163)=>510,chr(164)=>665,chr(165)=>551,chr(166)=>252,chr(167)=>413,chr(168)=>505,chr(169)=>675,chr(170)=>361,chr(171)=>668,chr(172)=>548,chr(173)=>440,chr(174)=>676,chr(175)=>413, + chr(176)=>278,chr(177)=>438,chr(178)=>328,chr(179)=>318,chr(180)=>449,chr(181)=>463,chr(182)=>535,chr(183)=>234,chr(184)=>535,chr(185)=>176,chr(186)=>322,chr(187)=>669,chr(188)=>761,chr(189)=>710,chr(190)=>904,chr(191)=>452,chr(192)=>511,chr(193)=>511,chr(194)=>514,chr(195)=>511,chr(196)=>511,chr(197)=>511, + chr(198)=>787,chr(199)=>480,chr(200)=>507,chr(201)=>507,chr(202)=>507,chr(203)=>507,chr(204)=>250,chr(205)=>250,chr(206)=>271,chr(207)=>272,chr(208)=>542,chr(209)=>548,chr(210)=>507,chr(211)=>507,chr(212)=>507,chr(213)=>507,chr(214)=>507,chr(215)=>496,chr(216)=>507,chr(217)=>527,chr(218)=>527,chr(219)=>526, + chr(220)=>527,chr(221)=>497,chr(222)=>522,chr(223)=>457,chr(224)=>446,chr(225)=>446,chr(226)=>446,chr(227)=>446,chr(228)=>446,chr(229)=>446,chr(230)=>635,chr(231)=>394,chr(232)=>404,chr(233)=>404,chr(234)=>412,chr(235)=>401,chr(236)=>235,chr(237)=>235,chr(238)=>256,chr(239)=>249,chr(240)=>475,chr(241)=>450, + chr(242)=>412,chr(243)=>412,chr(244)=>412,chr(245)=>413,chr(246)=>412,chr(247)=>444,chr(248)=>412,chr(249)=>458,chr(250)=>458,chr(251)=>458,chr(252)=>458,chr(253)=>429,chr(254)=>452,chr(255)=>429); +$enc = 'cp1252'; +$uv = array(0=>array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); +$file = 'CevicheOne-Regular.z'; +$originalsize = 25916; +$subsetted = true; +?> diff --git a/backend/libs/fpdf/tutorial/CevicheOne-Regular.ttf b/backend/libs/fpdf/tutorial/CevicheOne-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..0bf3b6f465fb019e22a4108672ef44a896f8002e GIT binary patch literal 35576 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 literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/tutorial/CevicheOne-Regular.z b/backend/libs/fpdf/tutorial/CevicheOne-Regular.z new file mode 100644 index 0000000000000000000000000000000000000000..a2c23252dff58aebc0dbfac20ef7685a7000b2b9 GIT binary patch literal 15498 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 M;;umd3)+jdou04ErT_o{ literal 0 HcmV?d00001 diff --git a/backend/libs/fpdf/tutorial/countries.txt b/backend/libs/fpdf/tutorial/countries.txt new file mode 100644 index 0000000..5a48a42 --- /dev/null +++ b/backend/libs/fpdf/tutorial/countries.txt @@ -0,0 +1,15 @@ +Austria;Vienna;83859;8075 +Belgium;Brussels;30518;10192 +Denmark;Copenhagen;43094;5295 +Finland;Helsinki;304529;5147 +France;Paris;543965;58728 +Germany;Berlin;357022;82057 +Greece;Athens;131625;10511 +Ireland;Dublin;70723;3694 +Italy;Roma;301316;57563 +Luxembourg;Luxembourg;2586;424 +Netherlands;Amsterdam;41526;15654 +Portugal;Lisbon;91906;9957 +Spain;Madrid;504790;39348 +Sweden;Stockholm;410934;8839 +United Kingdom;London;243820;58862 diff --git a/backend/libs/fpdf/tutorial/index.htm b/backend/libs/fpdf/tutorial/index.htm new file mode 100644 index 0000000..adf679b --- /dev/null +++ b/backend/libs/fpdf/tutorial/index.htm @@ -0,0 +1,20 @@ + + + + +Tutorials + + + +

Tutorials

+ + + diff --git a/backend/libs/fpdf/tutorial/logo.png b/backend/libs/fpdf/tutorial/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..284a0071c850b5a2f1ba86f16775c5c0da9fe082 GIT binary patch literal 2373 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 diff --git a/backend/libs/fpdf/tutorial/tuto1.htm b/backend/libs/fpdf/tutorial/tuto1.htm new file mode 100644 index 0000000..b1a9f58 --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto1.htm @@ -0,0 +1,76 @@ + + + + +Minimal example + + + +

Minimal example

+Let's start with the classic example: +
+
<?php
+require('fpdf.php');
+
+$pdf = new FPDF();
+$pdf->AddPage();
+$pdf->SetFont('Arial','B',16);
+$pdf->Cell(40,10,'Hello World!');
+$pdf->Output();
+?>
+
+

[Run]

+After including the library file, we create an FPDF object. +The constructor is used here with the default values: pages are in A4 portrait and +the unit of measure is millimeter. It could have been specified explicitly with: +
+
$pdf = new FPDF('P','mm','A4');
+
+
+It's possible to use landscape (L), other page sizes (such as Letter and +Legal) and units (pt, cm, in). +
+
+There's no page at the moment, so we have to add one with AddPage(). The origin +is at the upper-left corner and the current position is by default set at 1 cm from the +borders; the margins can be changed with SetMargins(). +
+
+Before we can print text, it's mandatory to select a font with SetFont(). +We choose Arial bold 16: +
+
$pdf->SetFont('Arial','B',16);
+
+
+We could have specified italics with I, underlined with U or a regular font with an empty string +(or any combination). Note that the font size is given in points, not millimeters (or another user +unit); it's the only exception. The other standard fonts are Times, Courier, Symbol and ZapfDingbats. +
+
+We can now print a cell with Cell(). A cell is a rectangular area, possibly framed, +which contains a line of text. It is output at the current position. We specify its dimensions, +its text (centered or aligned), if borders should be drawn, and where the current position +moves after it (to the right, below or to the beginning of the next line). To add a frame, we would do this: +
+
$pdf->Cell(40,10,'Hello World !',1);
+
+
+To add a new cell next to it with centered text and go to the next line, we would do: +
+
$pdf->Cell(60,10,'Powered by FPDF.',0,1,'C');
+
+
+Remark: the line break can also be done with Ln(). This method additionnaly allows to specify +the height of the break. +
+
+Finally, the document is closed and sent to the browser with Output(). We could have saved +it to a file by passing the appropriate parameters. +
+
+Caution: in case when the PDF is sent to the browser, nothing else must be output by the +script, neither before nor after (no HTML, not even a space or a carriage return). If you send something +before, you will get the error message: "Some data has already been output, can't send PDF file". If you +send something after, the document might not display. + + diff --git a/backend/libs/fpdf/tutorial/tuto1.php b/backend/libs/fpdf/tutorial/tuto1.php new file mode 100644 index 0000000..3ab55a1 --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto1.php @@ -0,0 +1,9 @@ +AddPage(); +$pdf->SetFont('Arial','B',16); +$pdf->Cell(40,10,'Hello World!'); +$pdf->Output(); +?> diff --git a/backend/libs/fpdf/tutorial/tuto2.htm b/backend/libs/fpdf/tutorial/tuto2.htm new file mode 100644 index 0000000..b3c0590 --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto2.htm @@ -0,0 +1,80 @@ + + + + +Header, footer, page break and image + + + +

Header, footer, page break and image

+Here's a two page example with header, footer and logo: +
+
<?php
+require('fpdf.php');
+
+class PDF extends FPDF
+{
+// Page header
+function Header()
+{
+    // Logo
+    $this->Image('logo.png',10,6,30);
+    // Arial bold 15
+    $this->SetFont('Arial','B',15);
+    // Move to the right
+    $this->Cell(80);
+    // Title
+    $this->Cell(30,10,'Title',1,0,'C');
+    // Line break
+    $this->Ln(20);
+}
+
+// Page footer
+function Footer()
+{
+    // Position at 1.5 cm from bottom
+    $this->SetY(-15);
+    // Arial italic 8
+    $this->SetFont('Arial','I',8);
+    // Page number
+    $this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C');
+}
+}
+
+// Instanciation of inherited class
+$pdf = new PDF();
+$pdf->AliasNbPages();
+$pdf->AddPage();
+$pdf->SetFont('Times','',12);
+for($i=1;$i<=40;$i++)
+    $pdf->Cell(0,10,'Printing line number '.$i,0,1);
+$pdf->Output();
+?>
+
+

[Run]

+This example makes use of the Header() and Footer() methods to process page headers and +footers. They are called automatically. They already exist in the FPDF class but do nothing, +therefore we have to extend the class and override them. +
+
+The logo is printed with the Image() method by specifying its upper-left corner and +its width. The height is calculated automatically to respect the image proportions. +
+
+To print the page number, a null value is passed as the cell width. It means that the cell +should extend up to the right margin of the page; this is handy to center text. The current page +number is returned by the PageNo() method; as for the total number of pages, it's obtained +via the special value {nb} which is substituted when the document is finished +(provided you first called AliasNbPages()). +
+Note the use of the SetY() method which allows to set position at an absolute location in +the page, starting from the top or the bottom. +
+
+Another interesting feature is used here: the automatic page breaking. As soon as a cell would +cross a limit in the page (at 2 centimeters from the bottom by default), a break is issued +and the font restored. Although the header and footer select their own font (Arial), the body +continues with Times. This mechanism of automatic restoration also applies to colors and line +width. The limit which triggers page breaks can be set with SetAutoPageBreak(). + + diff --git a/backend/libs/fpdf/tutorial/tuto2.php b/backend/libs/fpdf/tutorial/tuto2.php new file mode 100644 index 0000000..6a1b4f8 --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto2.php @@ -0,0 +1,41 @@ +Image('logo.png',10,6,30); + // Arial bold 15 + $this->SetFont('Arial','B',15); + // Move to the right + $this->Cell(80); + // Title + $this->Cell(30,10,'Title',1,0,'C'); + // Line break + $this->Ln(20); +} + +// Page footer +function Footer() +{ + // Position at 1.5 cm from bottom + $this->SetY(-15); + // Arial italic 8 + $this->SetFont('Arial','I',8); + // Page number + $this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C'); +} +} + +// Instanciation of inherited class +$pdf = new PDF(); +$pdf->AliasNbPages(); +$pdf->AddPage(); +$pdf->SetFont('Times','',12); +for($i=1;$i<=40;$i++) + $pdf->Cell(0,10,'Printing line number '.$i,0,1); +$pdf->Output(); +?> diff --git a/backend/libs/fpdf/tutorial/tuto3.htm b/backend/libs/fpdf/tutorial/tuto3.htm new file mode 100644 index 0000000..391ca5c --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto3.htm @@ -0,0 +1,115 @@ + + + + +Line breaks and colors + + + +

Line breaks and colors

+Let's continue with an example which prints justified paragraphs. It also illustrates the use +of colors. +
+
<?php
+require('fpdf.php');
+
+class PDF extends FPDF
+{
+function Header()
+{
+    global $title;
+
+    // Arial bold 15
+    $this->SetFont('Arial','B',15);
+    // Calculate width of title and position
+    $w = $this->GetStringWidth($title)+6;
+    $this->SetX((210-$w)/2);
+    // Colors of frame, background and text
+    $this->SetDrawColor(0,80,180);
+    $this->SetFillColor(230,230,0);
+    $this->SetTextColor(220,50,50);
+    // Thickness of frame (1 mm)
+    $this->SetLineWidth(1);
+    // Title
+    $this->Cell($w,9,$title,1,1,'C',true);
+    // Line break
+    $this->Ln(10);
+}
+
+function Footer()
+{
+    // Position at 1.5 cm from bottom
+    $this->SetY(-15);
+    // Arial italic 8
+    $this->SetFont('Arial','I',8);
+    // Text color in gray
+    $this->SetTextColor(128);
+    // Page number
+    $this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C');
+}
+
+function ChapterTitle($num, $label)
+{
+    // Arial 12
+    $this->SetFont('Arial','',12);
+    // Background color
+    $this->SetFillColor(200,220,255);
+    // Title
+    $this->Cell(0,6,"Chapter $num : $label",0,1,'L',true);
+    // Line break
+    $this->Ln(4);
+}
+
+function ChapterBody($file)
+{
+    // Read text file
+    $txt = file_get_contents($file);
+    // Times 12
+    $this->SetFont('Times','',12);
+    // Output justified text
+    $this->MultiCell(0,5,$txt);
+    // Line break
+    $this->Ln();
+    // Mention in italics
+    $this->SetFont('','I');
+    $this->Cell(0,5,'(end of excerpt)');
+}
+
+function PrintChapter($num, $title, $file)
+{
+    $this->AddPage();
+    $this->ChapterTitle($num,$title);
+    $this->ChapterBody($file);
+}
+}
+
+$pdf = new PDF();
+$title = '20000 Leagues Under the Seas';
+$pdf->SetTitle($title);
+$pdf->SetAuthor('Jules Verne');
+$pdf->PrintChapter(1,'A RUNAWAY REEF','20k_c1.txt');
+$pdf->PrintChapter(2,'THE PROS AND CONS','20k_c2.txt');
+$pdf->Output();
+?>
+
+

[Run]

+The GetStringWidth() method allows to determine the length of a string in the current font, +which is used here to calculate the position and the width of the frame surrounding the title. +Then colors are set (via SetDrawColor(), SetFillColor() and SetTextColor()) and the +thickness of the line is set to 1 mm (instead of 0.2 by default) with SetLineWidth(). Finally, +we output the cell (the last parameter true indicates that the background must +be filled). +
+
+The method used to print the paragraphs is MultiCell(). Each time a line reaches the +right extremity of the cell or a carriage return character is met, a line break is issued +and a new cell automatically created under the current one. Text is justified by default. +
+
+Two document properties are defined: the title (SetTitle()) and the author (SetAuthor()). +There are several ways to view them in Adobe Reader. The first one is to open the file directly with +the reader, go to the File menu and choose the Properties option. The second one, also available from +the plug-in, is to right-click and select Document Properties. The third method is to type the Ctrl+D +key combination. + + diff --git a/backend/libs/fpdf/tutorial/tuto3.php b/backend/libs/fpdf/tutorial/tuto3.php new file mode 100644 index 0000000..3316ddb --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto3.php @@ -0,0 +1,81 @@ +SetFont('Arial','B',15); + // Calculate width of title and position + $w = $this->GetStringWidth($title)+6; + $this->SetX((210-$w)/2); + // Colors of frame, background and text + $this->SetDrawColor(0,80,180); + $this->SetFillColor(230,230,0); + $this->SetTextColor(220,50,50); + // Thickness of frame (1 mm) + $this->SetLineWidth(1); + // Title + $this->Cell($w,9,$title,1,1,'C',true); + // Line break + $this->Ln(10); +} + +function Footer() +{ + // Position at 1.5 cm from bottom + $this->SetY(-15); + // Arial italic 8 + $this->SetFont('Arial','I',8); + // Text color in gray + $this->SetTextColor(128); + // Page number + $this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C'); +} + +function ChapterTitle($num, $label) +{ + // Arial 12 + $this->SetFont('Arial','',12); + // Background color + $this->SetFillColor(200,220,255); + // Title + $this->Cell(0,6,"Chapter $num : $label",0,1,'L',true); + // Line break + $this->Ln(4); +} + +function ChapterBody($file) +{ + // Read text file + $txt = file_get_contents($file); + // Times 12 + $this->SetFont('Times','',12); + // Output justified text + $this->MultiCell(0,5,$txt); + // Line break + $this->Ln(); + // Mention in italics + $this->SetFont('','I'); + $this->Cell(0,5,'(end of excerpt)'); +} + +function PrintChapter($num, $title, $file) +{ + $this->AddPage(); + $this->ChapterTitle($num,$title); + $this->ChapterBody($file); +} +} + +$pdf = new PDF(); +$title = '20000 Leagues Under the Seas'; +$pdf->SetTitle($title); +$pdf->SetAuthor('Jules Verne'); +$pdf->PrintChapter(1,'A RUNAWAY REEF','20k_c1.txt'); +$pdf->PrintChapter(2,'THE PROS AND CONS','20k_c2.txt'); +$pdf->Output(); +?> diff --git a/backend/libs/fpdf/tutorial/tuto4.htm b/backend/libs/fpdf/tutorial/tuto4.htm new file mode 100644 index 0000000..36665d8 --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto4.htm @@ -0,0 +1,132 @@ + + + + +Multi-columns + + + +

Multi-columns

+This example is a variant of the previous one showing how to lay the text across multiple +columns. +
+
<?php
+require('fpdf.php');
+
+class PDF extends FPDF
+{
+protected $col = 0; // Current column
+protected $y0;      // Ordinate of column start
+
+function Header()
+{
+    // Page header
+    global $title;
+
+    $this->SetFont('Arial','B',15);
+    $w = $this->GetStringWidth($title)+6;
+    $this->SetX((210-$w)/2);
+    $this->SetDrawColor(0,80,180);
+    $this->SetFillColor(230,230,0);
+    $this->SetTextColor(220,50,50);
+    $this->SetLineWidth(1);
+    $this->Cell($w,9,$title,1,1,'C',true);
+    $this->Ln(10);
+    // Save ordinate
+    $this->y0 = $this->GetY();
+}
+
+function Footer()
+{
+    // Page footer
+    $this->SetY(-15);
+    $this->SetFont('Arial','I',8);
+    $this->SetTextColor(128);
+    $this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C');
+}
+
+function SetCol($col)
+{
+    // Set position at a given column
+    $this->col = $col;
+    $x = 10+$col*65;
+    $this->SetLeftMargin($x);
+    $this->SetX($x);
+}
+
+function AcceptPageBreak()
+{
+    // Method accepting or not automatic page break
+    if($this->col<2)
+    {
+        // Go to next column
+        $this->SetCol($this->col+1);
+        // Set ordinate to top
+        $this->SetY($this->y0);
+        // Keep on page
+        return false;
+    }
+    else
+    {
+        // Go back to first column
+        $this->SetCol(0);
+        // Page break
+        return true;
+    }
+}
+
+function ChapterTitle($num, $label)
+{
+    // Title
+    $this->SetFont('Arial','',12);
+    $this->SetFillColor(200,220,255);
+    $this->Cell(0,6,"Chapter $num : $label",0,1,'L',true);
+    $this->Ln(4);
+    // Save ordinate
+    $this->y0 = $this->GetY();
+}
+
+function ChapterBody($file)
+{
+    // Read text file
+    $txt = file_get_contents($file);
+    // Font
+    $this->SetFont('Times','',12);
+    // Output text in a 6 cm width column
+    $this->MultiCell(60,5,$txt);
+    $this->Ln();
+    // Mention
+    $this->SetFont('','I');
+    $this->Cell(0,5,'(end of excerpt)');
+    // Go back to first column
+    $this->SetCol(0);
+}
+
+function PrintChapter($num, $title, $file)
+{
+    // Add chapter
+    $this->AddPage();
+    $this->ChapterTitle($num,$title);
+    $this->ChapterBody($file);
+}
+}
+
+$pdf = new PDF();
+$title = '20000 Leagues Under the Seas';
+$pdf->SetTitle($title);
+$pdf->SetAuthor('Jules Verne');
+$pdf->PrintChapter(1,'A RUNAWAY REEF','20k_c1.txt');
+$pdf->PrintChapter(2,'THE PROS AND CONS','20k_c2.txt');
+$pdf->Output();
+?>
+
+

[Run]

+The key method used is AcceptPageBreak(). It allows to accept or not an automatic page +break. By refusing it and altering the margin and current position, the desired column layout +is achieved. +
+For the rest, not many changes; two properties have been added to the class to save the current +column number and the position where columns begin, and the MultiCell() call specifies a +6 centimeter width. + + diff --git a/backend/libs/fpdf/tutorial/tuto4.php b/backend/libs/fpdf/tutorial/tuto4.php new file mode 100644 index 0000000..c39b42c --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto4.php @@ -0,0 +1,109 @@ +SetFont('Arial','B',15); + $w = $this->GetStringWidth($title)+6; + $this->SetX((210-$w)/2); + $this->SetDrawColor(0,80,180); + $this->SetFillColor(230,230,0); + $this->SetTextColor(220,50,50); + $this->SetLineWidth(1); + $this->Cell($w,9,$title,1,1,'C',true); + $this->Ln(10); + // Save ordinate + $this->y0 = $this->GetY(); +} + +function Footer() +{ + // Page footer + $this->SetY(-15); + $this->SetFont('Arial','I',8); + $this->SetTextColor(128); + $this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C'); +} + +function SetCol($col) +{ + // Set position at a given column + $this->col = $col; + $x = 10+$col*65; + $this->SetLeftMargin($x); + $this->SetX($x); +} + +function AcceptPageBreak() +{ + // Method accepting or not automatic page break + if($this->col<2) + { + // Go to next column + $this->SetCol($this->col+1); + // Set ordinate to top + $this->SetY($this->y0); + // Keep on page + return false; + } + else + { + // Go back to first column + $this->SetCol(0); + // Page break + return true; + } +} + +function ChapterTitle($num, $label) +{ + // Title + $this->SetFont('Arial','',12); + $this->SetFillColor(200,220,255); + $this->Cell(0,6,"Chapter $num : $label",0,1,'L',true); + $this->Ln(4); + // Save ordinate + $this->y0 = $this->GetY(); +} + +function ChapterBody($file) +{ + // Read text file + $txt = file_get_contents($file); + // Font + $this->SetFont('Times','',12); + // Output text in a 6 cm width column + $this->MultiCell(60,5,$txt); + $this->Ln(); + // Mention + $this->SetFont('','I'); + $this->Cell(0,5,'(end of excerpt)'); + // Go back to first column + $this->SetCol(0); +} + +function PrintChapter($num, $title, $file) +{ + // Add chapter + $this->AddPage(); + $this->ChapterTitle($num,$title); + $this->ChapterBody($file); +} +} + +$pdf = new PDF(); +$title = '20000 Leagues Under the Seas'; +$pdf->SetTitle($title); +$pdf->SetAuthor('Jules Verne'); +$pdf->PrintChapter(1,'A RUNAWAY REEF','20k_c1.txt'); +$pdf->PrintChapter(2,'THE PROS AND CONS','20k_c2.txt'); +$pdf->Output(); +?> diff --git a/backend/libs/fpdf/tutorial/tuto5.htm b/backend/libs/fpdf/tutorial/tuto5.htm new file mode 100644 index 0000000..e4567ee --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto5.htm @@ -0,0 +1,134 @@ + + + + +Tables + + + +

Tables

+This tutorial shows different ways to make tables. +
+
<?php
+require('fpdf.php');
+
+class PDF extends FPDF
+{
+// Load data
+function LoadData($file)
+{
+    // Read file lines
+    $lines = file($file);
+    $data = array();
+    foreach($lines as $line)
+        $data[] = explode(';',trim($line));
+    return $data;
+}
+
+// Simple table
+function BasicTable($header, $data)
+{
+    // Header
+    foreach($header as $col)
+        $this->Cell(40,7,$col,1);
+    $this->Ln();
+    // Data
+    foreach($data as $row)
+    {
+        foreach($row as $col)
+            $this->Cell(40,6,$col,1);
+        $this->Ln();
+    }
+}
+
+// Better table
+function ImprovedTable($header, $data)
+{
+    // Column widths
+    $w = array(40, 35, 40, 45);
+    // Header
+    for($i=0;$i<count($header);$i++)
+        $this->Cell($w[$i],7,$header[$i],1,0,'C');
+    $this->Ln();
+    // Data
+    foreach($data as $row)
+    {
+        $this->Cell($w[0],6,$row[0],'LR');
+        $this->Cell($w[1],6,$row[1],'LR');
+        $this->Cell($w[2],6,number_format($row[2]),'LR',0,'R');
+        $this->Cell($w[3],6,number_format($row[3]),'LR',0,'R');
+        $this->Ln();
+    }
+    // Closing line
+    $this->Cell(array_sum($w),0,'','T');
+}
+
+// Colored table
+function FancyTable($header, $data)
+{
+    // Colors, line width and bold font
+    $this->SetFillColor(255,0,0);
+    $this->SetTextColor(255);
+    $this->SetDrawColor(128,0,0);
+    $this->SetLineWidth(.3);
+    $this->SetFont('','B');
+    // Header
+    $w = array(40, 35, 40, 45);
+    for($i=0;$i<count($header);$i++)
+        $this->Cell($w[$i],7,$header[$i],1,0,'C',true);
+    $this->Ln();
+    // Color and font restoration
+    $this->SetFillColor(224,235,255);
+    $this->SetTextColor(0);
+    $this->SetFont('');
+    // Data
+    $fill = false;
+    foreach($data as $row)
+    {
+        $this->Cell($w[0],6,$row[0],'LR',0,'L',$fill);
+        $this->Cell($w[1],6,$row[1],'LR',0,'L',$fill);
+        $this->Cell($w[2],6,number_format($row[2]),'LR',0,'R',$fill);
+        $this->Cell($w[3],6,number_format($row[3]),'LR',0,'R',$fill);
+        $this->Ln();
+        $fill = !$fill;
+    }
+    // Closing line
+    $this->Cell(array_sum($w),0,'','T');
+}
+}
+
+$pdf = new PDF();
+// Column headings
+$header = array('Country', 'Capital', 'Area (sq km)', 'Pop. (thousands)');
+// Data loading
+$data = $pdf->LoadData('countries.txt');
+$pdf->SetFont('Arial','',14);
+$pdf->AddPage();
+$pdf->BasicTable($header,$data);
+$pdf->AddPage();
+$pdf->ImprovedTable($header,$data);
+$pdf->AddPage();
+$pdf->FancyTable($header,$data);
+$pdf->Output();
+?>
+
+

[Run]

+A table being just a collection of cells, it's natural to build one from them. The first +example is achieved in the most basic way possible: simple framed cells, all of the same size +and left aligned. The result is rudimentary but very quick to obtain. +
+
+The second table brings some improvements: each column has its own width, headings are centered, +and numbers right aligned. Moreover, horizontal lines have been removed. This is done by means +of the border parameter of the Cell() method, which specifies which sides of the +cell must be drawn. Here we want the left (L) and right (R) ones. It remains +the problem of the horizontal line to finish the table. There are two possibilities: either +check for the last line in the loop, in which case we use LRB for the border +parameter; or, as done here, add the line once the loop is over. +
+
+The third table is similar to the second one but uses colors. Fill, text and line colors are +simply specified. Alternate coloring for rows is obtained by using alternatively transparent +and filled cells. + + diff --git a/backend/libs/fpdf/tutorial/tuto5.php b/backend/libs/fpdf/tutorial/tuto5.php new file mode 100644 index 0000000..252b70f --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto5.php @@ -0,0 +1,102 @@ +Cell(40,7,$col,1); + $this->Ln(); + // Data + foreach($data as $row) + { + foreach($row as $col) + $this->Cell(40,6,$col,1); + $this->Ln(); + } +} + +// Better table +function ImprovedTable($header, $data) +{ + // Column widths + $w = array(40, 35, 40, 45); + // Header + for($i=0;$iCell($w[$i],7,$header[$i],1,0,'C'); + $this->Ln(); + // Data + foreach($data as $row) + { + $this->Cell($w[0],6,$row[0],'LR'); + $this->Cell($w[1],6,$row[1],'LR'); + $this->Cell($w[2],6,number_format($row[2]),'LR',0,'R'); + $this->Cell($w[3],6,number_format($row[3]),'LR',0,'R'); + $this->Ln(); + } + // Closing line + $this->Cell(array_sum($w),0,'','T'); +} + +// Colored table +function FancyTable($header, $data) +{ + // Colors, line width and bold font + $this->SetFillColor(255,0,0); + $this->SetTextColor(255); + $this->SetDrawColor(128,0,0); + $this->SetLineWidth(.3); + $this->SetFont('','B'); + // Header + $w = array(40, 35, 40, 45); + for($i=0;$iCell($w[$i],7,$header[$i],1,0,'C',true); + $this->Ln(); + // Color and font restoration + $this->SetFillColor(224,235,255); + $this->SetTextColor(0); + $this->SetFont(''); + // Data + $fill = false; + foreach($data as $row) + { + $this->Cell($w[0],6,$row[0],'LR',0,'L',$fill); + $this->Cell($w[1],6,$row[1],'LR',0,'L',$fill); + $this->Cell($w[2],6,number_format($row[2]),'LR',0,'R',$fill); + $this->Cell($w[3],6,number_format($row[3]),'LR',0,'R',$fill); + $this->Ln(); + $fill = !$fill; + } + // Closing line + $this->Cell(array_sum($w),0,'','T'); +} +} + +$pdf = new PDF(); +// Column headings +$header = array('Country', 'Capital', 'Area (sq km)', 'Pop. (thousands)'); +// Data loading +$data = $pdf->LoadData('countries.txt'); +$pdf->SetFont('Arial','',14); +$pdf->AddPage(); +$pdf->BasicTable($header,$data); +$pdf->AddPage(); +$pdf->ImprovedTable($header,$data); +$pdf->AddPage(); +$pdf->FancyTable($header,$data); +$pdf->Output(); +?> diff --git a/backend/libs/fpdf/tutorial/tuto6.htm b/backend/libs/fpdf/tutorial/tuto6.htm new file mode 100644 index 0000000..cba890a --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto6.htm @@ -0,0 +1,154 @@ + + + + +Links and flowing text + + + +

Links and flowing text

+This tutorial explains how to insert links (internal and external) and shows a new text writing +mode. It also contains a basic HTML parser. +
+
<?php
+require('fpdf.php');
+
+class PDF extends FPDF
+{
+protected $B = 0;
+protected $I = 0;
+protected $U = 0;
+protected $HREF = '';
+
+function WriteHTML($html)
+{
+    // HTML parser
+    $html = str_replace("\n",' ',$html);
+    $a = preg_split('/<(.*)>/U',$html,-1,PREG_SPLIT_DELIM_CAPTURE);
+    foreach($a as $i=>$e)
+    {
+        if($i%2==0)
+        {
+            // Text
+            if($this->HREF)
+                $this->PutLink($this->HREF,$e);
+            else
+                $this->Write(5,$e);
+        }
+        else
+        {
+            // Tag
+            if($e[0]=='/')
+                $this->CloseTag(strtoupper(substr($e,1)));
+            else
+            {
+                // Extract attributes
+                $a2 = explode(' ',$e);
+                $tag = strtoupper(array_shift($a2));
+                $attr = array();
+                foreach($a2 as $v)
+                {
+                    if(preg_match('/([^=]*)=["\']?([^"\']*)/',$v,$a3))
+                        $attr[strtoupper($a3[1])] = $a3[2];
+                }
+                $this->OpenTag($tag,$attr);
+            }
+        }
+    }
+}
+
+function OpenTag($tag, $attr)
+{
+    // Opening tag
+    if($tag=='B' || $tag=='I' || $tag=='U')
+        $this->SetStyle($tag,true);
+    if($tag=='A')
+        $this->HREF = $attr['HREF'];
+    if($tag=='BR')
+        $this->Ln(5);
+}
+
+function CloseTag($tag)
+{
+    // Closing tag
+    if($tag=='B' || $tag=='I' || $tag=='U')
+        $this->SetStyle($tag,false);
+    if($tag=='A')
+        $this->HREF = '';
+}
+
+function SetStyle($tag, $enable)
+{
+    // Modify style and select corresponding font
+    $this->$tag += ($enable ? 1 : -1);
+    $style = '';
+    foreach(array('B', 'I', 'U') as $s)
+    {
+        if($this->$s>0)
+            $style .= $s;
+    }
+    $this->SetFont('',$style);
+}
+
+function PutLink($URL, $txt)
+{
+    // Put a hyperlink
+    $this->SetTextColor(0,0,255);
+    $this->SetStyle('U',true);
+    $this->Write(5,$txt,$URL);
+    $this->SetStyle('U',false);
+    $this->SetTextColor(0);
+}
+}
+
+$html = 'You can now easily print text mixing different styles: <b>bold</b>, <i>italic</i>,
+<u>underlined</u>, or <b><i><u>all at once</u></i></b>!<br><br>You can also insert links on
+text, such as <a href="http://www.fpdf.org">www.fpdf.org</a>, or on an image: click on the logo.';
+
+$pdf = new PDF();
+// First page
+$pdf->AddPage();
+$pdf->SetFont('Arial','',20);
+$pdf->Write(5,"To find out what's new in this tutorial, click ");
+$pdf->SetFont('','U');
+$link = $pdf->AddLink();
+$pdf->Write(5,'here',$link);
+$pdf->SetFont('');
+// Second page
+$pdf->AddPage();
+$pdf->SetLink($link);
+$pdf->Image('logo.png',10,12,30,0,'','http://www.fpdf.org');
+$pdf->SetLeftMargin(45);
+$pdf->SetFontSize(14);
+$pdf->WriteHTML($html);
+$pdf->Output();
+?>
+
+

[Run]

+The new method to print text is Write(). It's very close to MultiCell(); the differences are: +
    +
  • The end of line is at the right margin and the next line begins at the left one
  • +
  • The current position moves at the end of the text
  • +
+So it allows to write a chunk of text, alter the font style, then continue from the exact +place we left it. On the other hand, you cannot justify it. +
+
+The method is used on the first page to put a link pointing to the second one. The beginning of +the sentence is written in regular style, then we switch to underline and finish it. The link +is created with AddLink(), which returns a link identifier. The identifier is +passed as third parameter of Write(). Once the second page is created, we use SetLink() to +make the link point to the beginning of the current page. +
+
+Then we put an image with an external link on it. An external link is just a URL. It's passed as +last parameter of Image(). +
+
+Finally, the left margin is moved after the image with SetLeftMargin() and some text in +HTML format is output. A very simple HTML parser is used for this, based on regular expressions. +Recognized tags are <b>, <i>, <u>, <a> and <br>; the others are +ignored. The parser also makes use of the Write() method. An external link is put the same way as +an internal one (third parameter of Write()). Note that Cell() also allows to put links. + + diff --git a/backend/libs/fpdf/tutorial/tuto6.php b/backend/libs/fpdf/tutorial/tuto6.php new file mode 100644 index 0000000..427e4d3 --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto6.php @@ -0,0 +1,113 @@ +/U',$html,-1,PREG_SPLIT_DELIM_CAPTURE); + foreach($a as $i=>$e) + { + if($i%2==0) + { + // Text + if($this->HREF) + $this->PutLink($this->HREF,$e); + else + $this->Write(5,$e); + } + else + { + // Tag + if($e[0]=='/') + $this->CloseTag(strtoupper(substr($e,1))); + else + { + // Extract attributes + $a2 = explode(' ',$e); + $tag = strtoupper(array_shift($a2)); + $attr = array(); + foreach($a2 as $v) + { + if(preg_match('/([^=]*)=["\']?([^"\']*)/',$v,$a3)) + $attr[strtoupper($a3[1])] = $a3[2]; + } + $this->OpenTag($tag,$attr); + } + } + } +} + +function OpenTag($tag, $attr) +{ + // Opening tag + if($tag=='B' || $tag=='I' || $tag=='U') + $this->SetStyle($tag,true); + if($tag=='A') + $this->HREF = $attr['HREF']; + if($tag=='BR') + $this->Ln(5); +} + +function CloseTag($tag) +{ + // Closing tag + if($tag=='B' || $tag=='I' || $tag=='U') + $this->SetStyle($tag,false); + if($tag=='A') + $this->HREF = ''; +} + +function SetStyle($tag, $enable) +{ + // Modify style and select corresponding font + $this->$tag += ($enable ? 1 : -1); + $style = ''; + foreach(array('B', 'I', 'U') as $s) + { + if($this->$s>0) + $style .= $s; + } + $this->SetFont('',$style); +} + +function PutLink($URL, $txt) +{ + // Put a hyperlink + $this->SetTextColor(0,0,255); + $this->SetStyle('U',true); + $this->Write(5,$txt,$URL); + $this->SetStyle('U',false); + $this->SetTextColor(0); +} +} + +$html = 'You can now easily print text mixing different styles: bold, italic, +underlined, or all at once!

You can also insert links on +text, such as www.fpdf.org, or on an image: click on the logo.'; + +$pdf = new PDF(); +// First page +$pdf->AddPage(); +$pdf->SetFont('Arial','',20); +$pdf->Write(5,"To find out what's new in this tutorial, click "); +$pdf->SetFont('','U'); +$link = $pdf->AddLink(); +$pdf->Write(5,'here',$link); +$pdf->SetFont(''); +// Second page +$pdf->AddPage(); +$pdf->SetLink($link); +$pdf->Image('logo.png',10,12,30,0,'','http://www.fpdf.org'); +$pdf->SetLeftMargin(45); +$pdf->SetFontSize(14); +$pdf->WriteHTML($html); +$pdf->Output(); +?> diff --git a/backend/libs/fpdf/tutorial/tuto7.htm b/backend/libs/fpdf/tutorial/tuto7.htm new file mode 100644 index 0000000..8074295 --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto7.htm @@ -0,0 +1,182 @@ + + + + +Adding new fonts and encodings + + + +

Adding new fonts and encodings

+This tutorial explains how to use TrueType, OpenType and Type1 fonts so that you are not limited to the +standard fonts anymore. The other benefit is that you can choose the text encoding, which allows you to +use other languages than the Western ones (the standard fonts support only cp1252 aka windows-1252). +
+
+For OpenType, only the format based on TrueType is supported (not the one based on Type1).
+For Type1, you will need the corresponding AFM file (it is usually provided with the font). +
+
+Adding a new font requires two steps: +
    +
  • Generation of the font definition file
  • +
  • Declaration of the font in the script
  • +
+ +

Generation of the font definition file

+The first step consists in generating a PHP file containing all the information needed by FPDF; +in addition, the font file is compressed. To do this, a helper script is provided in the makefont +directory of the package: makefont.php. It contains the following function: +
+
+MakeFont(string fontfile [, string enc [, boolean embed [, boolean subset]]]) +
+
fontfile
+
+

Path to the .ttf, .otf or .pfb file.

+
+
enc
+
+

Name of the encoding to use. Default value: cp1252.

+
+
embed
+
+

Whether to embed the font or not. Default value: true.

+
+
subset
+
+

Whether to subset the font or not. Default value: true.

+
+
+The first parameter is the name of the font file. The extension must be either .ttf, .otf or .pfb and +determines the font type. If your Type1 font is in ASCII format (.pfa), you can convert it to binary +(.pfb) with the help of t1utils. +
+
+For Type1 fonts, the corresponding .afm file must be present in the same directory. +
+
+The encoding defines the association between a code (from 0 to 255) and a character. The first 128 are +always the same and correspond to ASCII; the following are variable. Encodings are stored in .map +files. The available ones are: +
    +
  • cp1250 (Central Europe)
  • +
  • cp1251 (Cyrillic)
  • +
  • cp1252 (Western Europe)
  • +
  • cp1253 (Greek)
  • +
  • cp1254 (Turkish)
  • +
  • cp1255 (Hebrew)
  • +
  • cp1257 (Baltic)
  • +
  • cp1258 (Vietnamese)
  • +
  • cp874 (Thai)
  • +
  • ISO-8859-1 (Western Europe)
  • +
  • ISO-8859-2 (Central Europe)
  • +
  • ISO-8859-4 (Baltic)
  • +
  • ISO-8859-5 (Cyrillic)
  • +
  • ISO-8859-7 (Greek)
  • +
  • ISO-8859-9 (Turkish)
  • +
  • ISO-8859-11 (Thai)
  • +
  • ISO-8859-15 (Western Europe)
  • +
  • ISO-8859-16 (Central Europe)
  • +
  • KOI8-R (Russian)
  • +
  • KOI8-U (Ukrainian)
  • +
+Of course, the font must contain the characters corresponding to the selected encoding. +
+
+The third parameter indicates whether the font should be embedded in the PDF or not. When a font is +not embedded, it is searched in the system. The advantage is that the PDF file is smaller; on the +other hand, if it is not available, then a substitution font is used. So you should ensure that the +needed font is installed on the client systems. Embedding is the recommended option to guarantee a +correct rendering. +
+
+The last parameter indicates whether subsetting should be used, that is to say, whether only +the characters from the selected encoding should be kept in the embedded font. As a result, +the size of the PDF file can be greatly reduced, especially if the original font was big. +
+
+After you have called the function (create a new file for this and include makefont.php), a .php file +is created, with the same name as the font file. You may rename it if you wish. If the case of embedding, +the font file is compressed and gives a second file with .z as extension (except if the compression +function is not available, it requires Zlib). You may rename it too, but in this case you have to change +the variable $file in the .php file accordingly. +
+
+Example: +
+
<?php
+require('makefont/makefont.php');
+
+MakeFont('C:\\Windows\\Fonts\\comic.ttf','cp1252');
+?>
+
+which gives the files comic.php and comic.z. +
+
+Then copy the generated files to the font directory. If the font file could not be compressed, copy +it directly instead of the .z version. +
+
+Another way to call MakeFont() is through the command line: +
+
+php makefont\makefont.php C:\Windows\Fonts\comic.ttf cp1252 +
+
+Finally, for TrueType and OpenType fonts, you can also generate the files +online instead of doing it manually. + +

Declaration of the font in the script

+The second step is simple. You just need to call the AddFont() method: +
+
$pdf->AddFont('Comic','','comic.php');
+
+
+And the font is now available (in regular and underlined styles), usable like the others. If we +had worked with Comic Sans MS Bold (comicbd.ttf), we would have written: +
+
$pdf->AddFont('Comic','B','comicbd.php');
+
+
+ +

Example

+Now let's see a complete example. We will use the Ceviche One font. +The first step is the generation of the font files: +
+
<?php
+require('makefont/makefont.php');
+
+MakeFont('CevicheOne-Regular.ttf','cp1252');
+?>
+
+The script produces the following output: +
+
+Font file compressed: CevicheOne-Regular.z
+Font definition file generated: CevicheOne-Regular.php
+
+Alternatively we could have used the command line: +
+
+php makefont\makefont.php CevicheOne-Regular.ttf cp1252 +
+
+or used the online generator. +
+
+We can now copy the two generated files to the font directory and write the script: +
+
<?php
+require('fpdf.php');
+
+$pdf = new FPDF();
+$pdf->AddFont('CevicheOne','','CevicheOne-Regular.php');
+$pdf->AddPage();
+$pdf->SetFont('CevicheOne','',45);
+$pdf->Write(10,'Enjoy new fonts with FPDF!');
+$pdf->Output();
+?>
+
+

[Run]

+ + diff --git a/backend/libs/fpdf/tutorial/tuto7.php b/backend/libs/fpdf/tutorial/tuto7.php new file mode 100644 index 0000000..d6e3fa9 --- /dev/null +++ b/backend/libs/fpdf/tutorial/tuto7.php @@ -0,0 +1,10 @@ +AddFont('CevicheOne','','CevicheOne-Regular.php','.'); +$pdf->AddPage(); +$pdf->SetFont('CevicheOne','',45); +$pdf->Write(10,'Enjoy new fonts with FPDF!'); +$pdf->Output(); +?> diff --git a/backend/libs/registration/logo.jpg b/backend/libs/registration/logo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6cdc95be5b414c45ee8598a469fb86e04afbe352 GIT binary patch literal 143979 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⁣O1fye-nqS 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 P{#V+P{%S7D-$(yHT~*Dc literal 0 HcmV?d00001 diff --git a/backend/libs/registration/registration.php b/backend/libs/registration/registration.php new file mode 100644 index 0000000..cd4eb09 --- /dev/null +++ b/backend/libs/registration/registration.php @@ -0,0 +1,270 @@ +Image( 'logo.jpg',12,6,30); + // Arial bold 15 + $this->SetFont('Arial','B',16); + // Move to the right + $this->Cell(72); + + // Title + $this->SetTextColor(65,28,204); + $this->Cell(50,10,'Anmeldebestätigung',0,0,'C'); + + // Logo + $this->Image('logo.jpg',168,6,30); + + // Deco + $this->Image('header.png',16,45); + + // Line break + $this->Ln(42); + } + + // Page footer + function Footer() + { + // Position at 1.5 cm from bottom + $this->SetY(-17); + + // Deco + $this->Image('footer.png',41,275); + + // Arial 8 + $this->SetFont('Arial','',8); + $this->SetTextColor(65,28,204); + + // Contact info + $this->Cell(0,5,'Li-Dance Tanz- und Sportschule • Inh. Lydia Kolepp • Dieselstrasse 10 • 61231 Bad Nauheim',0,1,'C'); + $this->Ln(1); + $this->Cell(0,5,'Telefon: 060 32 / 78 48 644 • Email: info@li-dance.com • Web: www.li-dance.com',0,1,'C'); + } +} + +function getRegistrationPdf($data) { + + $totalmargin = 32; + $leftmargin = $totalmargin + 10; + $leftcolumnwidth = 40; + $fillcolumnwidth = 0; + $columnheight = 10; + + // Instanciation of inherited class + $pdf = new PDF(); + $pdf->AliasNbPages(); + $pdf->AddPage(); + + $pdf->SetFont('Arial','B', 14); + $pdf->Cell($totalmargin); + $pdf->Cell($fillcolumnwidth,$columnheight,'Ihre Daten',0,1); + $pdf->Ln(5); + + $pdf->SetFont('Arial','',12); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'Vorname: ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, $data->firstname , 0, 1); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'Nachname: ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, $data->lastname , 0, 1); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'Geburtsdatum: ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, $data->birthdate , 0, 1); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'Geschlecht: ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, $data->gender , 0, 1); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'Adresse: ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, $data->street . ' ' . $data->house . ', ' . $data->zip . ' ' . $data->city , 0, 1); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'Telefon: ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, $data->phone , 0, 1); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'E-Mail: ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, $data->email , 0, 1); + + $pdf->Ln(10); + + $pdf->SetFont('Arial','B', 14); + $pdf->Cell($totalmargin); + $pdf->Cell($fillcolumnwidth,$columnheight,'Ihre Bankdaten',0,1); + + $pdf->Ln(5); + + $pdf->SetFont('Arial','',12); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'Kontoinhaber: ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, $data->accountholder , 0, 1); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'IBAN: ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, $data->iban , 0, 1); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'BIC: ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, $data->bic , 0, 1); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'Bank: ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, $data->bank , 0, 1); + + $pdf->Ln(10); + + $pdf->SetFont('Arial','B', 14); + $pdf->Cell($totalmargin); + $pdf->Cell($fillcolumnwidth,$columnheight,'Ihre Mitgliedschaft:' , 0, 1); + + $pdf->Ln(5); + + $pdf->SetFont('Arial','',12); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'Beginn ab: ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, $data->registrationFrom, 0, 1); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'Monatsbeitrag: ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, $data->rate, 0, 1); + + $pdf->Cell($leftmargin); + $pdf->Cell($leftcolumnwidth, $columnheight, 'Anmeldung (einm.): ' , 0, 0); + $pdf->Cell($fillcolumnwidth, $columnheight, "15,00" . chr(128) , 0, 1); + + return $pdf->Output('S'); +} + + +function getRegistrationDate() { + $today = new DateTime(); + $currentYear = $today->format('Y'); + $currentMonth = $today->format('m'); + $currentDate = $today->format('d'); + + if ($currentDate === 1) { + return new DateTime("$currentYear-$currentMonth-01"); // Today is the 1st of the month. + } elseif ($currentDate <= 20) { + return new DateTime("$currentYear-$currentMonth-15"); // Return the 15th of the current month. + } else { + $nextMonth = $today->modify('first day of next month'); // Advance to the first day of the next month. + return $nextMonth; + } +} + +function getRegistrationPrice($input) { + // Convert input to DateTime object + try { + $birthdate = new DateTime($input); + } catch (Exception $e) { + return 0; // Return 0 if the birthdate is invalid + } + + $currentDate = new DateTime(); + $monthDifference = $currentDate->format('m') - $birthdate->format('m'); + $age = $currentDate->format('Y') - $birthdate->format('Y'); + + // Adjust age if the birthdate hasn't occurred yet this year + if ($monthDifference < 0 || ($monthDifference == 0 && $currentDate->format('d') < $birthdate->format('d'))) { + $age--; + } + + if ($age >= 4 && $age <= 6) { + return 37; + } elseif ($age >= 7 && $age <= 17) { + return 40; + } elseif ($age >= 18) { + return 50; + } else { + return 0; + } +} + + +function sendRegistrationMail($data) { + + $to = REGISTRATION_MAIL; + $title = 'Neue Anmeldung bei Li-Dance'; + $message = " + Neue Anmeldung bei Li-Dance +

{$data->firstname} {$data->lastname} aus {$data->city} hat sich angemeldet.

+
+ "; + + $header[] = 'MIME-Version: 1.0'; + $header[] = 'Content-type: text/html; charset=iso-8859-1'; + $header[] = 'To: ' . REGISTRATION_MAIL; + $header[] = 'From: ' . REGISTRATION_FROM; + $header[] = 'X-Mailer: PHP/' . phpversion(); + + mb_send_mail($to, $title, $message, implode("\r\n", $header)); +} + + +function sendConfirmationMail($data) { + $to = "{$data->email}"; // addresses to email pdf to + $from = REGISTRATION_FROM; // address message is sent from + $subject = utf8_encode("Registrierungsbestätigung!"); // email subject + $body = "

Herzlich willkommen bei Li-Dance!

" . + "

Hallo {$data->firstname} {$data->lastname}!

" . + "

Sie haben sich nun bei der Tanz- und Sportschule Li-Dance registriert. Im Anhang finden Sie Ihre Registrierungsbestätigung.

". + "
" . + "

Wenn Sie sich nicht registrieren wollten, melden Sie sich bitte unverzüglich bei uns, wir werden das Problem dann gemeinsam mit Ihnen klären.

" . + "

Dies ist eine automatisch generierte E-Mail

" . + "

" . + "

Tanz- und Sportschule Li-Dance" . + "
Inh. Lydia Kolepp" . + "
Dieselstr. 10" . + "
61231 Bad Nauheim" . + "
Tel. 06032 7848644" . + "
Mail info@li-dance.de

"; // email body + $pdfLocation = $data->pdfcontent; // file location + $pdfName = $data->pdfname; // pdf file name recipient will get + $filetype = "application/pdf"; // type + + // create headers and mime boundry + $eol = PHP_EOL; + $semi_rand = md5(time()); + + $mime_boundary = "==Multipart_Boundary_x{$semi_rand}x"; + $headers = "From: $from$eol" . + "MIME-Version: 1.0$eol" . + "Content-Type: multipart/mixed;$eol" . + " boundary=\"$mime_boundary\""; + + // add html message body + $message = "--$mime_boundary$eol" . + "Content-Type: text/html; charset=\"iso-8859-1\"$eol" . + "Content-Transfer-Encoding: 7bit$eol$eol" . + $body . $eol; + + // fetch pdf + $pdf = chunk_split(base64_encode($data->pdfcontent)); + + // attach pdf to email + $message .= "--$mime_boundary$eol" . + "Content-Type: $filetype;$eol" . + " name=\"$pdfName\"$eol" . + "Content-Disposition: attachment;$eol" . + " filename=\"$pdfName\"$eol" . + "Content-Transfer-Encoding: base64$eol$eol" . + $pdf . $eol . + "--$mime_boundary--"; + + // Send the email + return mail($to, $subject, $message, $headers); +} + + +?> \ No newline at end of file diff --git a/backend/utils/config.php b/backend/utils/config.php index e002598..14e7b18 100644 --- a/backend/utils/config.php +++ b/backend/utils/config.php @@ -8,9 +8,11 @@ define('DB_NAME','db308647'); define('IMAGE_PATH', dirname($_SERVER["REQUEST_URI"]) . '/images/'); define('MAGIC_WORD', 'AED717B292EE4F08A0AEE4EBA4B1B1FA'); define('MAGIC_DATE', 'YmdHi'); -define('API_KEY', '754259b6-caf0-4eca-a1f6-812731adae79'); +define('PUBLIC_API_KEY', '754259b6-caf0-4eca-a1f6-812731adae79'); +define('INTERNAL_API_KEY', '1ca6fc7d-d5b8-473c-a44d-a8c9098e2940'); define('REGISTRATION_MAIL', 'info@li-dance.de'); define('REGISTRATION_URL', 'https://test.li-dance.de/registrations'); +define('REGISTRATION_FROM', 'Li-Dance Registrierung '); ?> \ No newline at end of file diff --git a/backend/utils/tools.php b/backend/utils/tools.php index ba36088..b557fae 100644 --- a/backend/utils/tools.php +++ b/backend/utils/tools.php @@ -11,6 +11,16 @@ function umlaute($string) { return $string; } +function gender($num) { + switch ($num) + { + case 0: return 'M'; + case 1: return 'W'; + case 2: return 'D'; + default: return 'unbekannt'; + } +} + function escape($connection, $string) { return str_replace('\n','', trim(mysqli_real_escape_string($connection, $string))); } @@ -43,20 +53,4 @@ function login( $token ) { return ($expectedToken === $token); } -function registrationDate() { - $today = new DateTime(); - $currentYear = $today->format('Y'); - $currentMonth = $today->format('m'); - $currentDate = $today->format('d'); - - if ($currentDate === 1) { - return new DateTime("$currentYear-$currentMonth-01"); // Today is the 1st of the month. - } elseif ($currentDate <= 20) { - return new DateTime("$currentYear-$currentMonth-15"); // Return the 15th of the current month. - } else { - $nextMonth = $today->modify('first day of next month'); // Advance to the first day of the next month. - return $nextMonth; - } -} - ?> \ No newline at end of file diff --git a/frontend/src/app/app.component.ts b/frontend/src/app/app.component.ts index 130e851..c4da062 100644 --- a/frontend/src/app/app.component.ts +++ b/frontend/src/app/app.component.ts @@ -1,10 +1,20 @@ -import { Component } from '@angular/core'; +import { Component, OnInit } from '@angular/core'; +import { MatIconRegistry } from '@angular/material/icon'; @Component({ selector: 'li-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'], }) -export class AppComponent { + +export class AppComponent implements OnInit { + constructor( + private matIconReg: MatIconRegistry + ) {} + title = 'li-dance-backoffice'; -} + + ngOnInit(): void { + this.matIconReg.setDefaultFontSetClass('material-symbols-outlined'); + } +} \ No newline at end of file diff --git a/frontend/src/app/components/registrations/registration-list/registration-list.component.html b/frontend/src/app/components/registrations/registration-list/registration-list.component.html index 9ce1191..7f7543e 100644 --- a/frontend/src/app/components/registrations/registration-list/registration-list.component.html +++ b/frontend/src/app/components/registrations/registration-list/registration-list.component.html @@ -27,7 +27,7 @@ - + delete +
@@ -160,8 +160,9 @@

Einverständniserklärung zur Nutzung von Bild- und Videomaterial
-
+

Ihr monatlicher Beitrag: {{registrationPrice | currency: 'EUR' }}

+

Ihr einmalige Anmeldegebühr: {{'15' | currency: 'EUR' }}

@@ -180,3 +181,15 @@
+
+
+
+

Registrierung erfolgreich abgeschlossen!

+

Sie erhalten in Kürze eine Bestätigung per E-Mail

+

Herzlich willkommen bei Li-Dance!

+
+ +
+
diff --git a/frontend/src/app/components/registrations/registration-wizard/registration-wizard.component.scss b/frontend/src/app/components/registrations/registration-wizard/registration-wizard.component.scss index 6730ae7..e04f96f 100644 --- a/frontend/src/app/components/registrations/registration-wizard/registration-wizard.component.scss +++ b/frontend/src/app/components/registrations/registration-wizard/registration-wizard.component.scss @@ -1,3 +1,4 @@ +.finalizator, .stepperContainer { display: flex; justify-content: space-around; @@ -35,12 +36,12 @@ .leftContainer { display: flex; flex-direction: column; - width: 45%; + width: 48%; } .rightContainer { display: flex; flex-direction: column; - width: 45%; + width: 48%; } .backButton { @@ -56,7 +57,6 @@ p { text-align: justify; } - } .big { @@ -68,6 +68,10 @@ } } +.message { + margin-top: 2em; +} + textarea { font-family: inherit; padding: 5px; diff --git a/frontend/src/app/components/registrations/registration-wizard/registration-wizard.component.ts b/frontend/src/app/components/registrations/registration-wizard/registration-wizard.component.ts index d25dc72..4780eca 100644 --- a/frontend/src/app/components/registrations/registration-wizard/registration-wizard.component.ts +++ b/frontend/src/app/components/registrations/registration-wizard/registration-wizard.component.ts @@ -23,6 +23,8 @@ export const MY_DATE_FORMAT= { styleUrls: ['./registration-wizard.component.scss'], }) export class RegistrationWizardComponent implements OnInit { + finished: boolean = false; + firstFormGroup!: FormGroup; secondFormGroup!: FormGroup; thirdFormGroup!: FormGroup; @@ -199,6 +201,6 @@ export class RegistrationWizardComponent implements OnInit { multimediaConsent: this.thirdFormGroup.get('multimediaConsent')?.value }; - this.registrationsService.set(studentRegistration).subscribe(); + this.registrationsService.set(studentRegistration).subscribe(result => { this.finished = true; }); } } diff --git a/frontend/src/app/components/students/student-list/student-list.component.html b/frontend/src/app/components/students/student-list/student-list.component.html index 3574851..8bdd3ab 100644 --- a/frontend/src/app/components/students/student-list/student-list.component.html +++ b/frontend/src/app/components/students/student-list/student-list.component.html @@ -61,9 +61,9 @@ - + + delete + 0 ? student.enrollments?.map(e => e.name).join(', ') - : '+'; + : ''; } } diff --git a/frontend/src/app/services/courses/courses.service.ts b/frontend/src/app/services/courses/courses.service.ts index 1a7f57a..6d145ec 100644 --- a/frontend/src/app/services/courses/courses.service.ts +++ b/frontend/src/app/services/courses/courses.service.ts @@ -9,7 +9,7 @@ import { environment } from 'src/environments/environment'; }) export class CoursesService { private readonly serviceName = 'courses'; - private readonly headers = { headers: new HttpHeaders({ "Authorization": environment.apiKey })}; + private readonly headers = { headers: new HttpHeaders({ "Authorization": environment.apiKeyInternal })}; constructor(private http: HttpClient) {} diff --git a/frontend/src/app/services/enroll/enroll.service.ts b/frontend/src/app/services/enroll/enroll.service.ts index b735386..37deef3 100644 --- a/frontend/src/app/services/enroll/enroll.service.ts +++ b/frontend/src/app/services/enroll/enroll.service.ts @@ -11,7 +11,7 @@ import { environment } from 'src/environments/environment'; }) export class EnrollService { private readonly serviceName = 'enroll'; - private readonly headers = { headers: new HttpHeaders({ "Authorization": environment.apiKey })}; + private readonly headers = { headers: new HttpHeaders({ "Authorization": environment.apiKeyInternal })}; constructor(private http: HttpClient) {} diff --git a/frontend/src/app/services/registrations/registrations.service.ts b/frontend/src/app/services/registrations/registrations.service.ts index dc76734..e98fdd7 100644 --- a/frontend/src/app/services/registrations/registrations.service.ts +++ b/frontend/src/app/services/registrations/registrations.service.ts @@ -9,7 +9,7 @@ import { environment } from 'src/environments/environment'; }) export class RegistrationsService { private readonly serviceName = 'registrations'; - private readonly headers = { headers: new HttpHeaders({ "Authorization": environment.apiKey })}; + private readonly headers = { headers: new HttpHeaders({ "Authorization": environment.apiKeyPublic })}; constructor(private http: HttpClient) { } diff --git a/frontend/src/app/services/students/students.service.ts b/frontend/src/app/services/students/students.service.ts index df1ad05..e4d353a 100644 --- a/frontend/src/app/services/students/students.service.ts +++ b/frontend/src/app/services/students/students.service.ts @@ -9,7 +9,7 @@ import { environment } from 'src/environments/environment'; }) export class StudentsService { private readonly serviceName = 'students'; - private readonly headers = { headers: new HttpHeaders({ "Authorization": environment.apiKey })}; + private readonly headers = { headers: new HttpHeaders({ "Authorization": environment.apiKeyInternal })}; constructor(private http: HttpClient) {} diff --git a/frontend/src/app/services/visits/visits.service.ts b/frontend/src/app/services/visits/visits.service.ts index ba129c2..bc90481 100644 --- a/frontend/src/app/services/visits/visits.service.ts +++ b/frontend/src/app/services/visits/visits.service.ts @@ -11,7 +11,7 @@ import { environment } from 'src/environments/environment'; }) export class VisitsService { private readonly serviceName = 'visits'; - private readonly headers = { headers: new HttpHeaders({ "Authorization": environment.apiKey })}; + private readonly headers = { headers: new HttpHeaders({ "Authorization": environment.apiKeyInternal })}; constructor(private http: HttpClient) {} diff --git a/frontend/src/environments/environment.prod.ts b/frontend/src/environments/environment.prod.ts index 4d4cbb8..014cd4b 100644 --- a/frontend/src/environments/environment.prod.ts +++ b/frontend/src/environments/environment.prod.ts @@ -1,5 +1,6 @@ export const environment = { production: true, apiUrl: 'https://li-dance.de/plan/api/', - apiKey: '754259b6-caf0-4eca-a1f6-812731adae79', + apiKeyPublic: '754259b6-caf0-4eca-a1f6-812731adae79', + apiKeyInternal: '1ca6fc7d-d5b8-473c-a44d-a8c9098e2940', }; diff --git a/frontend/src/environments/environment.ts b/frontend/src/environments/environment.ts index 14877d2..a6aa7b8 100644 --- a/frontend/src/environments/environment.ts +++ b/frontend/src/environments/environment.ts @@ -5,7 +5,8 @@ export const environment = { production: false, apiUrl: 'https://li-dance.de/plan/api/', - apiKey: '754259b6-caf0-4eca-a1f6-812731adae79', + apiKeyPublic: '754259b6-caf0-4eca-a1f6-812731adae79', + apiKeyInternal: '1ca6fc7d-d5b8-473c-a44d-a8c9098e2940', }; /* diff --git a/frontend/src/index.html b/frontend/src/index.html index 4e9bccf..220a0c6 100644 --- a/frontend/src/index.html +++ b/frontend/src/index.html @@ -11,7 +11,7 @@ href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet" />

Btte bearbeite diese möglichst schnell: Zur Anmeldung

Btte bearbeite diese möglichst schnell: Zur Anmeldung