Samgarr Posted August 19, 2011 Share Posted August 19, 2011 Zdravim, potrebuji poradit s nasledujicim problemem. Do faktury potrebuji vlozit obrazek(razitko s podpisem). Podle googlu a dokumentace tcpdf jsem dospel k tomu, ze by mel byt vlozeny obrazek nasledujicim kodem: $this->Image(_PS_IMG_DIR_.'/podpis_faktura.jpg', 25); Pokud se pokusim vygenerovat fakturu dostanu http error 500 HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request. a v logu apache se objevi [Fri Aug 19 13:51:34 2011] [warn] [client 85.70.xxx.xxx] mod_fcgid: stderr: PHP Notice: Undefined variable: img_update_time in /var/www/clients/client6/web6/web/tools/smarty/sysplugins/smarty_internal_data.php on line 291 [Fri Aug 19 13:51:34 2011] [warn] [client 85.70.xxx.xxx] mod_fcgid: stderr: PHP Notice: Undefined variable: img_update_time in /var/www/clients/client6/web6/web/tools/smarty/sysplugins/smarty_internal_data.php on line 291 Bohuzel jsem nikde nenasel kde ma byt definovana promenna $img_update_time ani co ma obsahovat. Diky za rady! Link to comment Share on other sites More sharing options...
Samgarr Posted August 22, 2011 Author Share Posted August 22, 2011 Nikdo nevi? Link to comment Share on other sites More sharing options...
berka.pavel Posted September 13, 2011 Share Posted September 13, 2011 presta používá fpdf... tak se podívej sem http://www.fpdf.org/ Link to comment Share on other sites More sharing options...
webplus Posted October 13, 2011 Share Posted October 13, 2011 Také přidávám razítko s podpisem, takto to funguje: if (file_exists(_PS_IMG_DIR_.'/podpis_faktura.jpg')) $this->Image(_PS_IMG_DIR_.'/podpis_faktura.jpg', 68, 191, 30, 0); } Obrázek nahrajete do složky /img Pozici obrázku nastavíte hrátkami s čísly 68 a 191 :-) 1 Link to comment Share on other sites More sharing options...
Jenduleen Posted June 14, 2012 Share Posted June 14, 2012 Zdravim, jsem uplny amater a co se tyka PHP, tak je to pro me spanelska vesnice. Chci se zeptat ve kterem souboru se tato zmena provadi? faktury bude vydavat vice lidi a nechce se mi platit tolikm razitek .) diky moc za pomoc Link to comment Share on other sites More sharing options...
cikon95 Posted June 15, 2012 Share Posted June 15, 2012 tento subor edituj: classes/PDF.php Link to comment Share on other sites More sharing options...
Jenduleen Posted July 4, 2012 Share Posted July 4, 2012 (edited) tento subor edituj: classes/PDF.php diky moc, a je nuty to zadat a nejakou presnou pozici, nebo staci doplnit a konec? teď to mám takto, ale obrázek nikde nevím jestli mám správně ty uváděcí značky public static function fontname() { $font = self::embedfont(); if (in_array(self::$_pdfparams[self::$_iso]['font'], self::$_fpdf_core_fonts)) $font = self::$_pdfparams[self::$_iso]['font']; return $font ? $font : 'Arial'; //razitko s podpisem if (file_exists(_PS_IMG_DIR_.'/razitko_WEB.jpg')) $this->Image(_PS_IMG_DIR_.'/razitko_WEB.jpg', 68, 191, 30, 0); } } Edited July 4, 2012 by Jenduleen (see edit history) Link to comment Share on other sites More sharing options...
cikon95 Posted July 9, 2012 Share Posted July 9, 2012 diky moc, a je nuty to zadat a nejakou presnou pozici, nebo staci doplnit a konec? teď to mám takto, ale obrázek nikde nevím jestli mám správně ty uváděcí značky public static function fontname() { $font = self::embedfont(); if (in_array(self::$_pdfparams[self::$_iso]['font'], self::$_fpdf_core_fonts)) $font = self::$_pdfparams[self::$_iso]['font']; return $font ? $font : 'Arial'; //razitko s podpisem if (file_exists(_PS_IMG_DIR_.'/razitko_WEB.jpg')) $this->Image(_PS_IMG_DIR_.'/razitko_WEB.jpg', 68, 191, 30, 0); } } Ano pohraj sa z 68, 191, 30, 0 to uz prides nato sam ... $this->Image(_PS_IMG_DIR_.'/razitko_WEB.jpg', 68, 191, 30, 0); Link to comment Share on other sites More sharing options...
tomas Posted July 13, 2012 Share Posted July 13, 2012 Ano pohraj sa z 68, 191, 30, 0 to uz prides nato sam ... $this->Image(_PS_IMG_DIR_.'/razitko_WEB.jpg', 68, 191, 30, 0); Zeptám se na jeden detail, razítko vloženo, ale samozřejmě když je objednáno více produktů tak je pevně na stránce a nepohybuje se s textem Razítko a podpis dodavatele, nevíte kam umístit nebo co dopsat aby chodil s tím to textem a posouval se dle objednaných produktů nahoru dolů??? díky Link to comment Share on other sites More sharing options...
Recommended Posts