I am trying to dynamically create a PDF (on the server) with some text on top of a predefined background image. I use PHP and I just can't find it.
I looked at http://www.fpdf.org/ and a bunch of other options.
I don't mind using Flash if it does the trick.
Does anyone have any ideas on how to make this work?
You should take a look at this class, I really like it. It displays HTML to PDF, and if you define a background image using CSS, it will be in the generated PDF file.
FPDF :
$fpdf = new FPDF(); $fpdf->AddPage(); $fpdf->Image('background-image.png', 0, 0, $fpdf->w, $fpdf->h); $fpdf->Output();
, , -.
TCPDF, () HTML . TCPDF , ( 51 ).
, dompdf.
, ;)... , (PHP, HTML), , -, (PDF). wiki HTML PDF ( PHP-).
Source: https://habr.com/ru/post/1792260/More articles:Grails: custom validator based on previous field value - grailsSQL to generate a range of valid values ββbetween two known integers - sqlWhen to use a web service and when not to use a web service? - architectureWPF flickers during animation in Viewport3D - animationStrange logic in a Lua script? - luaEquivalent to #define in tcl? - c-preprocessorASP.NET access to external servers inside the panel - c #Mapper question in C # .NET - activerecordCmake "set" does not work with the same variable after calling "find_path" - windowsSpecifying a Type Alias ββwith CodeDom - c #All Articles