(sorry for English: google translation)
I use PurePdf library to create a document, but I have a problem when I want
make information, test here as part of the bottom page.
If I go beyond 276 pdf_SetXY (20.276), the information is found
on the next page.
I can not raise the frame and the document must be on a single sheet.
I know this is possible because I have a document on which there is the presentation.
Are there a way around this low margin or add an option in pdf_SetMargin?
Thank you in advance for your answers
Code: Select all
pdf_Create("P","mm",#PDF_PAGE_FORMAT_A4)
pdf_SetFont("Arial","",8)
pdf_AddPage()
pdf_SetMargins(0,0,0)
pdf_Rect(1,1,208,295)
pdf_Rect(10,280,190,10)
pdf_SetXY(20,276)
pdf_Write(0,"test")
pdf_Save("Test.pdf")
RunProgram("Test.pdf")


