Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
T O P I C R E V I E W
King-Soft
Posted - Jul 29 2020 : 08:57:57 I use your Demo "TwainDemo" and added some buttons to save the TImageEnView to a PDF: Saving to a Blob-Field: stream := TMemoryStream.Create; stream.Position := 0; ImageEnView1.IO.Params.PDF_Author := 'King-Soft'; ImageEnView1.IO.Params.PDF_Title := 'PDF'; ImageEnView1.IO.Params.PDF_Compression := ioPDF_JPEG; ImageEnView1.IO.SaveToStreamPDF(Stream);
Saving to a file: ImageEnView1.IO.SaveToFilePDF('C:\Temp\'+sFileName);
That works fine with the size A4.
If i scan a A3-Scan, the size of the PDF-Page ist everytimes A4!!! How can i save in A3-Size ?