Re: TRolePDF - Creates .PDF from TCanvas

From: Dennis Landi (none[at]none.com)
Date: 10/29/03


Date: Wed, 29 Oct 2003 12:00:50 -0500

Does registration get you the full source for your PDF.DLL?

(If it ain't source, it ain't software....)

"mhb" <mhb_shrf@hotmail.com> wrote in message
news:3f9fd01a@newsgroups.borland.com...
> 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
>
>
>