Do you own a Debenu Quick PDF Library version 7, 8, 9, 10, 11, 12, 13 or iSEDQuickPDF license? Upgrade to Debenu Quick PDF Library 14 today!
![]() |
Insert and draw Image in New PDF |
Post Reply ![]() |
Author | |
Tim Hayes ![]() Beginner ![]() Joined: 16 Feb 07 Status: Offline Points: 7 |
![]() ![]() ![]() ![]() ![]() Posted: 10 Mar 10 at 4:01PM |
Sorry this is a basic question...
I want to be able to draw an image (jpg) in a new PDF document.
OPDF := TiSEDQuickPDF.create;
OPDF.UnlockKey('...'); OPDF.Unencrypt;
OPDF.UseUnsafeLayers(1); OPDF.SelectDocument(OPDF.NewDocument); OPDF.AddJPEGImageFromFile('aaa.jpg'); OPDF.DrawImage(0,0,OPDF.ImageWidth,OPDF.ImageHeight); OPDF.SaveToFile('NewPDF.pdf'); The resultant PDF file contains just a blank page.
Could anyone please help??
Thanks.
|
|
![]() |
|
Ingo ![]() Moderator Group ![]() ![]() Joined: 29 Oct 05 Status: Offline Points: 3530 |
![]() ![]() ![]() ![]() ![]() |
Hi Tim!
Try this one: // . . . QP := TQuickPDF.Create; try QP.UnlockKey('...'); image := QP.AddImageFromFile(fstring, 0); QP.SetOrigin(1); // :-)) QP.SelectImage(image); QP.SetPageDimensions(QP.ImageWidth,QP.ImageHeight); QP.DrawImage(0,0,QP.ImageWidth,QP.ImageHeight); QP.SaveToFile('c:\temp\test.pdf'); finally QP.Free; end; // . . . Cheers, Ingo Edited by Ingo - 10 Mar 10 at 5:08PM |
|
![]() |
|
DELBEKE ![]() Debenu Quick PDF Library Expert ![]() ![]() Joined: 31 Oct 05 Location: France Status: Offline Points: 151 |
![]() ![]() ![]() ![]() ![]() |
Before drawing, set origin at the top left corner
Qp.SetOrigin(1);
|
|
![]() |
|
Tim Hayes ![]() Beginner ![]() Joined: 16 Feb 07 Status: Offline Points: 7 |
![]() ![]() ![]() ![]() ![]() |
Both:
Needed Ingo's solution + Delbeke's SetOrigin(1).
Many thanks indeed for saving lots of hours.
|
|
![]() |
Post Reply ![]() |
|
Tweet
|
Forum Jump | Forum Permissions ![]() You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |
Copyright © 2017 Debenu. Debenu Quick PDF Library is a PDF SDK. All rights reserved. About — Contact — Blog — Support — Online Store