You are not logged in.
Pages: 1
Hello everybody,
Is it possible to extract the text from a .pdf file? If so, there are any examples?
Many thanks
Pio Pio
I just download again the version here http://synopse.info/fossil/wiki?name=PDF+Engine and here https://github.com/synopse/SynPDF. The sources are slightly different but they have the same issue on XE2.
I solved the issue by changing the following source
{$ifdef VER220} { circumvent Delphi XE compilation with packages }
function Count: integer;
{$else}
property Count: integer read fNameValue.Count;
{$endif}
into
{$ifdef VER220} { circumvent Delphi XE compilation with packages }
function Count: integer;
{$else}
property Count: integer read GetCount;
{$endif}
and by adding
function TSynCache.GetCount:Integer;
begin
Result := fNameValue.Count;
end;
This way I can compile
Hello
I downloaded SynPDF a few days ago and the same problem is still there.
I have followed the instructions, modified code and now it works perfectly.
Alberto
and now there is a complete example too :-)
http://www.trichview.com/forums/viewtopic.php?t=7304
Hello,
Is it possible to create PDF files from a TRichView component ? If so, is there an example ?
Many thanks
Alberto
Hello,
If I have a file in Rich Text Format (say, "Myfile.rtf"), can I convert it into .pdf via PDFEngine ? I have looked into the forum but I haven't found any example for that.
Sorry for making a trivial question, maybe, but I am new with PDFEngine.
Many thanks
Pio Pio
Pages: 1