ANN: TRolePDF - Creates .PDF from TCanvas
From: mhb (mhb_shrf_at_hotmail.com)
Date: 10/29/03
- Next message: Graham Murt: "ANN: TGmXML v0.1 Released - Free XML Parsing component"
- Previous message: Brian Moelk: "Re: speed (kbmMemtable vs DBISAM vs NexusDB)"
- Next in thread: Dennis Landi: "Re: TRolePDF - Creates .PDF from TCanvas"
- Reply: Dennis Landi: "Re: TRolePDF - Creates .PDF from TCanvas"
- Reply: Vadim M. Shakun: "Re: TRolePDF - Creates .PDF from TCanvas"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Wed, 29 Oct 2003 16:35:19 +0200
Hi,
TRolePDF is a VCL component that uses our PDF.DLL to create .pdf documents.
The VCL component is freeware with source code.
The PDF.DLL is a trial version:
- Supports TrueType fonts.
- Supports CodePages 1250..1257 (without RightToLeft).
- Supports Outlines.
- Limited to 10 pages per .pdf document without watermark, stamp, or any
other remarks to the author, more than 10 pages require registration ($59
USD).
Example:
with TRolePDF.Create(nil) do
try
FileName := 'demo.pdf';
BeginDoc;
Canvas...// use TCanvas properties and methods
NewPage;
Canvas...
Parent := AddOutline('Header', -1, 1, 0);
AddOutline('Page 1', Parent, 1, 0);
AddOutline('Page 2', Parent, 2, 0);
EndDoc;
finally
Free;
end;
http://www.roledata.com/rolepdf.htm
Regards
http://www.roledata.com
- Next message: Graham Murt: "ANN: TGmXML v0.1 Released - Free XML Parsing component"
- Previous message: Brian Moelk: "Re: speed (kbmMemtable vs DBISAM vs NexusDB)"
- Next in thread: Dennis Landi: "Re: TRolePDF - Creates .PDF from TCanvas"
- Reply: Dennis Landi: "Re: TRolePDF - Creates .PDF from TCanvas"
- Reply: Vadim M. Shakun: "Re: TRolePDF - Creates .PDF from TCanvas"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|