├── .gitignore ├── CHANGELOG ├── LICENSE.md ├── README.md ├── app ├── code │ └── local │ │ └── Comwrap │ │ └── Pdf │ │ ├── Block │ │ ├── Abstract.php │ │ ├── Creditmemo.php │ │ ├── Invoice.php │ │ └── Shipment.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── Resource │ │ │ ├── Abstract.php │ │ │ ├── Creditmemo.php │ │ │ ├── Invoice.php │ │ │ └── Shipment.php │ │ └── Sales │ │ │ └── Order │ │ │ └── Pdf │ │ │ ├── Abstract.php │ │ │ ├── Creditmemo.php │ │ │ ├── Invoice.php │ │ │ └── Shipment.php │ │ ├── controllers │ │ └── TestController.php │ │ ├── etc │ │ └── config.xml │ │ ├── lib │ │ └── MPDF56 │ │ │ ├── CHANGELOG.txt │ │ │ ├── CREDITS.txt │ │ │ ├── FONT INFO.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── classes │ │ │ ├── barcode.php │ │ │ ├── bmp.php │ │ │ ├── cssmgr.php │ │ │ ├── directw.php │ │ │ ├── form.php │ │ │ ├── gif.php │ │ │ ├── grad.php │ │ │ ├── indic.php │ │ │ ├── meter.php │ │ │ ├── svg.php │ │ │ ├── tocontents.php │ │ │ ├── ttfontsuni.php │ │ │ ├── ttfontsuni_analysis.php │ │ │ └── wmf.php │ │ │ ├── compress.php │ │ │ ├── config.php │ │ │ ├── config_cp.php │ │ │ ├── config_fonts.php │ │ │ ├── font │ │ │ ├── ccourier.php │ │ │ ├── ccourierb.php │ │ │ ├── ccourierbi.php │ │ │ ├── ccourieri.php │ │ │ ├── chelvetica.php │ │ │ ├── chelveticab.php │ │ │ ├── chelveticabi.php │ │ │ ├── chelveticai.php │ │ │ ├── csymbol.php │ │ │ ├── ctimes.php │ │ │ ├── ctimesb.php │ │ │ ├── ctimesbi.php │ │ │ ├── ctimesi.php │ │ │ └── czapfdingbats.php │ │ │ ├── graph.php │ │ │ ├── graph_cache │ │ │ └── dummy.txt │ │ │ ├── iccprofiles │ │ │ ├── SWOP2006_Coated5v2.icc │ │ │ └── sRGB_IEC61966-2-1.icc │ │ │ ├── includes │ │ │ ├── CJKdata.php │ │ │ ├── functions.php │ │ │ ├── ind_bn_1_001.volt.php │ │ │ ├── ind_gu_1_001.volt.php │ │ │ ├── ind_hi_1_001.volt.php │ │ │ ├── ind_kn_1_001.volt.php │ │ │ ├── ind_ml_1_001.volt.php │ │ │ ├── ind_or_1_001.volt.php │ │ │ ├── ind_pa_1_001.volt.php │ │ │ ├── ind_ta_1_001.volt.php │ │ │ ├── ind_te_1_001.volt.php │ │ │ ├── no_image.jpg │ │ │ ├── out.php │ │ │ ├── subs_core.php │ │ │ ├── subs_win-1252.php │ │ │ └── upperCase.php │ │ │ ├── mpdf.css │ │ │ ├── mpdf.php │ │ │ ├── mpdfi │ │ │ ├── filters │ │ │ │ ├── FilterASCII85.php │ │ │ │ └── FilterLZW.php │ │ │ ├── fpdi_pdf_parser.php │ │ │ ├── pdf_context.php │ │ │ └── pdf_parser.php │ │ │ ├── patterns │ │ │ ├── NOTES.txt │ │ │ ├── de.php │ │ │ ├── dictionary.txt │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fi.php │ │ │ ├── fr.php │ │ │ ├── it.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── ru.php │ │ │ └── sv.php │ │ │ ├── progbar.css │ │ │ ├── qrcode │ │ │ ├── _LGPL.txt │ │ │ ├── _lisez_moi.txt │ │ │ ├── data │ │ │ │ ├── dummy.txt │ │ │ │ ├── modele1.dat │ │ │ │ ├── modele10.dat │ │ │ │ ├── modele11.dat │ │ │ │ ├── modele12.dat │ │ │ │ ├── modele13.dat │ │ │ │ ├── modele14.dat │ │ │ │ ├── modele15.dat │ │ │ │ ├── modele16.dat │ │ │ │ ├── modele17.dat │ │ │ │ ├── modele18.dat │ │ │ │ ├── modele19.dat │ │ │ │ ├── modele2.dat │ │ │ │ ├── modele20.dat │ │ │ │ ├── modele21.dat │ │ │ │ ├── modele22.dat │ │ │ │ ├── modele23.dat │ │ │ │ ├── modele24.dat │ │ │ │ ├── modele25.dat │ │ │ │ ├── modele26.dat │ │ │ │ ├── modele27.dat │ │ │ │ ├── modele28.dat │ │ │ │ ├── modele29.dat │ │ │ │ ├── modele3.dat │ │ │ │ ├── modele30.dat │ │ │ │ ├── modele31.dat │ │ │ │ ├── modele32.dat │ │ │ │ ├── modele33.dat │ │ │ │ ├── modele34.dat │ │ │ │ ├── modele35.dat │ │ │ │ ├── modele36.dat │ │ │ │ ├── modele37.dat │ │ │ │ ├── modele38.dat │ │ │ │ ├── modele39.dat │ │ │ │ ├── modele4.dat │ │ │ │ ├── modele40.dat │ │ │ │ ├── modele5.dat │ │ │ │ ├── modele6.dat │ │ │ │ ├── modele7.dat │ │ │ │ ├── modele8.dat │ │ │ │ ├── modele9.dat │ │ │ │ ├── qrv10_0.dat │ │ │ │ ├── qrv10_1.dat │ │ │ │ ├── qrv10_2.dat │ │ │ │ ├── qrv10_3.dat │ │ │ │ ├── qrv11_0.dat │ │ │ │ ├── qrv11_1.dat │ │ │ │ ├── qrv11_2.dat │ │ │ │ ├── qrv11_3.dat │ │ │ │ ├── qrv12_0.dat │ │ │ │ ├── qrv12_1.dat │ │ │ │ ├── qrv12_2.dat │ │ │ │ ├── qrv12_3.dat │ │ │ │ ├── qrv13_0.dat │ │ │ │ ├── qrv13_1.dat │ │ │ │ ├── qrv13_2.dat │ │ │ │ ├── qrv13_3.dat │ │ │ │ ├── qrv14_0.dat │ │ │ │ ├── qrv14_1.dat │ │ │ │ ├── qrv14_2.dat │ │ │ │ ├── qrv14_3.dat │ │ │ │ ├── qrv15_0.dat │ │ │ │ ├── qrv15_1.dat │ │ │ │ ├── qrv15_2.dat │ │ │ │ ├── qrv15_3.dat │ │ │ │ ├── qrv16_0.dat │ │ │ │ ├── qrv16_1.dat │ │ │ │ ├── qrv16_2.dat │ │ │ │ ├── qrv16_3.dat │ │ │ │ ├── qrv17_0.dat │ │ │ │ ├── qrv17_1.dat │ │ │ │ ├── qrv17_2.dat │ │ │ │ ├── qrv17_3.dat │ │ │ │ ├── qrv18_0.dat │ │ │ │ ├── qrv18_1.dat │ │ │ │ ├── qrv18_2.dat │ │ │ │ ├── qrv18_3.dat │ │ │ │ ├── qrv19_0.dat │ │ │ │ ├── qrv19_1.dat │ │ │ │ ├── qrv19_2.dat │ │ │ │ ├── qrv19_3.dat │ │ │ │ ├── qrv1_0.dat │ │ │ │ ├── qrv1_1.dat │ │ │ │ ├── qrv1_2.dat │ │ │ │ ├── qrv1_3.dat │ │ │ │ ├── qrv20_0.dat │ │ │ │ ├── qrv20_1.dat │ │ │ │ ├── qrv20_2.dat │ │ │ │ ├── qrv20_3.dat │ │ │ │ ├── qrv21_0.dat │ │ │ │ ├── qrv21_1.dat │ │ │ │ ├── qrv21_2.dat │ │ │ │ ├── qrv21_3.dat │ │ │ │ ├── qrv22_0.dat │ │ │ │ ├── qrv22_1.dat │ │ │ │ ├── qrv22_2.dat │ │ │ │ ├── qrv22_3.dat │ │ │ │ ├── qrv23_0.dat │ │ │ │ ├── qrv23_1.dat │ │ │ │ ├── qrv23_2.dat │ │ │ │ ├── qrv23_3.dat │ │ │ │ ├── qrv24_0.dat │ │ │ │ ├── qrv24_1.dat │ │ │ │ ├── qrv24_2.dat │ │ │ │ ├── qrv24_3.dat │ │ │ │ ├── qrv25_0.dat │ │ │ │ ├── qrv25_1.dat │ │ │ │ ├── qrv25_2.dat │ │ │ │ ├── qrv25_3.dat │ │ │ │ ├── qrv26_0.dat │ │ │ │ ├── qrv26_1.dat │ │ │ │ ├── qrv26_2.dat │ │ │ │ ├── qrv26_3.dat │ │ │ │ ├── qrv27_0.dat │ │ │ │ ├── qrv27_1.dat │ │ │ │ ├── qrv27_2.dat │ │ │ │ ├── qrv27_3.dat │ │ │ │ ├── qrv28_0.dat │ │ │ │ ├── qrv28_1.dat │ │ │ │ ├── qrv28_2.dat │ │ │ │ ├── qrv28_3.dat │ │ │ │ ├── qrv29_0.dat │ │ │ │ ├── qrv29_1.dat │ │ │ │ ├── qrv29_2.dat │ │ │ │ ├── qrv29_3.dat │ │ │ │ ├── qrv2_0.dat │ │ │ │ ├── qrv2_1.dat │ │ │ │ ├── qrv2_2.dat │ │ │ │ ├── qrv2_3.dat │ │ │ │ ├── qrv30_0.dat │ │ │ │ ├── qrv30_1.dat │ │ │ │ ├── qrv30_2.dat │ │ │ │ ├── qrv30_3.dat │ │ │ │ ├── qrv31_0.dat │ │ │ │ ├── qrv31_1.dat │ │ │ │ ├── qrv31_2.dat │ │ │ │ ├── qrv31_3.dat │ │ │ │ ├── qrv32_0.dat │ │ │ │ ├── qrv32_1.dat │ │ │ │ ├── qrv32_2.dat │ │ │ │ ├── qrv32_3.dat │ │ │ │ ├── qrv33_0.dat │ │ │ │ ├── qrv33_1.dat │ │ │ │ ├── qrv33_2.dat │ │ │ │ ├── qrv33_3.dat │ │ │ │ ├── qrv34_0.dat │ │ │ │ ├── qrv34_1.dat │ │ │ │ ├── qrv34_2.dat │ │ │ │ ├── qrv34_3.dat │ │ │ │ ├── qrv35_0.dat │ │ │ │ ├── qrv35_1.dat │ │ │ │ ├── qrv35_2.dat │ │ │ │ ├── qrv35_3.dat │ │ │ │ ├── qrv36_0.dat │ │ │ │ ├── qrv36_1.dat │ │ │ │ ├── qrv36_2.dat │ │ │ │ ├── qrv36_3.dat │ │ │ │ ├── qrv37_0.dat │ │ │ │ ├── qrv37_1.dat │ │ │ │ ├── qrv37_2.dat │ │ │ │ ├── qrv37_3.dat │ │ │ │ ├── qrv38_0.dat │ │ │ │ ├── qrv38_1.dat │ │ │ │ ├── qrv38_2.dat │ │ │ │ ├── qrv38_3.dat │ │ │ │ ├── qrv39_0.dat │ │ │ │ ├── qrv39_1.dat │ │ │ │ ├── qrv39_2.dat │ │ │ │ ├── qrv39_3.dat │ │ │ │ ├── qrv3_0.dat │ │ │ │ ├── qrv3_1.dat │ │ │ │ ├── qrv3_2.dat │ │ │ │ ├── qrv3_3.dat │ │ │ │ ├── qrv40_0.dat │ │ │ │ ├── qrv40_1.dat │ │ │ │ ├── qrv40_2.dat │ │ │ │ ├── qrv40_3.dat │ │ │ │ ├── qrv4_0.dat │ │ │ │ ├── qrv4_1.dat │ │ │ │ ├── qrv4_2.dat │ │ │ │ ├── qrv4_3.dat │ │ │ │ ├── qrv5_0.dat │ │ │ │ ├── qrv5_1.dat │ │ │ │ ├── qrv5_2.dat │ │ │ │ ├── qrv5_3.dat │ │ │ │ ├── qrv6_0.dat │ │ │ │ ├── qrv6_1.dat │ │ │ │ ├── qrv6_2.dat │ │ │ │ ├── qrv6_3.dat │ │ │ │ ├── qrv7_0.dat │ │ │ │ ├── qrv7_1.dat │ │ │ │ ├── qrv7_2.dat │ │ │ │ ├── qrv7_3.dat │ │ │ │ ├── qrv8_0.dat │ │ │ │ ├── qrv8_1.dat │ │ │ │ ├── qrv8_2.dat │ │ │ │ ├── qrv8_3.dat │ │ │ │ ├── qrv9_0.dat │ │ │ │ ├── qrv9_1.dat │ │ │ │ ├── qrv9_2.dat │ │ │ │ ├── qrv9_3.dat │ │ │ │ ├── qrvfr1.dat │ │ │ │ ├── qrvfr10.dat │ │ │ │ ├── qrvfr11.dat │ │ │ │ ├── qrvfr12.dat │ │ │ │ ├── qrvfr13.dat │ │ │ │ ├── qrvfr14.dat │ │ │ │ ├── qrvfr15.dat │ │ │ │ ├── qrvfr16.dat │ │ │ │ ├── qrvfr17.dat │ │ │ │ ├── qrvfr18.dat │ │ │ │ ├── qrvfr19.dat │ │ │ │ ├── qrvfr2.dat │ │ │ │ ├── qrvfr20.dat │ │ │ │ ├── qrvfr21.dat │ │ │ │ ├── qrvfr22.dat │ │ │ │ ├── qrvfr23.dat │ │ │ │ ├── qrvfr24.dat │ │ │ │ ├── qrvfr25.dat │ │ │ │ ├── qrvfr26.dat │ │ │ │ ├── qrvfr27.dat │ │ │ │ ├── qrvfr28.dat │ │ │ │ ├── qrvfr29.dat │ │ │ │ ├── qrvfr3.dat │ │ │ │ ├── qrvfr30.dat │ │ │ │ ├── qrvfr31.dat │ │ │ │ ├── qrvfr32.dat │ │ │ │ ├── qrvfr33.dat │ │ │ │ ├── qrvfr34.dat │ │ │ │ ├── qrvfr35.dat │ │ │ │ ├── qrvfr36.dat │ │ │ │ ├── qrvfr37.dat │ │ │ │ ├── qrvfr38.dat │ │ │ │ ├── qrvfr39.dat │ │ │ │ ├── qrvfr4.dat │ │ │ │ ├── qrvfr40.dat │ │ │ │ ├── qrvfr5.dat │ │ │ │ ├── qrvfr6.dat │ │ │ │ ├── qrvfr7.dat │ │ │ │ ├── qrvfr8.dat │ │ │ │ ├── qrvfr9.dat │ │ │ │ ├── rsc10.dat │ │ │ │ ├── rsc13.dat │ │ │ │ ├── rsc15.dat │ │ │ │ ├── rsc16.dat │ │ │ │ ├── rsc17.dat │ │ │ │ ├── rsc18.dat │ │ │ │ ├── rsc20.dat │ │ │ │ ├── rsc22.dat │ │ │ │ ├── rsc24.dat │ │ │ │ ├── rsc26.dat │ │ │ │ ├── rsc28.dat │ │ │ │ ├── rsc30.dat │ │ │ │ ├── rsc32.dat │ │ │ │ ├── rsc34.dat │ │ │ │ ├── rsc36.dat │ │ │ │ ├── rsc40.dat │ │ │ │ ├── rsc42.dat │ │ │ │ ├── rsc44.dat │ │ │ │ ├── rsc46.dat │ │ │ │ ├── rsc48.dat │ │ │ │ ├── rsc50.dat │ │ │ │ ├── rsc52.dat │ │ │ │ ├── rsc54.dat │ │ │ │ ├── rsc56.dat │ │ │ │ ├── rsc58.dat │ │ │ │ ├── rsc60.dat │ │ │ │ ├── rsc62.dat │ │ │ │ ├── rsc64.dat │ │ │ │ ├── rsc66.dat │ │ │ │ ├── rsc68.dat │ │ │ │ └── rsc7.dat │ │ │ ├── image.php │ │ │ ├── index.php │ │ │ └── qrcode.class.php │ │ │ ├── ttfontdata │ │ │ ├── dejavusanscondensed.cw.dat │ │ │ ├── dejavusanscondensed.cw127.php │ │ │ ├── dejavusanscondensed.mtx.php │ │ │ ├── dejavusanscondensedB.cw.dat │ │ │ ├── dejavusanscondensedB.cw127.php │ │ │ ├── dejavusanscondensedB.mtx.php │ │ │ ├── dejavusansmono.cw.dat │ │ │ ├── dejavusansmono.cw127.php │ │ │ ├── dejavusansmono.mtx.php │ │ │ ├── dejavusansmonoB.cw.dat │ │ │ ├── dejavusansmonoB.mtx.php │ │ │ ├── dejavusansmonoI.cw.dat │ │ │ ├── dejavusansmonoI.mtx.php │ │ │ ├── dejavuserif.cw.dat │ │ │ ├── dejavuserif.cw127.php │ │ │ ├── dejavuserif.mtx.php │ │ │ ├── dejavuserifB.cw.dat │ │ │ ├── dejavuserifB.cw127.php │ │ │ ├── dejavuserifB.mtx.php │ │ │ ├── dejavuserifcondensed.cw.dat │ │ │ ├── dejavuserifcondensed.cw127.php │ │ │ ├── dejavuserifcondensed.mtx.php │ │ │ ├── dejavuserifcondensedB.cw.dat │ │ │ ├── dejavuserifcondensedB.mtx.php │ │ │ ├── dummy.txt │ │ │ ├── linlibertine.cw.dat │ │ │ ├── linlibertine.cw127.php │ │ │ ├── linlibertine.mtx.php │ │ │ ├── linlibertineB.cw.dat │ │ │ ├── linlibertineB.cw127.php │ │ │ ├── linlibertineB.mtx.php │ │ │ ├── linlibertineI.cw.dat │ │ │ ├── linlibertineI.mtx.php │ │ │ ├── ocrb.cgm │ │ │ ├── ocrb.cw │ │ │ ├── ocrb.cw.dat │ │ │ ├── ocrb.mtx.php │ │ │ └── ocrb.z │ │ │ ├── ttfonts │ │ │ ├── DejaVuSans-Bold.ttf │ │ │ ├── DejaVuSans-BoldOblique.ttf │ │ │ ├── DejaVuSans-Oblique.ttf │ │ │ ├── DejaVuSans.ttf │ │ │ ├── DejaVuSansCondensed-Bold.ttf │ │ │ ├── DejaVuSansCondensed-BoldOblique.ttf │ │ │ ├── DejaVuSansCondensed-Oblique.ttf │ │ │ ├── DejaVuSansCondensed.ttf │ │ │ ├── DejaVuSansMono-Bold.ttf │ │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ │ ├── DejaVuSansMono-Oblique.ttf │ │ │ ├── DejaVuSansMono.ttf │ │ │ ├── DejaVuSerif-Bold.ttf │ │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ │ ├── DejaVuSerif-Italic.ttf │ │ │ ├── DejaVuSerif.ttf │ │ │ ├── DejaVuSerifCondensed-Bold.ttf │ │ │ ├── DejaVuSerifCondensed-BoldItalic.ttf │ │ │ ├── DejaVuSerifCondensed-Italic.ttf │ │ │ ├── DejaVuSerifCondensed.ttf │ │ │ ├── DejaVuinfo.txt │ │ │ ├── GNUFreeFontinfo.txt │ │ │ ├── Garuda-Bold.ttf │ │ │ ├── Garuda-BoldOblique.ttf │ │ │ ├── Garuda-Oblique.ttf │ │ │ ├── Garuda.ttf │ │ │ ├── LinLibertine-Bold.ttf │ │ │ ├── LinLibertine-Italic.ttf │ │ │ ├── LinLibertine.ttf │ │ │ ├── LinLibertineCondensed.ttf │ │ │ ├── Norasi-Bold.ttf │ │ │ ├── Norasi-BoldOblique.ttf │ │ │ ├── Norasi-Oblique.ttf │ │ │ ├── Norasi.ttf │ │ │ ├── Thai Fonts License.txt │ │ │ ├── XB Riyaz.ttf │ │ │ ├── XB RiyazBd.ttf │ │ │ ├── XB RiyazBdIt.ttf │ │ │ ├── XB RiyazIt.ttf │ │ │ ├── XB Zar Bd.ttf │ │ │ ├── XB Zar BdIt.ttf │ │ │ ├── XB Zar It.ttf │ │ │ ├── XB Zar.ttf │ │ │ ├── XW Zar Font Info.txt │ │ │ ├── ind_bn_1_001.ttf │ │ │ ├── ind_gu_1_001.ttf │ │ │ ├── ind_hi_1_001.ttf │ │ │ ├── ind_kn_1_001.ttf │ │ │ ├── ind_ml_1_001.ttf │ │ │ ├── ind_or_1_001.ttf │ │ │ ├── ind_pa_1_001.ttf │ │ │ ├── ind_ta_1_001.ttf │ │ │ ├── ind_te_1_001.ttf │ │ │ ├── ocrb10.ttf │ │ │ └── ocrbinfo.txt │ │ │ └── utils │ │ │ ├── UnicodeData.txt │ │ │ ├── UnicodeRanges.php │ │ │ ├── font_collections.php │ │ │ ├── font_coverage.php │ │ │ ├── font_dump.php │ │ │ ├── font_names.php │ │ │ └── index.php │ │ └── sql │ │ └── comwrap_pdf_setup │ │ └── install-1.0.php ├── design │ └── frontend │ │ └── base │ │ └── default │ │ ├── layout │ │ └── comwrap │ │ │ └── pdf.xml │ │ └── template │ │ └── comwrap │ │ └── pdf │ │ ├── creditmemo.phtml │ │ ├── invoice.phtml │ │ └── shipment.phtml └── etc │ └── modules │ └── Comwrap_Pdf.xml └── composer.json /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /atlassian-ide-plugin.xml 3 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | **** VERSION 1.1 - 11.01.2014. **** 2 | Features: 3 | * Upgraded the mPDF library to version 5.7.1 which now has support for QR codes and PHP 5.5. Updated the templates accordingly. 4 | 5 | **** VERSION 1.0 - 10.01.2014. **** 6 | Initial module version. mPDF version 5.6 7 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/Block/Abstract.php: -------------------------------------------------------------------------------- 1 | 23 | * @version 1.0 24 | */ 25 | abstract class Comwrap_Pdf_Block_Abstract extends Mage_Core_Block_Template 26 | { 27 | 28 | 29 | public function _construct() 30 | { 31 | $this->setArea('frontend'); 32 | Mage::getSingleton('core/app_emulation'); 33 | 34 | return parent::_construct(); 35 | } 36 | 37 | public function renderView() 38 | { 39 | $this->setScriptPath(Mage::getBaseDir('design')); 40 | 41 | $html = $this->fetchView($this->getTemplateFile()); 42 | 43 | /* @var $_pdf Comwrap_Pdf_Model_Resource_Abstract */ 44 | $_pdf = Mage::getModel('comwrap_pdf/resource_' . $this->getPdfType()); 45 | 46 | return $_pdf->render($html); 47 | } 48 | 49 | 50 | /** 51 | * Alias for renderView() 52 | * 53 | * Some core functions will call this one for rendering the pdf. It returns the binary PDF object, 54 | * as the Zend_PDF->render() class does 55 | * 56 | * @return string 57 | */ 58 | public function render() 59 | { 60 | return $this->renderView(); 61 | } 62 | 63 | /** 64 | * Retrieve subtotal price include tax html formated content 65 | * 66 | * @param Varien_Object $item 67 | * @return string 68 | */ 69 | public function displayShippingPriceInclTax($order) 70 | { 71 | $shipping = $order->getShippingInclTax(); 72 | if ($shipping) { 73 | $baseShipping = $order->getBaseShippingInclTax(); 74 | } else { 75 | $shipping = $order->getShippingAmount()+$order->getShippingTaxAmount(); 76 | $baseShipping = $order->getBaseShippingAmount()+$order->getBaseShippingTaxAmount(); 77 | } 78 | return $this->helper('adminhtml/sales')->displayPrices($order, $baseShipping, $shipping, false, ' '); 79 | } 80 | 81 | 82 | public function startEmulateEnvironment($storeId) 83 | { 84 | if(!$storeId) throw new Exception('Incorrect store ID while rendering the PDF'); 85 | 86 | $_emulator = Mage::getSingleton('core/app_emulation'); 87 | $parameters = $_emulator->startEnvironmentEmulation($storeId); 88 | 89 | $this->setCurrentAppParameters($parameters); 90 | return $this; 91 | } 92 | 93 | public function stopEmulateEnvironment() 94 | { 95 | $_emulator = Mage::getSingleton('core/app_emulation'); 96 | $_emulator->stopEnvironmentEmulation($this->getCurrentAppParameters()); 97 | 98 | return $this; 99 | } 100 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/Block/Creditmemo.php: -------------------------------------------------------------------------------- 1 | 22 | * @version 1.0 23 | */ 24 | class Comwrap_Pdf_Block_Creditmemo extends Comwrap_Pdf_Block_Abstract 25 | { 26 | 27 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/Block/Invoice.php: -------------------------------------------------------------------------------- 1 | 22 | * @version 1.0 23 | */ 24 | class Comwrap_Pdf_Block_Invoice extends Comwrap_Pdf_Block_Abstract 25 | { 26 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/Block/Shipment.php: -------------------------------------------------------------------------------- 1 | 22 | * @version 1.0 23 | */ 24 | class Comwrap_Pdf_Block_Shipment extends Comwrap_Pdf_Block_Abstract 25 | { 26 | 27 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/Helper/Data.php: -------------------------------------------------------------------------------- 1 | 22 | * @version 1.0 23 | */ 24 | class Comwrap_Pdf_Helper_Data extends Mage_Core_Helper_Abstract { 25 | 26 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/Model/Resource/Abstract.php: -------------------------------------------------------------------------------- 1 | 24 | * @version 1.0 25 | * 26 | * @method mPDF getPdf() 27 | * @method Comwrap_Pdf_Model_Resource_Pdf setPdf(mPDF $pdf) 28 | */ 29 | abstract class Comwrap_Pdf_Model_Resource_Abstract extends Mage_Core_Model_Abstract 30 | { 31 | 32 | /** 33 | * @return $this 34 | */ 35 | public function _construct() 36 | { 37 | //$this->_pdf = new mPDF('P', 'A4', '','', 30, 14, 14, 117); 38 | $_pdf = new mPDF('P', 'A4', '','', 5, 10, 5, 5); 39 | $this->setPdf($_pdf); 40 | return $this; 41 | } 42 | 43 | 44 | public function render($html) 45 | { 46 | $this->getPdf()->writeHTML($html); 47 | return $this->getPdf()->Output('', 'S'); 48 | } 49 | 50 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/Model/Resource/Creditmemo.php: -------------------------------------------------------------------------------- 1 | 22 | * @version 1.0 23 | */ 24 | class Comwrap_Pdf_Model_Resource_Creditmemo extends Comwrap_Pdf_Model_Resource_Abstract 25 | { 26 | 27 | } 28 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/Model/Resource/Invoice.php: -------------------------------------------------------------------------------- 1 | 22 | * @version 1.0 23 | */ 24 | class Comwrap_Pdf_Model_Resource_Invoice extends Comwrap_Pdf_Model_Resource_Abstract 25 | { 26 | 27 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/Model/Resource/Shipment.php: -------------------------------------------------------------------------------- 1 | 23 | * @version 1.0 24 | */ 25 | class Comwrap_Pdf_Model_Resource_Shipment extends Comwrap_Pdf_Model_Resource_Abstract 26 | { 27 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/Model/Sales/Order/Pdf/Abstract.php: -------------------------------------------------------------------------------- 1 | 23 | * @version 1.0 24 | */ 25 | abstract class Comwrap_Pdf_Model_Sales_Order_Pdf_Abstract extends Mage_Sales_Model_Order_Pdf_Abstract 26 | { 27 | const HANDLE_PREFIX = 'comwrap_pdf_'; 28 | const BLOCK_PREFIX = 'comwrap.pdf.'; 29 | 30 | var $_pdfType; 31 | 32 | public function _construct() 33 | { 34 | $this->setPdfType($this->_pdfType); 35 | $this->setMainBlock(self::BLOCK_PREFIX . $this->getPdfType()); 36 | $this->setMainHandle(self::HANDLE_PREFIX . $this->getPdfType()); 37 | 38 | Mage::getSingleton('core/design_package')->setArea('frontend'); 39 | Mage::app()->getLayout()->getUpdate()->load($this->getMainHandle()); 40 | Mage::app()->getLayout()->generateXml(); 41 | Mage::app()->getLayout()->generateBlocks(); 42 | return $this; 43 | } 44 | 45 | 46 | /** 47 | * Backward compatibility for original PDF 48 | * 49 | * @param array $_requiredObjects 50 | * @return Zend_Pdf|Comwrap_Pdf_Block_Abstract 51 | */ 52 | public function getPdf($_requiredObjects = array()) 53 | { 54 | 55 | /* @var $_block Comwrap_Pdf_Block_Invoice */ 56 | 57 | $_block = Mage::app()->getLayout()->getBlock($this->getMainBlock()); 58 | if(!$_block) $_block = Mage::app()->getLayout()->createBlock('comwrap_pdf/' . $this->getPdfType()); 59 | $_block->setPdfType($this->getPdfType()); 60 | $_block->setData($this->getPdfType(), $_requiredObjects); 61 | return $_block; 62 | } 63 | 64 | 65 | 66 | 67 | 68 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/Model/Sales/Order/Pdf/Creditmemo.php: -------------------------------------------------------------------------------- 1 | 23 | * @version 1.0 24 | */ 25 | class Comwrap_Pdf_Model_Sales_Order_Pdf_Creditmemo extends Comwrap_Pdf_Model_Sales_Order_Pdf_Abstract 26 | { 27 | var $_pdfType = 'creditmemo'; 28 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/Model/Sales/Order/Pdf/Invoice.php: -------------------------------------------------------------------------------- 1 | 23 | * @version 1.0 24 | */ 25 | class Comwrap_Pdf_Model_Sales_Order_Pdf_Invoice extends Comwrap_Pdf_Model_Sales_Order_Pdf_Abstract 26 | { 27 | var $_pdfType = 'invoice'; 28 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/Model/Sales/Order/Pdf/Shipment.php: -------------------------------------------------------------------------------- 1 | 23 | * @version 1.0 24 | */ 25 | class Comwrap_Pdf_Model_Sales_Order_Pdf_Shipment extends Comwrap_Pdf_Model_Sales_Order_Pdf_Abstract 26 | { 27 | var $_pdfType = 'shipment'; 28 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/controllers/TestController.php: -------------------------------------------------------------------------------- 1 | getSkinBaseDir(); 8 | /* @var $_block Comwrap_Pdf_Block_Invoice */ 9 | $_block = $this->getLayout()->createBlock('comwrap_pdf/invoice'); 10 | 11 | 12 | //$pdf = Mage::getModel('pdf/sales_order_pdf_invoice')->getPdf(); 13 | return $this->_prepareDownloadResponse( 14 | 'invoice.pdf', $_block->renderView(), 15 | 'application/pdf' 16 | ); 17 | } 18 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/etc/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 1.0 6 | 7 | 8 | 9 | 10 | 11 | Comwrap_Pdf_Model 12 | 13 | 14 | 15 | 16 | Comwrap_Pdf_Model_Sales_Order_Pdf_Invoice 17 | Comwrap_Pdf_Model_Sales_Order_Pdf_Shipment 18 | Comwrap_Pdf_Model_Sales_Order_Pdf_Creditmemo 19 | 20 | 21 | 22 | 23 | 24 | Comwrap_Pdf_Block 25 | 26 | 27 | 28 | 29 | Comwrap_Pdf_Helper 30 | 31 | 32 | 33 | 34 | 35 | Comwrap_Pdf 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | standard 44 | 45 | Comwrap_Pdf 46 | pdf 47 | 48 | 49 | 50 | 51 | 52 | 53 | comwrap/pdf.xml 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/CHANGELOG.txt -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/CREDITS.txt -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/FONT INFO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/FONT INFO.txt -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/classes/svg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/classes/svg.php -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/font/ccourier.php: -------------------------------------------------------------------------------- 1 | 629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-23 -250 715 805]'); 6 | $up=-100; 7 | $ut=50; 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/font/ccourierb.php: -------------------------------------------------------------------------------- 1 | 629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-113 -250 749 801]'); 5 | $up=-100; 6 | $ut=50; 7 | 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/font/ccourierbi.php: -------------------------------------------------------------------------------- 1 | 629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-57 -250 869 801]'); 5 | $up=-100; 6 | $ut=50; 7 | 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/font/ccourieri.php: -------------------------------------------------------------------------------- 1 | 629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-27 -250 849 805]'); 5 | $up=-100; 6 | $ut=50; 7 | 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/font/csymbol.php: -------------------------------------------------------------------------------- 1 | 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, 4 | 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, 5 | ','=>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, 6 | '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, 7 | '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, 8 | '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, 9 | 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, 10 | 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, 11 | 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, 12 | 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, 13 | 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, 14 | 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); 15 | 16 | $desc=array('FontBBox'=>'[-180 -293 1090 1010]'); 17 | $up=-100; 18 | $ut=50; 19 | 20 | 21 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/font/czapfdingbats.php: -------------------------------------------------------------------------------- 1 | 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, 4 | 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, 5 | ','=>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, 6 | '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, 7 | '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, 8 | '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, 9 | 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, 10 | 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, 11 | 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, 12 | 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, 13 | 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, 14 | 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); 15 | 16 | $desc=array('FontBBox'=>'[-1 -143 981 820]'); 17 | $up=-100; 18 | $ut=50; 19 | 20 | 21 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/graph_cache/dummy.txt: -------------------------------------------------------------------------------- 1 | This is just a placeholder file so that the folder is created on install. 2 | It can be deleted once installed. -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/iccprofiles/SWOP2006_Coated5v2.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/iccprofiles/SWOP2006_Coated5v2.icc -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/iccprofiles/sRGB_IEC61966-2-1.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/iccprofiles/sRGB_IEC61966-2-1.icc -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/includes/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/includes/no_image.jpg -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/includes/out.php: -------------------------------------------------------------------------------- 1 | Error('Some data has already been output to browser, can\'t send PDF file'); 26 | header('Content-Transfer-Encoding: binary'); 27 | header('Cache-Control: public, must-revalidate, max-age=0'); 28 | header('Pragma: public'); 29 | header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); 30 | header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); 31 | header('Content-Type: application/force-download'); 32 | header('Content-Type: application/octet-stream', false); 33 | header('Content-Type: application/download', false); 34 | header('Content-Type: application/pdf', false); 35 | header('Content-disposition: attachment; filename="'.$name.'"'); 36 | } 37 | $filesize = filesize($path.$tempfilename); 38 | if (!isset($_SERVER['HTTP_ACCEPT_ENCODING']) OR empty($_SERVER['HTTP_ACCEPT_ENCODING'])) { 39 | // don't use length if server using compression 40 | header('Content-Length: '.$filesize); 41 | } 42 | $fd=fopen($path.$tempfilename,'rb'); 43 | fpassthru($fd); 44 | fclose($fd); 45 | unlink($path.$tempfilename); 46 | // ====================== DELETE OLD FILES - Housekeeping ========================================= 47 | // Clear any files in directory that are >24 hrs old 48 | $interval = 86400; 49 | if ($handle = opendir(dirname($path.'dummy'))) { 50 | while (false !== ($file = readdir($handle))) { 51 | if (((filemtime($path.$file)+$interval) < time()) && ($file != "..") && ($file != ".") && substr($file, -3)=='pdf') { 52 | unlink($path.$file); 53 | } 54 | } 55 | closedir($handle); 56 | } 57 | exit; 58 | } 59 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/mpdf.css: -------------------------------------------------------------------------------- 1 | /* 2 | This is a secondary default stylesheet for mPDF 3 | It will only parse element-level CSS here 4 | Remove the comment marks below and edit as required 5 | */ 6 | 7 | 8 | 9 | /* 10 | These values used to be the default prior to mPDF 4.2 11 | Altered to make appearance closer to that of browsers 12 | Uncomment these lines to return to behaviour prior to v4.2 13 | */ 14 | 15 | 16 | /* 17 | img { margin: 0.83em 0; vertical-align: bottom; } 18 | table { margin: 0.5em; } 19 | textarea { vertical-align: top; } 20 | */ 21 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/mpdfi/filters/FilterASCII85.php: -------------------------------------------------------------------------------- 1 | ORD_u) { 56 | $this->error('Illegal character in ASCII85Decode.'); 57 | } 58 | 59 | $chn[$state++] = $ch - ORD_exclmark; 60 | 61 | if ($state == 5) { 62 | $state = 0; 63 | $r = 0; 64 | for ($j = 0; $j < 5; ++$j) 65 | $r = $r * 85 + $chn[$j]; 66 | $out .= chr($r >> 24); 67 | $out .= chr($r >> 16); 68 | $out .= chr($r >> 8); 69 | $out .= chr($r); 70 | } 71 | } 72 | $r = 0; 73 | 74 | if ($state == 1) 75 | $this->error('Illegal length in ASCII85Decode.'); 76 | if ($state == 2) { 77 | $r = $chn[0] * 85 * 85 * 85 * 85 + ($chn[1]+1) * 85 * 85 * 85; 78 | $out .= chr($r >> 24); 79 | } 80 | else if ($state == 3) { 81 | $r = $chn[0] * 85 * 85 * 85 * 85 + $chn[1] * 85 * 85 * 85 + ($chn[2]+1) * 85 * 85; 82 | $out .= chr($r >> 24); 83 | $out .= chr($r >> 16); 84 | } 85 | else if ($state == 4) { 86 | $r = $chn[0] * 85 * 85 * 85 * 85 + $chn[1] * 85 * 85 * 85 + $chn[2] * 85 * 85 + ($chn[3]+1) * 85 ; 87 | $out .= chr($r >> 24); 88 | $out .= chr($r >> 16); 89 | $out .= chr($r >> 8); 90 | } 91 | 92 | return $out; 93 | } 94 | 95 | function encode($in) { 96 | $this->error("ASCII85 encoding not implemented."); 97 | } 98 | } -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/mpdfi/pdf_context.php: -------------------------------------------------------------------------------- 1 | file = $f; 33 | $this->reset(); 34 | } 35 | 36 | // Optionally move the file 37 | // pointer to a new location 38 | // and reset the buffered data 39 | 40 | function reset($pos = null, $l = 100) { 41 | if (!is_null ($pos)) { 42 | fseek ($this->file, $pos); 43 | } 44 | 45 | $this->buffer = $l > 0 ? fread($this->file, $l) : ''; 46 | $this->offset = 0; 47 | $this->length = strlen($this->buffer); 48 | $this->stack = array(); 49 | } 50 | 51 | // Make sure that there is at least one 52 | // character beyond the current offset in 53 | // the buffer to prevent the tokenizer 54 | // from attempting to access data that does 55 | // not exist 56 | 57 | function ensure_content() { 58 | if ($this->offset >= $this->length - 1) { 59 | return $this->increase_length(); 60 | } else { 61 | return true; 62 | } 63 | } 64 | 65 | // Forcefully read more data into the buffer 66 | 67 | function increase_length($l=100) { 68 | if (feof($this->file)) { 69 | return false; 70 | } else { 71 | $this->buffer .= fread($this->file, $l); 72 | $this->length = strlen($this->buffer); 73 | return true; 74 | } 75 | } 76 | 77 | } 78 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/patterns/NOTES.txt: -------------------------------------------------------------------------------- 1 | Alternative sources of Hyphenation programs or TEX files: 2 | 3 | OpenOffice: http://wiki.services.openoffice.org/wiki/Dictionaries 4 | 5 | Hyphenator4PHP- alternative PHP hyphenator scripts: http://apps.sourceforge.net/trac/hyphenator4php/ -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/patterns/dictionary.txt: -------------------------------------------------------------------------------- 1 | dis/es/tab/lish/men/tar/i/an/ism 2 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/patterns/fi.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/patterns/it.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/progbar.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin : 0 auto; 3 | width:100%; 4 | font-family: "Verdana"; 5 | color: #40454b; 6 | font-size: 12px; 7 | text-align:center; 8 | } 9 | .main { 10 | width:540px; 11 | margin: 0 auto; 12 | text-align:left; 13 | } 14 | .heading { 15 | font-size:14px; 16 | font-weight:bold; 17 | color:#CC0000; 18 | padding:5px; 19 | margin-left:10px; 20 | border-bottom:solid; 21 | border-bottom-width:1px; 22 | border-bottom-color:#333333; 23 | /* Use this to suppress the horizontal line under the heading */ 24 | /* border-bottom: 0px solid #000000; */ 25 | } 26 | table { 27 | font-family: "Verdana"; 28 | color: #40454b; 29 | font-size: 12px; 30 | } 31 | .demo { 32 | margin : 0 auto; 33 | width:100%; 34 | margin:20px; 35 | /* Use this to suppress all the bars and text */ 36 | /* display: none; */ 37 | } 38 | td { 39 | vertical-align: top; 40 | padding: 0 0.5em 0 0; 41 | } 42 | .code { 43 | font-family: "Courier New", Courier, monospace; 44 | font-size: 10px; 45 | } 46 | .code2 { 47 | font-family: "Courier New", Courier, monospace; 48 | font-size: 11px; font-weight: bold; color: red; 49 | } 50 | .barheading { 51 | color:#006600; 52 | font-weight:bold; 53 | } 54 | .progressBar { 55 | border: 1px solid #000000; 56 | background-color: #EEEEEE; 57 | width: 200px; 58 | font-size: 6px; 59 | } 60 | .innerBar { 61 | background-color:#00CC00; 62 | width: 0%; 63 | } 64 | #box3 { 65 | font-weight: bold; 66 | } 67 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/_lisez_moi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/_lisez_moi.txt -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/dummy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/dummy.txt -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/modele1.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/modele2.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/modele3.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/modele4.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/modele5.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/modele6.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/modele7.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/modele8.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/modele9.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv10_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv10_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv10_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv10_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv10_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv10_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv10_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv10_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv11_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv11_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv11_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv11_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv11_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv11_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv11_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv11_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv12_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv12_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv12_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv12_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv12_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv12_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv12_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv12_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv13_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv13_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv13_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv13_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv13_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv13_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv13_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv13_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv14_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv14_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv14_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv14_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv14_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv14_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv14_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv14_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv15_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv15_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv15_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv15_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv15_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv15_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv15_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv15_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv16_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv16_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv16_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv16_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv16_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv16_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv16_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv16_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv17_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv17_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv17_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv17_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv17_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv17_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv17_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv17_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv18_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv18_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv18_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv18_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv18_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv18_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv18_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv18_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv19_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv19_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv19_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv19_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv19_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv19_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv19_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv19_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv1_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv1_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv1_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv1_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv1_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv1_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv1_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv1_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv20_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv20_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv20_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv20_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv20_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv20_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv20_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv20_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv21_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv21_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv21_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv21_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv21_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv21_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv21_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv21_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv22_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv22_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv22_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv22_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv22_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv22_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv22_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv22_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv23_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv23_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv23_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv23_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv23_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv23_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv23_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv23_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv24_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv24_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv24_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv24_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv24_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv24_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv24_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv24_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv25_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv25_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv25_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv25_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv25_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv25_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv25_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv25_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv26_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv26_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv26_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv26_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv26_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv26_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv26_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv26_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv27_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv27_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv27_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv27_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv27_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv27_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv27_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv27_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv28_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv28_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv28_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv28_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv28_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv28_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv28_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv28_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv29_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv29_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv29_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv29_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv29_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv29_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv29_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv29_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv2_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv2_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv2_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv2_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv2_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv2_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv2_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv2_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv30_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv30_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv30_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv30_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv30_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv30_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv30_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv30_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv31_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv31_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv31_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv31_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv31_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv31_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv31_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv31_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv32_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv32_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv32_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv32_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv32_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv32_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv32_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv32_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv33_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv33_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv33_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv33_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv33_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv33_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv33_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv33_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv34_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv34_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv34_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv34_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv34_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv34_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv34_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv34_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv35_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv35_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv35_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv35_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv35_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv35_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv35_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv35_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv36_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv36_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv36_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv36_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv36_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv36_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv36_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv36_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv37_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv37_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv37_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv37_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv37_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv37_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv37_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv37_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv38_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv38_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv38_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv38_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv38_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv38_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv38_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv38_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv39_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv39_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv39_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv39_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv39_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv39_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv39_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv39_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv3_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv3_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv3_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv3_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv3_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv3_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv3_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv3_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv40_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv40_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv40_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv40_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv40_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv40_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv40_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv40_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv4_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv4_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv4_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv4_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv4_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv4_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv4_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv4_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv5_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv5_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv5_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv5_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv5_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv5_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv5_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv5_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv6_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv6_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv6_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv6_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv6_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv6_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv6_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv6_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv7_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv7_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv7_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv7_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv7_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv7_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv7_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv7_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv8_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv8_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv8_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv8_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv8_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv8_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv8_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv8_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv9_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv9_0.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv9_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv9_1.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv9_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv9_2.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv9_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrv9_3.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrvfr1.dat: -------------------------------------------------------------------------------- 1 | 111111100000001111111 2 | 100000100000001000001 3 | 101110100000001011101 4 | 101110100000001011101 5 | 101110100000001011101 6 | 100000100000001000001 7 | 111111101010101111111 8 | 000000000000000000000 9 | 000000100000000000000 10 | 000000000000000000000 11 | 000000100000000000000 12 | 000000000000000000000 13 | 000000100000000000000 14 | 000000001000000000000 15 | 111111100000000000000 16 | 100000100000000000000 17 | 101110100000000000000 18 | 101110100000000000000 19 | 101110100000000000000 20 | 100000100000000000000 21 | 111111100000000000000 22 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrvfr10.dat: -------------------------------------------------------------------------------- 1 | 111111100000000000000000000000000000000000000011001111111 2 | 100000100000000000000000000000000000000000000001001000001 3 | 101110100000000000000000000000000000000000000011001011101 4 | 101110100000000000000000000000000000000000000001001011101 5 | 101110100000000000000000001111100000000000000001001011101 6 | 100000100000000000000000001000100000000000000010001000001 7 | 111111101010101010101010101010101010101010101010101111111 8 | 000000000000000000000000001000100000000000000000000000000 9 | 000000100000000000000000001111100000000000000000000000000 10 | 000000000000000000000000000000000000000000000000000000000 11 | 000000100000000000000000000000000000000000000000000000000 12 | 000000000000000000000000000000000000000000000000000000000 13 | 000000100000000000000000000000000000000000000000000000000 14 | 000000000000000000000000000000000000000000000000000000000 15 | 000000100000000000000000000000000000000000000000000000000 16 | 000000000000000000000000000000000000000000000000000000000 17 | 000000100000000000000000000000000000000000000000000000000 18 | 000000000000000000000000000000000000000000000000000000000 19 | 000000100000000000000000000000000000000000000000000000000 20 | 000000000000000000000000000000000000000000000000000000000 21 | 000000100000000000000000000000000000000000000000000000000 22 | 000000000000000000000000000000000000000000000000000000000 23 | 000000100000000000000000000000000000000000000000000000000 24 | 000000000000000000000000000000000000000000000000000000000 25 | 000000100000000000000000000000000000000000000000000000000 26 | 000000000000000000000000000000000000000000000000000000000 27 | 000011111000000000000000001111100000000000000000111110000 28 | 000010001000000000000000001000100000000000000000100010000 29 | 000010101000000000000000001010100000000000000000101010000 30 | 000010001000000000000000001000100000000000000000100010000 31 | 000011111000000000000000001111100000000000000000111110000 32 | 000000000000000000000000000000000000000000000000000000000 33 | 000000100000000000000000000000000000000000000000000000000 34 | 000000000000000000000000000000000000000000000000000000000 35 | 000000100000000000000000000000000000000000000000000000000 36 | 000000000000000000000000000000000000000000000000000000000 37 | 000000100000000000000000000000000000000000000000000000000 38 | 000000000000000000000000000000000000000000000000000000000 39 | 000000100000000000000000000000000000000000000000000000000 40 | 000000000000000000000000000000000000000000000000000000000 41 | 000000100000000000000000000000000000000000000000000000000 42 | 000000000000000000000000000000000000000000000000000000000 43 | 000000100000000000000000000000000000000000000000000000000 44 | 000000000000000000000000000000000000000000000000000000000 45 | 000000100000000000000000000000000000000000000000000000000 46 | 000000000000000000000000000000000000000000000000000000000 47 | 101001100000000000000000000000000000000000000000000000000 48 | 111110000000000000000000000000000000000000000000000000000 49 | 000000100000000000000000001111100000000000000000111110000 50 | 000000001000000000000000001000100000000000000000100010000 51 | 111111100000000000000000001010100000000000000000101010000 52 | 100000100000000000000000001000100000000000000000100010000 53 | 101110100000000000000000001111100000000000000000111110000 54 | 101110100000000000000000000000000000000000000000000000000 55 | 101110100000000000000000000000000000000000000000000000000 56 | 100000100000000000000000000000000000000000000000000000000 57 | 111111100000000000000000000000000000000000000000000000000 58 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrvfr2.dat: -------------------------------------------------------------------------------- 1 | 1111111000000000001111111 2 | 1000001000000000001000001 3 | 1011101000000000001011101 4 | 1011101000000000001011101 5 | 1011101000000000001011101 6 | 1000001000000000001000001 7 | 1111111010101010101111111 8 | 0000000000000000000000000 9 | 0000001000000000000000000 10 | 0000000000000000000000000 11 | 0000001000000000000000000 12 | 0000000000000000000000000 13 | 0000001000000000000000000 14 | 0000000000000000000000000 15 | 0000001000000000000000000 16 | 0000000000000000000000000 17 | 0000001000000000111110000 18 | 0000000010000000100010000 19 | 1111111000000000101010000 20 | 1000001000000000100010000 21 | 1011101000000000111110000 22 | 1011101000000000000000000 23 | 1011101000000000000000000 24 | 1000001000000000000000000 25 | 1111111000000000000000000 26 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrvfr3.dat: -------------------------------------------------------------------------------- 1 | 11111110000000000000001111111 2 | 10000010000000000000001000001 3 | 10111010000000000000001011101 4 | 10111010000000000000001011101 5 | 10111010000000000000001011101 6 | 10000010000000000000001000001 7 | 11111110101010101010101111111 8 | 00000000000000000000000000000 9 | 00000010000000000000000000000 10 | 00000000000000000000000000000 11 | 00000010000000000000000000000 12 | 00000000000000000000000000000 13 | 00000010000000000000000000000 14 | 00000000000000000000000000000 15 | 00000010000000000000000000000 16 | 00000000000000000000000000000 17 | 00000010000000000000000000000 18 | 00000000000000000000000000000 19 | 00000010000000000000000000000 20 | 00000000000000000000000000000 21 | 00000010000000000000111110000 22 | 00000000100000000000100010000 23 | 11111110000000000000101010000 24 | 10000010000000000000100010000 25 | 10111010000000000000111110000 26 | 10111010000000000000000000000 27 | 10111010000000000000000000000 28 | 10000010000000000000000000000 29 | 11111110000000000000000000000 30 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrvfr4.dat: -------------------------------------------------------------------------------- 1 | 111111100000000000000000001111111 2 | 100000100000000000000000001000001 3 | 101110100000000000000000001011101 4 | 101110100000000000000000001011101 5 | 101110100000000000000000001011101 6 | 100000100000000000000000001000001 7 | 111111101010101010101010101111111 8 | 000000000000000000000000000000000 9 | 000000100000000000000000000000000 10 | 000000000000000000000000000000000 11 | 000000100000000000000000000000000 12 | 000000000000000000000000000000000 13 | 000000100000000000000000000000000 14 | 000000000000000000000000000000000 15 | 000000100000000000000000000000000 16 | 000000000000000000000000000000000 17 | 000000100000000000000000000000000 18 | 000000000000000000000000000000000 19 | 000000100000000000000000000000000 20 | 000000000000000000000000000000000 21 | 000000100000000000000000000000000 22 | 000000000000000000000000000000000 23 | 000000100000000000000000000000000 24 | 000000000000000000000000000000000 25 | 000000100000000000000000111110000 26 | 000000001000000000000000100010000 27 | 111111100000000000000000101010000 28 | 100000100000000000000000100010000 29 | 101110100000000000000000111110000 30 | 101110100000000000000000000000000 31 | 101110100000000000000000000000000 32 | 100000100000000000000000000000000 33 | 111111100000000000000000000000000 34 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrvfr5.dat: -------------------------------------------------------------------------------- 1 | 1111111000000000000000000000001111111 2 | 1000001000000000000000000000001000001 3 | 1011101000000000000000000000001011101 4 | 1011101000000000000000000000001011101 5 | 1011101000000000000000000000001011101 6 | 1000001000000000000000000000001000001 7 | 1111111010101010101010101010101111111 8 | 0000000000000000000000000000000000000 9 | 0000001000000000000000000000000000000 10 | 0000000000000000000000000000000000000 11 | 0000001000000000000000000000000000000 12 | 0000000000000000000000000000000000000 13 | 0000001000000000000000000000000000000 14 | 0000000000000000000000000000000000000 15 | 0000001000000000000000000000000000000 16 | 0000000000000000000000000000000000000 17 | 0000001000000000000000000000000000000 18 | 0000000000000000000000000000000000000 19 | 0000001000000000000000000000000000000 20 | 0000000000000000000000000000000000000 21 | 0000001000000000000000000000000000000 22 | 0000000000000000000000000000000000000 23 | 0000001000000000000000000000000000000 24 | 0000000000000000000000000000000000000 25 | 0000001000000000000000000000000000000 26 | 0000000000000000000000000000000000000 27 | 0000001000000000000000000000000000000 28 | 0000000000000000000000000000000000000 29 | 0000001000000000000000000000111110000 30 | 0000000010000000000000000000100010000 31 | 1111111000000000000000000000101010000 32 | 1000001000000000000000000000100010000 33 | 1011101000000000000000000000111110000 34 | 1011101000000000000000000000000000000 35 | 1011101000000000000000000000000000000 36 | 1000001000000000000000000000000000000 37 | 1111111000000000000000000000000000000 38 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrvfr6.dat: -------------------------------------------------------------------------------- 1 | 11111110000000000000000000000000001111111 2 | 10000010000000000000000000000000001000001 3 | 10111010000000000000000000000000001011101 4 | 10111010000000000000000000000000001011101 5 | 10111010000000000000000000000000001011101 6 | 10000010000000000000000000000000001000001 7 | 11111110101010101010101010101010101111111 8 | 00000000000000000000000000000000000000000 9 | 00000010000000000000000000000000000000000 10 | 00000000000000000000000000000000000000000 11 | 00000010000000000000000000000000000000000 12 | 00000000000000000000000000000000000000000 13 | 00000010000000000000000000000000000000000 14 | 00000000000000000000000000000000000000000 15 | 00000010000000000000000000000000000000000 16 | 00000000000000000000000000000000000000000 17 | 00000010000000000000000000000000000000000 18 | 00000000000000000000000000000000000000000 19 | 00000010000000000000000000000000000000000 20 | 00000000000000000000000000000000000000000 21 | 00000010000000000000000000000000000000000 22 | 00000000000000000000000000000000000000000 23 | 00000010000000000000000000000000000000000 24 | 00000000000000000000000000000000000000000 25 | 00000010000000000000000000000000000000000 26 | 00000000000000000000000000000000000000000 27 | 00000010000000000000000000000000000000000 28 | 00000000000000000000000000000000000000000 29 | 00000010000000000000000000000000000000000 30 | 00000000000000000000000000000000000000000 31 | 00000010000000000000000000000000000000000 32 | 00000000000000000000000000000000000000000 33 | 00000010000000000000000000000000111110000 34 | 00000000100000000000000000000000100010000 35 | 11111110000000000000000000000000101010000 36 | 10000010000000000000000000000000100010000 37 | 10111010000000000000000000000000111110000 38 | 10111010000000000000000000000000000000000 39 | 10111010000000000000000000000000000000000 40 | 10000010000000000000000000000000000000000 41 | 11111110000000000000000000000000000000000 42 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrvfr7.dat: -------------------------------------------------------------------------------- 1 | 111111100000000000000000000000000000101111111 2 | 100000100000000000000000000000000001001000001 3 | 101110100000000000000000000000000001001011101 4 | 101110100000000000000000000000000001101011101 5 | 101110100000000000001111100000000011101011101 6 | 100000100000000000001000100000000000001000001 7 | 111111101010101010101010101010101010101111111 8 | 000000000000000000001000100000000000000000000 9 | 000000100000000000001111100000000000000000000 10 | 000000000000000000000000000000000000000000000 11 | 000000100000000000000000000000000000000000000 12 | 000000000000000000000000000000000000000000000 13 | 000000100000000000000000000000000000000000000 14 | 000000000000000000000000000000000000000000000 15 | 000000100000000000000000000000000000000000000 16 | 000000000000000000000000000000000000000000000 17 | 000000100000000000000000000000000000000000000 18 | 000000000000000000000000000000000000000000000 19 | 000000100000000000000000000000000000000000000 20 | 000000000000000000000000000000000000000000000 21 | 000011111000000000001111100000000000111110000 22 | 000010001000000000001000100000000000100010000 23 | 000010101000000000001010100000000000101010000 24 | 000010001000000000001000100000000000100010000 25 | 000011111000000000001111100000000000111110000 26 | 000000000000000000000000000000000000000000000 27 | 000000100000000000000000000000000000000000000 28 | 000000000000000000000000000000000000000000000 29 | 000000100000000000000000000000000000000000000 30 | 000000000000000000000000000000000000000000000 31 | 000000100000000000000000000000000000000000000 32 | 000000000000000000000000000000000000000000000 33 | 000000100000000000000000000000000000000000000 34 | 000000000000000000000000000000000000000000000 35 | 000010100000000000000000000000000000000000000 36 | 011110000000000000000000000000000000000000000 37 | 100110100000000000001111100000000000111110000 38 | 000000001000000000001000100000000000100010000 39 | 111111100000000000001010100000000000101010000 40 | 100000100000000000001000100000000000100010000 41 | 101110100000000000001111100000000000111110000 42 | 101110100000000000000000000000000000000000000 43 | 101110100000000000000000000000000000000000000 44 | 100000100000000000000000000000000000000000000 45 | 111111100000000000000000000000000000000000000 46 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrvfr8.dat: -------------------------------------------------------------------------------- 1 | 1111111000000000000000000000000000000000101111111 2 | 1000001000000000000000000000000000000011101000001 3 | 1011101000000000000000000000000000000001101011101 4 | 1011101000000000000000000000000000000001001011101 5 | 1011101000000000000000111110000000000000001011101 6 | 1000001000000000000000100010000000000010001000001 7 | 1111111010101010101010101010101010101010101111111 8 | 0000000000000000000000100010000000000000000000000 9 | 0000001000000000000000111110000000000000000000000 10 | 0000000000000000000000000000000000000000000000000 11 | 0000001000000000000000000000000000000000000000000 12 | 0000000000000000000000000000000000000000000000000 13 | 0000001000000000000000000000000000000000000000000 14 | 0000000000000000000000000000000000000000000000000 15 | 0000001000000000000000000000000000000000000000000 16 | 0000000000000000000000000000000000000000000000000 17 | 0000001000000000000000000000000000000000000000000 18 | 0000000000000000000000000000000000000000000000000 19 | 0000001000000000000000000000000000000000000000000 20 | 0000000000000000000000000000000000000000000000000 21 | 0000001000000000000000000000000000000000000000000 22 | 0000000000000000000000000000000000000000000000000 23 | 0000111110000000000000111110000000000000111110000 24 | 0000100010000000000000100010000000000000100010000 25 | 0000101010000000000000101010000000000000101010000 26 | 0000100010000000000000100010000000000000100010000 27 | 0000111110000000000000111110000000000000111110000 28 | 0000000000000000000000000000000000000000000000000 29 | 0000001000000000000000000000000000000000000000000 30 | 0000000000000000000000000000000000000000000000000 31 | 0000001000000000000000000000000000000000000000000 32 | 0000000000000000000000000000000000000000000000000 33 | 0000001000000000000000000000000000000000000000000 34 | 0000000000000000000000000000000000000000000000000 35 | 0000001000000000000000000000000000000000000000000 36 | 0000000000000000000000000000000000000000000000000 37 | 0000001000000000000000000000000000000000000000000 38 | 0000000000000000000000000000000000000000000000000 39 | 0100011000000000000000000000000000000000000000000 40 | 0111000000000000000000000000000000000000000000000 41 | 1110001000000000000000111110000000000000111110000 42 | 0000000010000000000000100010000000000000100010000 43 | 1111111000000000000000101010000000000000101010000 44 | 1000001000000000000000100010000000000000100010000 45 | 1011101000000000000000111110000000000000111110000 46 | 1011101000000000000000000000000000000000000000000 47 | 1011101000000000000000000000000000000000000000000 48 | 1000001000000000000000000000000000000000000000000 49 | 1111111000000000000000000000000000000000000000000 50 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/qrvfr9.dat: -------------------------------------------------------------------------------- 1 | 11111110000000000000000000000000000000000010001111111 2 | 10000010000000000000000000000000000000000011001000001 3 | 10111010000000000000000000000000000000000001001011101 4 | 10111010000000000000000000000000000000000010101011101 5 | 10111010000000000000000011111000000000000010001011101 6 | 10000010000000000000000010001000000000000010001000001 7 | 11111110101010101010101010101010101010101010101111111 8 | 00000000000000000000000010001000000000000000000000000 9 | 00000010000000000000000011111000000000000000000000000 10 | 00000000000000000000000000000000000000000000000000000 11 | 00000010000000000000000000000000000000000000000000000 12 | 00000000000000000000000000000000000000000000000000000 13 | 00000010000000000000000000000000000000000000000000000 14 | 00000000000000000000000000000000000000000000000000000 15 | 00000010000000000000000000000000000000000000000000000 16 | 00000000000000000000000000000000000000000000000000000 17 | 00000010000000000000000000000000000000000000000000000 18 | 00000000000000000000000000000000000000000000000000000 19 | 00000010000000000000000000000000000000000000000000000 20 | 00000000000000000000000000000000000000000000000000000 21 | 00000010000000000000000000000000000000000000000000000 22 | 00000000000000000000000000000000000000000000000000000 23 | 00000010000000000000000000000000000000000000000000000 24 | 00000000000000000000000000000000000000000000000000000 25 | 00001111100000000000000011111000000000000000111110000 26 | 00001000100000000000000010001000000000000000100010000 27 | 00001010100000000000000010101000000000000000101010000 28 | 00001000100000000000000010001000000000000000100010000 29 | 00001111100000000000000011111000000000000000111110000 30 | 00000000000000000000000000000000000000000000000000000 31 | 00000010000000000000000000000000000000000000000000000 32 | 00000000000000000000000000000000000000000000000000000 33 | 00000010000000000000000000000000000000000000000000000 34 | 00000000000000000000000000000000000000000000000000000 35 | 00000010000000000000000000000000000000000000000000000 36 | 00000000000000000000000000000000000000000000000000000 37 | 00000010000000000000000000000000000000000000000000000 38 | 00000000000000000000000000000000000000000000000000000 39 | 00000010000000000000000000000000000000000000000000000 40 | 00000000000000000000000000000000000000000000000000000 41 | 00000010000000000000000000000000000000000000000000000 42 | 00000000000000000000000000000000000000000000000000000 43 | 11011110000000000000000000000000000000000000000000000 44 | 01100000000000000000000000000000000000000000000000000 45 | 00010010000000000000000011111000000000000000111110000 46 | 00000000100000000000000010001000000000000000100010000 47 | 11111110000000000000000010101000000000000000101010000 48 | 10000010000000000000000010001000000000000000100010000 49 | 10111010000000000000000011111000000000000000111110000 50 | 10111010000000000000000000000000000000000000000000000 51 | 10111010000000000000000000000000000000000000000000000 52 | 10000010000000000000000000000000000000000000000000000 53 | 11111110000000000000000000000000000000000000000000000 54 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc10.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc13.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc15.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc16.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc17.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc18.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc18.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc20.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc22.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc22.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc24.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc24.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc26.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc26.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc28.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc28.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc30.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc32.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc34.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc34.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc36.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc36.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc40.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc42.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc42.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc44.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc44.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc46.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc46.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc48.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc48.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc50.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc50.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc52.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc52.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc54.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc54.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc56.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc56.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc58.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc58.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc60.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc60.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc62.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc62.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc64.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc64.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc66.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc66.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc68.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc68.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/data/rsc7.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/image.php: -------------------------------------------------------------------------------- 1 | disableBorder(); 13 | $qrcode->displayPNG(200); 14 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/index.php -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/qrcode.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/qrcode/qrcode.class.php -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusanscondensed.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusanscondensed.cw.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusanscondensed.cw127.php: -------------------------------------------------------------------------------- 1 | 8 | array ( 9 | 0 => 286, 10 | 1 => 360, 11 | 2 => 414, 12 | 3 => 754, 13 | 4 => 572, 14 | 5 => 855, 15 | 6 => 702, 16 | 7 => 247, 17 | ), 18 | 40 => 19 | array ( 20 | 0 => 351, 21 | 1 => 351, 22 | 'interval' => true, 23 | ), 24 | 42 => 25 | array ( 26 | 0 => 450, 27 | 1 => 754, 28 | 2 => 286, 29 | 3 => 325, 30 | 4 => 286, 31 | 5 => 303, 32 | ), 33 | 48 => 34 | array ( 35 | 0 => 572, 36 | 1 => 572, 37 | 'interval' => true, 38 | 2 => 572, 39 | 3 => 572, 40 | 4 => 572, 41 | 5 => 572, 42 | 6 => 572, 43 | 7 => 572, 44 | 8 => 572, 45 | 9 => 572, 46 | ), 47 | 58 => 48 | array ( 49 | 0 => 303, 50 | 1 => 303, 51 | 'interval' => true, 52 | ), 53 | 60 => 54 | array ( 55 | 0 => 754, 56 | 1 => 754, 57 | 'interval' => true, 58 | 2 => 754, 59 | ), 60 | 63 => 61 | array ( 62 | 0 => 478, 63 | 1 => 900, 64 | 2 => 615, 65 | 3 => 617, 66 | 4 => 628, 67 | 5 => 693, 68 | 6 => 568, 69 | 7 => 518, 70 | 8 => 697, 71 | 9 => 677, 72 | ), 73 | 73 => 74 | array ( 75 | 0 => 265, 76 | 1 => 265, 77 | 'interval' => true, 78 | ), 79 | 75 => 80 | array ( 81 | 0 => 590, 82 | 1 => 501, 83 | 2 => 776, 84 | 3 => 673, 85 | 4 => 708, 86 | 5 => 542, 87 | 6 => 708, 88 | 7 => 625, 89 | 8 => 571, 90 | 9 => 549, 91 | 10 => 659, 92 | 11 => 615, 93 | 12 => 890, 94 | 13 => 616, 95 | 14 => 549, 96 | 15 => 616, 97 | 16 => 351, 98 | 17 => 303, 99 | 18 => 351, 100 | 19 => 754, 101 | ), 102 | 95 => 103 | array ( 104 | 0 => 450, 105 | 1 => 450, 106 | 'interval' => true, 107 | ), 108 | 97 => 109 | array ( 110 | 0 => 551, 111 | 1 => 571, 112 | 2 => 495, 113 | 3 => 571, 114 | 4 => 554, 115 | 5 => 316, 116 | 6 => 571, 117 | 7 => 570, 118 | ), 119 | 105 => 120 | array ( 121 | 0 => 250, 122 | 1 => 250, 123 | 'interval' => true, 124 | ), 125 | 107 => 126 | array ( 127 | 0 => 521, 128 | 1 => 250, 129 | 2 => 876, 130 | 3 => 570, 131 | 4 => 550, 132 | ), 133 | 112 => 134 | array ( 135 | 0 => 571, 136 | 1 => 571, 137 | 'interval' => true, 138 | ), 139 | 114 => 140 | array ( 141 | 0 => 370, 142 | 1 => 469, 143 | 2 => 353, 144 | 3 => 570, 145 | 4 => 532, 146 | 5 => 736, 147 | ), 148 | 120 => 149 | array ( 150 | 0 => 532, 151 | 1 => 532, 152 | 'interval' => true, 153 | ), 154 | 122 => 155 | array ( 156 | 0 => 472, 157 | 1 => 572, 158 | 2 => 303, 159 | 3 => 572, 160 | 4 => 754, 161 | ), 162 | ); 163 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusanscondensed.mtx.php: -------------------------------------------------------------------------------- 1 | 928, 6 | 'Descent' => -236, 7 | 'CapHeight' => 928, 8 | 'Flags' => 4, 9 | 'FontBBox' => '[-918 -415 1513 1167]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 87, 12 | 'MissingWidth' => 540, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='/home/tspigel/Workspace/musikhug/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansCondensed.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=555944; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavusanscondensed'; 23 | $panose=' 0 0 2 b 6 6 3 8 4 2 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusanscondensedB.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusanscondensedB.cw.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusanscondensedB.cw127.php: -------------------------------------------------------------------------------- 1 | 8 | array ( 9 | 0 => 313, 10 | 1 => 410, 11 | 2 => 469, 12 | 3 => 754, 13 | 4 => 626, 14 | 5 => 901, 15 | 6 => 785, 16 | 7 => 275, 17 | ), 18 | 40 => 19 | array ( 20 | 0 => 411, 21 | 1 => 411, 22 | 'interval' => true, 23 | ), 24 | 42 => 25 | array ( 26 | 0 => 470, 27 | 1 => 754, 28 | 2 => 342, 29 | 3 => 374, 30 | 4 => 342, 31 | 5 => 329, 32 | ), 33 | 48 => 34 | array ( 35 | 0 => 626, 36 | 1 => 626, 37 | 'interval' => true, 38 | 2 => 626, 39 | 3 => 626, 40 | 4 => 626, 41 | 5 => 626, 42 | 6 => 626, 43 | 7 => 626, 44 | 8 => 626, 45 | 9 => 626, 46 | ), 47 | 58 => 48 | array ( 49 | 0 => 360, 50 | 1 => 360, 51 | 'interval' => true, 52 | ), 53 | 60 => 54 | array ( 55 | 0 => 754, 56 | 1 => 754, 57 | 'interval' => true, 58 | 2 => 754, 59 | ), 60 | 63 => 61 | array ( 62 | 0 => 522, 63 | 1 => 900, 64 | 2 => 696, 65 | 3 => 686, 66 | 4 => 660, 67 | 5 => 747, 68 | ), 69 | 69 => 70 | array ( 71 | 0 => 615, 72 | 1 => 615, 73 | 'interval' => true, 74 | ), 75 | 71 => 76 | array ( 77 | 0 => 738, 78 | 1 => 753, 79 | ), 80 | 73 => 81 | array ( 82 | 0 => 334, 83 | 1 => 334, 84 | 'interval' => true, 85 | ), 86 | 75 => 87 | array ( 88 | 0 => 697, 89 | 1 => 573, 90 | 2 => 896, 91 | 3 => 753, 92 | 4 => 765, 93 | 5 => 659, 94 | 6 => 765, 95 | 7 => 693, 96 | 8 => 648, 97 | 9 => 614, 98 | 10 => 730, 99 | 11 => 696, 100 | 12 => 993, 101 | 13 => 694, 102 | 14 => 651, 103 | 15 => 652, 104 | 16 => 411, 105 | 17 => 329, 106 | 18 => 411, 107 | 19 => 754, 108 | ), 109 | 95 => 110 | array ( 111 | 0 => 450, 112 | 1 => 450, 113 | 'interval' => true, 114 | ), 115 | 97 => 116 | array ( 117 | 0 => 607, 118 | 1 => 644, 119 | 2 => 533, 120 | 3 => 644, 121 | 4 => 610, 122 | 5 => 391, 123 | 6 => 644, 124 | 7 => 641, 125 | ), 126 | 105 => 127 | array ( 128 | 0 => 308, 129 | 1 => 308, 130 | 'interval' => true, 131 | ), 132 | 107 => 133 | array ( 134 | 0 => 598, 135 | 1 => 308, 136 | 2 => 938, 137 | 3 => 641, 138 | 4 => 618, 139 | ), 140 | 112 => 141 | array ( 142 | 0 => 644, 143 | 1 => 644, 144 | 'interval' => true, 145 | ), 146 | 114 => 147 | array ( 148 | 0 => 444, 149 | 1 => 536, 150 | 2 => 430, 151 | 3 => 641, 152 | 4 => 586, 153 | 5 => 831, 154 | 6 => 580, 155 | 7 => 586, 156 | 8 => 523, 157 | 9 => 641, 158 | 10 => 329, 159 | 11 => 641, 160 | 12 => 754, 161 | ), 162 | ); 163 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusanscondensedB.mtx.php: -------------------------------------------------------------------------------- 1 | 928, 6 | 'Descent' => -236, 7 | 'CapHeight' => 928, 8 | 'Flags' => 262148, 9 | 'FontBBox' => '[-962 -415 1778 1174]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 165, 12 | 'MissingWidth' => 540, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='/home/tspigel/Workspace/musikhug/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansCondensed-Bold.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=545712; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavusanscondensedB'; 23 | $panose=' 0 0 2 b 8 6 3 6 4 2 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusansmono.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusansmono.cw.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusansmono.cw127.php: -------------------------------------------------------------------------------- 1 | 8 | array ( 9 | 0 => 602, 10 | 1 => 602, 11 | 'interval' => true, 12 | 2 => 602, 13 | 3 => 602, 14 | 4 => 602, 15 | 5 => 602, 16 | 6 => 602, 17 | 7 => 602, 18 | 8 => 602, 19 | 9 => 602, 20 | 10 => 602, 21 | 11 => 602, 22 | 12 => 602, 23 | 13 => 602, 24 | 14 => 602, 25 | 15 => 602, 26 | 16 => 602, 27 | 17 => 602, 28 | 18 => 602, 29 | 19 => 602, 30 | 20 => 602, 31 | 21 => 602, 32 | 22 => 602, 33 | 23 => 602, 34 | 24 => 602, 35 | 25 => 602, 36 | 26 => 602, 37 | 27 => 602, 38 | 28 => 602, 39 | 29 => 602, 40 | 30 => 602, 41 | 31 => 602, 42 | 32 => 602, 43 | 33 => 602, 44 | 34 => 602, 45 | 35 => 602, 46 | 36 => 602, 47 | 37 => 602, 48 | 38 => 602, 49 | 39 => 602, 50 | 40 => 602, 51 | 41 => 602, 52 | 42 => 602, 53 | 43 => 602, 54 | 44 => 602, 55 | 45 => 602, 56 | 46 => 602, 57 | 47 => 602, 58 | 48 => 602, 59 | 49 => 602, 60 | 50 => 602, 61 | 51 => 602, 62 | 52 => 602, 63 | 53 => 602, 64 | 54 => 602, 65 | 55 => 602, 66 | 56 => 602, 67 | 57 => 602, 68 | 58 => 602, 69 | 59 => 602, 70 | 60 => 602, 71 | 61 => 602, 72 | 62 => 602, 73 | 63 => 602, 74 | 64 => 602, 75 | 65 => 602, 76 | 66 => 602, 77 | 67 => 602, 78 | 68 => 602, 79 | 69 => 602, 80 | 70 => 602, 81 | 71 => 602, 82 | 72 => 602, 83 | 73 => 602, 84 | 74 => 602, 85 | 75 => 602, 86 | 76 => 602, 87 | 77 => 602, 88 | 78 => 602, 89 | 79 => 602, 90 | 80 => 602, 91 | 81 => 602, 92 | 82 => 602, 93 | 83 => 602, 94 | 84 => 602, 95 | 85 => 602, 96 | 86 => 602, 97 | 87 => 602, 98 | 88 => 602, 99 | 89 => 602, 100 | 90 => 602, 101 | 91 => 602, 102 | 92 => 602, 103 | 93 => 602, 104 | 94 => 602, 105 | ), 106 | ); 107 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusansmono.mtx.php: -------------------------------------------------------------------------------- 1 | 928, 6 | 'Descent' => -236, 7 | 'CapHeight' => 928, 8 | 'Flags' => 5, 9 | 'FontBBox' => '[-558 -375 718 1042]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 87, 12 | 'MissingWidth' => 602, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='/home/tspigel/Workspace/musikhug/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansMono.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=322524; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavusansmono'; 23 | $panose=' 0 0 2 b 6 9 3 8 4 2 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusansmonoB.mtx.php: -------------------------------------------------------------------------------- 1 | 928, 6 | 'Descent' => -236, 7 | 'CapHeight' => 928, 8 | 'Flags' => 262149, 9 | 'FontBBox' => '[-447 -394 731 1052]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 165, 12 | 'MissingWidth' => 602, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='/home/tspigel/Workspace/musikhug/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansMono-Bold.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=302868; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavusansmonoB'; 23 | $panose=' 0 0 2 b 7 9 3 6 4 2 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusansmonoI.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusansmonoI.cw.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavusansmonoI.mtx.php: -------------------------------------------------------------------------------- 1 | 928, 6 | 'Descent' => -236, 7 | 'CapHeight' => 928, 8 | 'Flags' => 69, 9 | 'FontBBox' => '[-403 -375 746 1028]', 10 | 'ItalicAngle' => -11, 11 | 'StemV' => 87, 12 | 'MissingWidth' => 602, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='/home/tspigel/Workspace/musikhug/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansMono-Oblique.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=230244; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavusansmonoI'; 23 | $panose=' 0 0 2 b 6 9 3 3 4 b 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserif.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserif.cw.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserif.cw127.php: -------------------------------------------------------------------------------- 1 | 8 | array ( 9 | 0 => 318, 10 | 1 => 402, 11 | 2 => 460, 12 | 3 => 838, 13 | 4 => 636, 14 | 5 => 950, 15 | 6 => 890, 16 | 7 => 275, 17 | ), 18 | 40 => 19 | array ( 20 | 0 => 390, 21 | 1 => 390, 22 | 'interval' => true, 23 | ), 24 | 42 => 25 | array ( 26 | 0 => 500, 27 | 1 => 838, 28 | 2 => 318, 29 | 3 => 338, 30 | 4 => 318, 31 | 5 => 337, 32 | ), 33 | 48 => 34 | array ( 35 | 0 => 636, 36 | 1 => 636, 37 | 'interval' => true, 38 | 2 => 636, 39 | 3 => 636, 40 | 4 => 636, 41 | 5 => 636, 42 | 6 => 636, 43 | 7 => 636, 44 | 8 => 636, 45 | 9 => 636, 46 | ), 47 | 58 => 48 | array ( 49 | 0 => 337, 50 | 1 => 337, 51 | 'interval' => true, 52 | ), 53 | 60 => 54 | array ( 55 | 0 => 838, 56 | 1 => 838, 57 | 'interval' => true, 58 | 2 => 838, 59 | ), 60 | 63 => 61 | array ( 62 | 0 => 536, 63 | 1 => 1000, 64 | 2 => 722, 65 | 3 => 735, 66 | 4 => 765, 67 | 5 => 802, 68 | 6 => 730, 69 | 7 => 694, 70 | 8 => 799, 71 | 9 => 872, 72 | 10 => 395, 73 | 11 => 401, 74 | 12 => 747, 75 | 13 => 664, 76 | 14 => 1024, 77 | 15 => 875, 78 | 16 => 820, 79 | 17 => 673, 80 | 18 => 820, 81 | 19 => 753, 82 | 20 => 685, 83 | 21 => 667, 84 | 22 => 843, 85 | 23 => 722, 86 | 24 => 1028, 87 | 25 => 712, 88 | 26 => 660, 89 | 27 => 695, 90 | 28 => 390, 91 | 29 => 337, 92 | 30 => 390, 93 | 31 => 838, 94 | ), 95 | 95 => 96 | array ( 97 | 0 => 500, 98 | 1 => 500, 99 | 'interval' => true, 100 | ), 101 | 97 => 102 | array ( 103 | 0 => 596, 104 | 1 => 640, 105 | 2 => 560, 106 | 3 => 640, 107 | 4 => 592, 108 | 5 => 370, 109 | 6 => 640, 110 | 7 => 644, 111 | 8 => 320, 112 | 9 => 310, 113 | 10 => 606, 114 | 11 => 320, 115 | 12 => 948, 116 | 13 => 644, 117 | 14 => 602, 118 | ), 119 | 112 => 120 | array ( 121 | 0 => 640, 122 | 1 => 640, 123 | 'interval' => true, 124 | ), 125 | 114 => 126 | array ( 127 | 0 => 478, 128 | 1 => 513, 129 | 2 => 402, 130 | 3 => 644, 131 | 4 => 565, 132 | 5 => 856, 133 | 6 => 564, 134 | 7 => 565, 135 | 8 => 527, 136 | 9 => 636, 137 | 10 => 337, 138 | 11 => 636, 139 | 12 => 838, 140 | ), 141 | ); 142 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserif.mtx.php: -------------------------------------------------------------------------------- 1 | 928, 6 | 'Descent' => -236, 7 | 'CapHeight' => 928, 8 | 'Flags' => 4, 9 | 'FontBBox' => '[-770 -347 1679 1242]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 87, 12 | 'MissingWidth' => 600, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='/home/tspigel/Workspace/musikhug/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerif.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=330052; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavuserif'; 23 | $panose=' 0 0 2 6 6 3 5 6 5 2 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserifB.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserifB.cw.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserifB.cw127.php: -------------------------------------------------------------------------------- 1 | 8 | array ( 9 | 0 => 348, 10 | 1 => 439, 11 | 2 => 521, 12 | 3 => 838, 13 | 4 => 696, 14 | 5 => 950, 15 | 6 => 903, 16 | 7 => 306, 17 | ), 18 | 40 => 19 | array ( 20 | 0 => 473, 21 | 1 => 473, 22 | 'interval' => true, 23 | ), 24 | 42 => 25 | array ( 26 | 0 => 523, 27 | 1 => 838, 28 | 2 => 348, 29 | 3 => 415, 30 | 4 => 348, 31 | 5 => 365, 32 | ), 33 | 48 => 34 | array ( 35 | 0 => 696, 36 | 1 => 696, 37 | 'interval' => true, 38 | 2 => 696, 39 | 3 => 696, 40 | 4 => 696, 41 | 5 => 696, 42 | 6 => 696, 43 | 7 => 696, 44 | 8 => 696, 45 | 9 => 696, 46 | ), 47 | 58 => 48 | array ( 49 | 0 => 369, 50 | 1 => 369, 51 | 'interval' => true, 52 | ), 53 | 60 => 54 | array ( 55 | 0 => 838, 56 | 1 => 838, 57 | 'interval' => true, 58 | 2 => 838, 59 | ), 60 | 63 => 61 | array ( 62 | 0 => 586, 63 | 1 => 1000, 64 | 2 => 776, 65 | 3 => 845, 66 | 4 => 796, 67 | 5 => 867, 68 | 6 => 762, 69 | 7 => 710, 70 | 8 => 854, 71 | 9 => 945, 72 | 10 => 468, 73 | 11 => 473, 74 | 12 => 869, 75 | 13 => 703, 76 | 14 => 1107, 77 | 15 => 914, 78 | 16 => 871, 79 | 17 => 752, 80 | 18 => 871, 81 | 19 => 831, 82 | 20 => 722, 83 | 21 => 744, 84 | 22 => 872, 85 | 23 => 776, 86 | 24 => 1123, 87 | 25 => 776, 88 | 26 => 714, 89 | 27 => 730, 90 | 28 => 473, 91 | 29 => 365, 92 | 30 => 473, 93 | 31 => 838, 94 | ), 95 | 95 => 96 | array ( 97 | 0 => 500, 98 | 1 => 500, 99 | 'interval' => true, 100 | ), 101 | 97 => 102 | array ( 103 | 0 => 648, 104 | 1 => 699, 105 | 2 => 609, 106 | 3 => 699, 107 | 4 => 636, 108 | 5 => 430, 109 | 6 => 699, 110 | 7 => 727, 111 | 8 => 380, 112 | 9 => 362, 113 | 10 => 693, 114 | 11 => 380, 115 | 12 => 1058, 116 | 13 => 727, 117 | 14 => 667, 118 | ), 119 | 112 => 120 | array ( 121 | 0 => 699, 122 | 1 => 699, 123 | 'interval' => true, 124 | ), 125 | 114 => 126 | array ( 127 | 0 => 527, 128 | 1 => 563, 129 | 2 => 462, 130 | 3 => 727, 131 | 4 => 581, 132 | 5 => 861, 133 | 6 => 596, 134 | 7 => 581, 135 | 8 => 568, 136 | 9 => 643, 137 | 10 => 364, 138 | 11 => 643, 139 | 12 => 838, 140 | ), 141 | ); 142 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserifB.mtx.php: -------------------------------------------------------------------------------- 1 | 939, 6 | 'Descent' => -236, 7 | 'CapHeight' => 939, 8 | 'Flags' => 262148, 9 | 'FontBBox' => '[-836 -389 1796 1235]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 165, 12 | 'MissingWidth' => 600, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='/home/tspigel/Workspace/musikhug/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerif-Bold.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=307596; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavuserifB'; 23 | $panose=' 0 0 2 6 8 3 5 6 5 2 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserifcondensed.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserifcondensed.cw.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserifcondensed.cw127.php: -------------------------------------------------------------------------------- 1 | 8 | array ( 9 | 0 => 286, 10 | 1 => 361, 11 | 2 => 414, 12 | 3 => 754, 13 | 4 => 572, 14 | 5 => 855, 15 | 6 => 801, 16 | 7 => 247, 17 | ), 18 | 40 => 19 | array ( 20 | 0 => 351, 21 | 1 => 351, 22 | 'interval' => true, 23 | ), 24 | 42 => 25 | array ( 26 | 0 => 450, 27 | 1 => 754, 28 | 2 => 286, 29 | 3 => 304, 30 | 4 => 286, 31 | 5 => 303, 32 | ), 33 | 48 => 34 | array ( 35 | 0 => 572, 36 | 1 => 572, 37 | 'interval' => true, 38 | 2 => 572, 39 | 3 => 572, 40 | 4 => 572, 41 | 5 => 572, 42 | 6 => 572, 43 | 7 => 572, 44 | 8 => 572, 45 | 9 => 572, 46 | ), 47 | 58 => 48 | array ( 49 | 0 => 303, 50 | 1 => 303, 51 | 'interval' => true, 52 | ), 53 | 60 => 54 | array ( 55 | 0 => 754, 56 | 1 => 754, 57 | 'interval' => true, 58 | 2 => 754, 59 | ), 60 | 63 => 61 | array ( 62 | 0 => 482, 63 | 1 => 900, 64 | 2 => 650, 65 | 3 => 661, 66 | 4 => 688, 67 | 5 => 721, 68 | 6 => 657, 69 | 7 => 624, 70 | 8 => 719, 71 | 9 => 785, 72 | 10 => 355, 73 | 11 => 360, 74 | 12 => 672, 75 | 13 => 598, 76 | 14 => 921, 77 | 15 => 787, 78 | 16 => 738, 79 | 17 => 605, 80 | 18 => 738, 81 | 19 => 677, 82 | 20 => 616, 83 | 21 => 600, 84 | 22 => 758, 85 | 23 => 650, 86 | 24 => 925, 87 | 25 => 641, 88 | 26 => 594, 89 | 27 => 625, 90 | 28 => 351, 91 | 29 => 303, 92 | 30 => 351, 93 | 31 => 754, 94 | ), 95 | 95 => 96 | array ( 97 | 0 => 450, 98 | 1 => 450, 99 | 'interval' => true, 100 | ), 101 | 97 => 102 | array ( 103 | 0 => 536, 104 | 1 => 576, 105 | 2 => 504, 106 | 3 => 576, 107 | 4 => 532, 108 | 5 => 333, 109 | 6 => 576, 110 | 7 => 580, 111 | 8 => 288, 112 | 9 => 279, 113 | 10 => 545, 114 | 11 => 288, 115 | 12 => 853, 116 | 13 => 580, 117 | 14 => 542, 118 | ), 119 | 112 => 120 | array ( 121 | 0 => 576, 122 | 1 => 576, 123 | 'interval' => true, 124 | ), 125 | 114 => 126 | array ( 127 | 0 => 430, 128 | 1 => 461, 129 | 2 => 361, 130 | 3 => 580, 131 | 4 => 508, 132 | 5 => 770, 133 | 6 => 507, 134 | 7 => 508, 135 | 8 => 474, 136 | 9 => 572, 137 | 10 => 303, 138 | 11 => 572, 139 | 12 => 754, 140 | ), 141 | ); 142 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserifcondensed.mtx.php: -------------------------------------------------------------------------------- 1 | 928, 6 | 'Descent' => -236, 7 | 'CapHeight' => 928, 8 | 'Flags' => 4, 9 | 'FontBBox' => '[-693 -347 1512 1242]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 87, 12 | 'MissingWidth' => 540, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='/home/tspigel/Workspace/musikhug/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerifCondensed.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=296976; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavuserifcondensed'; 23 | $panose=' 0 0 2 6 6 6 5 6 5 2 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserifcondensedB.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserifcondensedB.cw.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dejavuserifcondensedB.mtx.php: -------------------------------------------------------------------------------- 1 | 939, 6 | 'Descent' => -236, 7 | 'CapHeight' => 939, 8 | 'Flags' => 262148, 9 | 'FontBBox' => '[-752 -389 1617 1235]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 165, 12 | 'MissingWidth' => 540, 13 | ); 14 | $up=-63; 15 | $ut=44; 16 | $ttffile='/home/tspigel/Workspace/musikhug/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerifCondensed-Bold.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=283140; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=true; 22 | $fontkey='dejavuserifcondensedB'; 23 | $panose=' 0 0 2 6 8 6 5 6 5 2 2 4'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/dummy.txt: -------------------------------------------------------------------------------- 1 | This is just a placeholder file so that the folder is created on install. 2 | It can be deleted once installed. -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/linlibertine.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/linlibertine.cw.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/linlibertine.cw127.php: -------------------------------------------------------------------------------- 1 | 8 | array ( 9 | 0 => 250, 10 | 1 => 228, 11 | 2 => 336, 12 | ), 13 | 35 => 14 | array ( 15 | 0 => 440, 16 | 1 => 440, 17 | 'interval' => true, 18 | ), 19 | 37 => 20 | array ( 21 | 0 => 637, 22 | 1 => 705, 23 | 2 => 190, 24 | ), 25 | 40 => 26 | array ( 27 | 0 => 295, 28 | 1 => 295, 29 | 'interval' => true, 30 | ), 31 | 42 => 32 | array ( 33 | 0 => 369, 34 | 1 => 527, 35 | 2 => 220, 36 | 3 => 338, 37 | 4 => 220, 38 | 5 => 323, 39 | ), 40 | 48 => 41 | array ( 42 | 0 => 440, 43 | 1 => 440, 44 | 'interval' => true, 45 | 2 => 440, 46 | 3 => 440, 47 | 4 => 440, 48 | 5 => 440, 49 | 6 => 440, 50 | 7 => 440, 51 | 8 => 440, 52 | 9 => 440, 53 | ), 54 | 58 => 55 | array ( 56 | 0 => 220, 57 | 1 => 220, 58 | 'interval' => true, 59 | ), 60 | 60 => 61 | array ( 62 | 0 => 487, 63 | 1 => 527, 64 | 2 => 487, 65 | 3 => 405, 66 | 4 => 895, 67 | 5 => 695, 68 | 6 => 582, 69 | 7 => 644, 70 | 8 => 697, 71 | 9 => 549, 72 | 10 => 477, 73 | 11 => 693, 74 | 12 => 700, 75 | 13 => 293, 76 | 14 => 315, 77 | 15 => 637, 78 | 16 => 526, 79 | 17 => 839, 80 | 18 => 695, 81 | 19 => 698, 82 | 20 => 521, 83 | 21 => 698, 84 | 22 => 579, 85 | 23 => 475, 86 | 24 => 567, 87 | 25 => 661, 88 | 26 => 622, 89 | 27 => 924, 90 | 28 => 655, 91 | 29 => 575, 92 | 30 => 604, 93 | 31 => 356, 94 | 32 => 287, 95 | 33 => 356, 96 | 34 => 518, 97 | 35 => 486, 98 | 36 => 392, 99 | 37 => 451, 100 | 38 => 487, 101 | 39 => 415, 102 | 40 => 503, 103 | 41 => 427, 104 | 42 => 308, 105 | 43 => 479, 106 | 44 => 520, 107 | 45 => 267, 108 | 46 => 272, 109 | 47 => 479, 110 | 48 => 260, 111 | 49 => 782, 112 | 50 => 523, 113 | 51 => 484, 114 | 52 => 491, 115 | 53 => 498, 116 | 54 => 355, 117 | 55 => 366, 118 | 56 => 302, 119 | 57 => 517, 120 | 58 => 488, 121 | 59 => 736, 122 | 60 => 490, 123 | 61 => 505, 124 | 62 => 416, 125 | 63 => 273, 126 | 64 => 205, 127 | 65 => 273, 128 | 66 => 449, 129 | ), 130 | ); 131 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/linlibertine.mtx.php: -------------------------------------------------------------------------------- 1 | 894, 6 | 'Descent' => -246, 7 | 'CapHeight' => 894, 8 | 'Flags' => 4, 9 | 'FontBBox' => '[-1082 -246 6171 894]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 87, 12 | 'MissingWidth' => 500, 13 | ); 14 | $up=-117; 15 | $ut=40; 16 | $ttffile='/home/tspigel/Workspace/musikhug/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/LinLibertine.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=1693712; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=false; 22 | $fontkey='linlibertine'; 23 | $panose=' 1 5 2 0 5 3 0 0 0 0 0 0'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/linlibertineB.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/linlibertineB.cw.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/linlibertineB.cw127.php: -------------------------------------------------------------------------------- 1 | 8 | array ( 9 | 0 => 250, 10 | 1 => 244, 11 | 2 => 366, 12 | 3 => 463, 13 | 4 => 439, 14 | 5 => 637, 15 | 6 => 729, 16 | 7 => 215, 17 | ), 18 | 40 => 19 | array ( 20 | 0 => 315, 21 | 1 => 315, 22 | 'interval' => true, 23 | ), 24 | 42 => 25 | array ( 26 | 0 => 433, 27 | 1 => 538, 28 | 2 => 244, 29 | 3 => 357, 30 | 4 => 244, 31 | 5 => 316, 32 | ), 33 | 48 => 34 | array ( 35 | 0 => 464, 36 | 1 => 464, 37 | 'interval' => true, 38 | 2 => 464, 39 | 3 => 464, 40 | 4 => 464, 41 | 5 => 464, 42 | 6 => 464, 43 | 7 => 464, 44 | 8 => 464, 45 | 9 => 464, 46 | ), 47 | 58 => 48 | array ( 49 | 0 => 220, 50 | 1 => 220, 51 | 'interval' => true, 52 | ), 53 | 60 => 54 | array ( 55 | 0 => 512, 56 | 1 => 552, 57 | 2 => 512, 58 | 3 => 430, 59 | 4 => 1029, 60 | 5 => 699, 61 | 6 => 621, 62 | 7 => 667, 63 | 8 => 718, 64 | 9 => 563, 65 | 10 => 513, 66 | 11 => 727, 67 | 12 => 724, 68 | 13 => 320, 69 | 14 => 339, 70 | 15 => 660, 71 | 16 => 538, 72 | 17 => 853, 73 | 18 => 711, 74 | 19 => 730, 75 | 20 => 546, 76 | 21 => 730, 77 | 22 => 609, 78 | 23 => 476, 79 | 24 => 597, 80 | 25 => 678, 81 | 26 => 637, 82 | 27 => 999, 83 | 28 => 709, 84 | 29 => 617, 85 | 30 => 625, 86 | 31 => 375, 87 | 32 => 308, 88 | 33 => 375, 89 | 34 => 518, 90 | 35 => 487, 91 | 36 => 392, 92 | 37 => 493, 93 | 38 => 497, 94 | 39 => 433, 95 | 40 => 525, 96 | 41 => 461, 97 | 42 => 332, 98 | 43 => 517, 99 | 44 => 540, 100 | 45 => 290, 101 | 46 => 284, 102 | 47 => 511, 103 | 48 => 298, 104 | 49 => 774, 105 | 50 => 553, 106 | 51 => 519, 107 | 52 => 536, 108 | 53 => 526, 109 | ), 110 | 114 => 111 | array ( 112 | 0 => 401, 113 | 1 => 401, 114 | 'interval' => true, 115 | ), 116 | 116 => 117 | array ( 118 | 0 => 331, 119 | 1 => 542, 120 | 2 => 527, 121 | 3 => 778, 122 | 4 => 522, 123 | 5 => 534, 124 | 6 => 426, 125 | 7 => 307, 126 | 8 => 228, 127 | 9 => 307, 128 | 10 => 474, 129 | ), 130 | ); 131 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/linlibertineB.mtx.php: -------------------------------------------------------------------------------- 1 | 894, 6 | 'Descent' => -237, 7 | 'CapHeight' => 894, 8 | 'Flags' => 262148, 9 | 'FontBBox' => '[-446 -328 6171 898]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 165, 12 | 'MissingWidth' => 500, 13 | ); 14 | $up=-117; 15 | $ut=39; 16 | $ttffile='/home/tspigel/Workspace/musikhug/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/LinLibertine-Bold.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=1459816; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=false; 22 | $fontkey='linlibertineB'; 23 | $panose=' 1 5 2 0 8 3 0 0 0 0 0 0'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/linlibertineI.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/linlibertineI.cw.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/linlibertineI.mtx.php: -------------------------------------------------------------------------------- 1 | 894, 6 | 'Descent' => -237, 7 | 'CapHeight' => 894, 8 | 'Flags' => 68, 9 | 'FontBBox' => '[-446 -313 6171 903]', 10 | 'ItalicAngle' => -11.5, 11 | 'StemV' => 87, 12 | 'MissingWidth' => 500, 13 | ); 14 | $up=-105; 15 | $ut=15; 16 | $ttffile='/home/tspigel/Workspace/comwrap-pdf/vendor/cmim/comwrap_pdf/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/LinLibertine-Italic.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=863660; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=false; 22 | $fontkey='linlibertineI'; 23 | $panose=' 1 5 2 0 5 3 0 0 0 0 0 0'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/ocrb.cgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/ocrb.cgm -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/ocrb.cw: -------------------------------------------------------------------------------- 1 | /W [ 32 38 723 40 126 723 168 168 723 171 171 723 173 173 723 175 175 723 180 180 723 184 184 723 187 187 723 258 258 723 260 260 723 262 262 723 268 268 723 270 270 723 280 280 723 282 282 723 286 286 723 305 305 723 313 313 723 317 317 723 710 711 723 728 733 723 8211 8212 723 8216 8218 723 8220 8222 723 8240 8240 723 8249 8250 723 63166 63166 723 64256 64260 723 ] -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/ocrb.cw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/ocrb.cw.dat -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/ocrb.mtx.php: -------------------------------------------------------------------------------- 1 | 938, 6 | 'Descent' => -335, 7 | 'CapHeight' => 938, 8 | 'Flags' => 4, 9 | 'FontBBox' => '[-87 -335 782 938]', 10 | 'ItalicAngle' => 0, 11 | 'StemV' => 87, 12 | 'MissingWidth' => 723, 13 | ); 14 | $up=-100; 15 | $ut=50; 16 | $ttffile='/home/tspigel/Workspace/musikhug/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ocrb10.ttf'; 17 | $TTCfontID='0'; 18 | $originalsize=23112; 19 | $sip=false; 20 | $smp=false; 21 | $BMPselected=false; 22 | $fontkey='ocrb'; 23 | $panose=' 0 0 2 0 5 9 0 0 0 0 0 0'; 24 | $haskerninfo=false; 25 | $unAGlyphs=false; 26 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/ocrb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfontdata/ocrb.z -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSans-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSans-BoldOblique.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSans-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSans-Oblique.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansCondensed-Bold.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansCondensed-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansCondensed-BoldOblique.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansCondensed-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansCondensed-Oblique.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansCondensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansCondensed.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansMono-Bold.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansMono-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansMono-BoldOblique.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansMono-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansMono-Oblique.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerif-Bold.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerif-Italic.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerif.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerifCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerifCondensed-Bold.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerifCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerifCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerifCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerifCondensed-Italic.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerifCondensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/DejaVuSerifCondensed.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Garuda-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Garuda-Bold.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Garuda-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Garuda-BoldOblique.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Garuda-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Garuda-Oblique.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Garuda.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Garuda.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/LinLibertine-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/LinLibertine-Bold.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/LinLibertine-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/LinLibertine-Italic.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/LinLibertine.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/LinLibertine.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/LinLibertineCondensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/LinLibertineCondensed.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Norasi-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Norasi-Bold.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Norasi-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Norasi-BoldOblique.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Norasi-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Norasi-Oblique.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Norasi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/Norasi.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB Riyaz.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB Riyaz.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB RiyazBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB RiyazBd.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB RiyazBdIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB RiyazBdIt.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB RiyazIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB RiyazIt.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB Zar Bd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB Zar Bd.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB Zar BdIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB Zar BdIt.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB Zar It.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB Zar It.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB Zar.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/XB Zar.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_bn_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_bn_1_001.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_gu_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_gu_1_001.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_hi_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_hi_1_001.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_kn_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_kn_1_001.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_ml_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_ml_1_001.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_or_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_or_1_001.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_pa_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_pa_1_001.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_ta_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_ta_1_001.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_te_1_001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ind_te_1_001.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ocrb10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comwrap/magento-comwrap-pdf/b6c0aaf1b65af29cf58b12ecb678fdd98b2fa13a/app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ocrb10.ttf -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/ttfonts/ocrbinfo.txt: -------------------------------------------------------------------------------- 1 | Mostly-free OCR B 2 | 3 | This font is used in UPC bar code symbols, including the ISBN symbols on 4 | most published books. 5 | 6 | A freely distributable version seems to be sorely needed. Until now, it's 7 | been very difficult to find the font in computer-usable format except by 8 | paying a high fee to a commercial font vendor. Even many serious commercial 9 | publishers have so much trouble getting it right that they just go ahead and 10 | use Helvetica instead, or even (shudder) Arial. Since the OCR B font is 11 | required by an international standard, it seems like it ought to be free. 12 | So here it is. The font in this package is not a "ripped", pirated, or 13 | shadily reverse engineered version; every effort has been made to ensure 14 | that it genuinely derives from free sources and all the creators involved 15 | have actually intended it for free public use. 16 | 17 | Converted by Matthew Skala from Metafont format to Postscript and TrueType 18 | formats, July 28, 2006, using mftrace 1.2.4 by Paul Vojta, which is 19 | available from 20 | http://www.xs4all.nl/~hanwen/mftrace/ 21 | and Autotrace 0.31.1 available from 22 | http://autotrace.sourceforge.net/ 23 | 24 | The Metafont files (not included - see notes below) were coded by Norbert 25 | Schwarz in the 1980s, based on German standards documents. He has attached 26 | a notice, notably not actually claiming any copyright - see the file 27 | "ocrbinfo" - saying that the fonts are "given to free non commercial use", 28 | but commenting that he is only free to grant rights to his own work on the 29 | digitization, because he did not design the original letter forms. He 30 | suggests that there may be other copyright claims attached to the letter 31 | forms themselves, which Schwarz credits as being originally designed by 32 | "Adam Frutiger" [sic], almost certainly a mistake for Adrian Frutiger. My 33 | (Matthew Skala's) understanding of copyright law, at least in the USA and 34 | Canada, is that in fact typefaces per se cannot be subject to copyright 35 | claims, so the software embodiment is the only thing subject to copyright 36 | and Schwarz's release makes it available for whatever "non commercial use" 37 | means. 38 | 39 | To avoid muddying the waters further, any copyright claims by Matthew Skala 40 | on these files are hereby released to the public domain. I'd like for these 41 | fonts to be freely usable even in marginally commercial applications, such 42 | as to generate UPC labels for books that will be sold for profit, but it may 43 | not be within my power to grant that myself because I didn't write the 44 | Metafont files although I did do considerable, and probably copyrightable, 45 | work on the translation to Postscript and TrueType. It was *not* a purely 46 | automated process; try using the tools I used and see how far you get 47 | without human editing! I'd also like for these fonts (the fonts themselves 48 | as opposed to documents made with them) not to be sold, not even indirectly 49 | by those Web sites that advertise "free downloads" but make it difficult to 50 | actually download fonts without paying a fee. 51 | 52 | NOTE: This ZIP archive is a stripped-down version containing just the 53 | essential files for using the main OCR B font on most systems. If you want 54 | the much larger complete package, which contains Metafont sources and several 55 | variant fonts (reverse-video, outline, and slanted), look for a ZIP archive 56 | called ocrb-complete.zip wherever you found this one. 57 | 58 | Matthew Skala 59 | mskala@ansuz.sooke.bc.ca 60 | http://ansuz.sooke.bc.ca/ 61 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/utils/font_collections.php: -------------------------------------------------------------------------------- 1 | Font collection files found in '.$ttfdir.' directory'; 43 | foreach($ff AS $f) { 44 | $ret = array(); 45 | if (strtolower(substr($f,-4,4))=='.ttc' || strtolower(substr($f,-4,4))=='.ttcf') { // Mac ttcf 46 | $ttf->getTTCFonts($ttfdir.$f); 47 | $nf = $ttf->numTTCFonts; 48 | echo '

Font collection file ('.$f.') contains the following fonts:

'; 49 | for ($i=1; $i<=$nf; $i++) { 50 | $ret = $ttf->extractCoreInfo($ttfdir.$f, $i); 51 | $tfname = $ret[0]; 52 | $bold = $ret[1]; 53 | $italic = $ret[2]; 54 | $fname = strtolower($tfname ); 55 | $fname = preg_replace('/[ ()]/','',$fname ); 56 | $style = ''; 57 | if ($bold) { $style .= 'Bold'; } 58 | if ($italic) { $style .= 'Italic'; } 59 | if (!$style) { $style = 'Regular'; } 60 | 61 | 62 | echo '
['.$i.'] '.$tfname.' ('.$fname.') '.$style.'
'; 63 | 64 | } 65 | echo '
'; 66 | } 67 | } 68 | 69 | 70 | exit; 71 | 72 | ?> -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/lib/MPDF56/utils/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

mPDF Font Utility scripts for Version 5.0

8 |

9 | Dump all characters from a font (font_dump.php) 10 |

11 |

12 | Show a list of all font names available (font_names.php) 13 |

14 |

15 | Show fonts in Collections .ttc (font_collections.php) 16 |

17 |

18 | Show coverage of characters from all fonts (font_coverage.php) 19 |

20 | 21 |

Edit the scripts to change the font folder if you wish - this is set by default to /ttfonts/

22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /app/code/local/Comwrap/Pdf/sql/comwrap_pdf_setup/install-1.0.php: -------------------------------------------------------------------------------- 1 | 23 | * @version 1.0 24 | */ 25 | /* @var $installer Mage_Core_Model_Resource_Setup */ 26 | $installer = $this; 27 | 28 | $installer->startSetup(); 29 | 30 | 31 | 32 | $installer->endSetup(); -------------------------------------------------------------------------------- /app/design/frontend/base/default/layout/comwrap/pdf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /app/etc/modules/Comwrap_Pdf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | true 6 | local 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "comwrap/magento-comwrap-pdf", 3 | "type": "magento-module", 4 | "license":"GPL v2.0", 5 | "description":"This module replaces the Zend_Pdf method of creating the pdf files with mPDF (html + css support)", 6 | "authors":[ 7 | { 8 | "name":"Thomas Spigel", 9 | "email":"tspigel@comwrap.com" 10 | } 11 | ], 12 | "require": { 13 | "magento-hackathon/magento-composer-installer": "*" 14 | }, 15 | "extra": { 16 | "map": [ 17 | ["app/etc/modules/Comwrap_Pdf.xml", "app/etc/modules/Comwrap_Pdf.xml"], 18 | ["app/code/local/Comwrap/Pdf", "app/code/local/Comwrap/Pdf"], 19 | ["app/design/frontend/base/default/template/comwrap/pdf", "app/design/frontend/base/default/template/comwrap/pdf"], 20 | ["app/design/frontend/base/default/layout/comwrap/pdf.xml", "app/design/frontend/base/default/layout/comwrap/pdf.xml"] 21 | ] 22 | } 23 | } 24 | --------------------------------------------------------------------------------