Hello ,
i have a problem with PDF Out.Add Page().
I want to create a PDF with multiple pages, one image for each page. when i tried more than 4 pages, the programs crash
can someone help me
thanks in advance for your answer
i have a problem with PDF Out.Add Page().
I want to create a PDF with multiple pages, one image for each page. when i tried more than 4 pages, the programs crash
PHP Code:
PDFOut.SetUnits("pt")
PDFOut.SetDisplayMode("PDF_ZOOM_REAL", "PDF_LAYOUT_SINGLE")
PDFOut.DisplayPreferences(false, false, false, false, true, false, false)
for i=1,CountTable do
PDFOut.PrintImage( Img[i], 20, 0, 565, 0)
if i< CountTable then PDFOut.AddPage(); end
end
PDFOut.WritePDF( _SourceFolder.."\\Upload\\test.pdf")
File.Open( _SourceFolder.."\\Upload\\test.pdf", "", SW_MAXIMIZE)
can someone help me
thanks in advance for your answer