ANN: TRolePDF - Creates .PDF from TCanvas

From: mhb (mhb_shrf_at_hotmail.com)
Date: 10/29/03


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



Relevant Pages

  • Re: My Suggestion : A New C# compiler for native code
    ... You don't need to care - but the VCL component authors might be the ... ones who need to worry. ... However as most supply source they don't seem ... MUST provide source code because the market work in that way. ...
    (borland.public.delphi.non-technical)
  • Re: My Suggestion : A New C# compiler for native code
    ... be a general problem, they wouldn't be shipped in source code form. ... You don't need to care - but the VCL component authors might be the ones who ... Many programmers seem to think that their source code is everything. ...
    (borland.public.delphi.non-technical)
  • Re: TRolePDF - Creates .PDF from TCanvas
    ... Regards ... >> The VCL component is freeware with source code. ... >> USD). ...
    (borland.public.delphi.thirdpartytools.general)