Search found 5 matches

by RickB
Wed Aug 31, 2011 4:25 pm
Forum: ScaleRichView
Topic: Export ScaleRichView to PDF using Gnostice and Metafile
Replies: 15
Views: 108036

I have been waiting for weeks for a response from Gnostice about this. All I have been getting are auto replies.

If there are other Gnostice users with a similar problem, please contact them, and maybe if we make enough noise they will respond.

Meanwhile, perhaps it is time to investigate Sergey ...
by RickB
Mon Jun 06, 2011 4:16 pm
Forum: ScaleRichView
Topic: Export ScaleRichView to PDF using Gnostice and Metafile
Replies: 15
Views: 108036

Sample wmf and source rvf have been sent to the gmail account.
by RickB
Sun Jun 05, 2011 5:43 pm
Forum: ScaleRichView
Topic: Export ScaleRichView to PDF using Gnostice and Metafile
Replies: 15
Views: 108036

The metafile does not look correct. You can reproduce this by saving the metafile in the Basic Demos\PaintMetafile demo - notice that the text is not included in the metafile output, so I think at least part of the problem is in drawing the metafile from scalerichview.

What is wPDF?
by RickB
Fri Jun 03, 2011 8:39 pm
Forum: ScaleRichView
Topic: Export ScaleRichView to PDF using Gnostice and Metafile
Replies: 15
Views: 108036

Yes it does. Here is the code I am using:


procedure TdlgNotePreview.PrintToPDF(aContents: TMemoryStream);
var
i: Integer;
Metafile: TMetafile;
RVUnit: TRVUnits;
begin
srve.Update; //srve is ScaleRichViewComponent
gtPDFEngine1.UserStream := aContents;
gtPDFEngine1.BeginDoc;
if (gtPDFEngine1 ...
by RickB
Fri Jun 03, 2011 6:29 pm
Forum: ScaleRichView
Topic: Export ScaleRichView to PDF using Gnostice and Metafile
Replies: 15
Views: 108036

Export ScaleRichView to PDF using Gnostice and Metafile

I'm trying to export my ScaleRichView contents to PDF. The tables and lines show correctly, the text does not.

I find that if I use the Basic Demos\PaintMetafile demo, and save the metafile in that demo to a file, the text is also missing, so I assume the metafile is not getting created correctly ...