Re: TRolePDF - Creates .PDF from TCanvas

From: Vadim M. Shakun (nospamllion_at_llion.net)
Date: 10/29/03


Date: Wed, 29 Oct 2003 22:25:53 +0200

Dear readers,
This company was receive our library without any fee and broken license
of the use llPDFLib.

This company don't have any rights to create PDF.DLL.

--
----------------------
Best regards,
    Vadim M. Shakun
llionsoft - software developer team
http://www.llion.net
mailto:llion@llion.net
Mobile: +375-29-629-6245
"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
>
>
>