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!
Display a page from a loaded PDF |
Post Reply |
Author | |
ZarkoGajic
Beginner Joined: 18 Mar 09 Location: Croatia Status: Offline Points: 19 |
Post Options
Thanks(0)
Posted: 25 Mar 09 at 11:41AM |
Hi, What would be the easiest way (using Delphi) to display (on some canvas/component) a single page from a loaded document. Basically I'm looking for some kind of "preview" functionality / per document page. -zarko |
|
-zarko gajic
|
|
Ingo
Moderator Group Joined: 29 Oct 05 Status: Offline Points: 3524 |
Post Options
Thanks(0)
|
Hi Zarko!
unit Unit1; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, ExtCtrls, jpeg, QuickPDF0712; // . . . var Form1: TForm1; fstring, s : String; page, pagecount : Integer; QP : TQuickPDF0712; Test_Stream : Tmemorystream; jpg : TJpegImage; implementation {$R *.DFM} // . . . procedure Pages(fap: String); begin jpg := TJpegImage.create; Test_Stream := Tmemorystream.Create; QP := TQuickPDF0712.Create; try QP.UnlockKey('YourKeyShouldBeHere'); QP.LoadFromFile(fstring); If ( QP.Encrypted > 0 ) Then QP.Unencrypt; QP.RenderPageToStream(72,1,1,test_stream); finally QP.Free; end; test_stream.Seek(0,0); jpg.LoadFromStream (test_stream); Form1.image1.Picture.Assign(jpg); test_stream.Clear; end; Cheers, Ingo |
|
ZarkoGajic
Beginner Joined: 18 Mar 09 Location: Croatia Status: Offline Points: 19 |
Post Options
Thanks(0)
|
Ingo,
This looks fantastic!!
Thanks much!
|
|
-zarko gajic
|
|
Ingo
Moderator Group Joined: 29 Oct 05 Status: Offline Points: 3524 |
Post Options
Thanks(0)
|
Hi!
I've posted my sample with few more explaining words here: http://www.quickpdf.org/forum/forum_posts.asp?TID=1044 I hope it's understandable for all. Cheers, Ingo |
|
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