ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
Forum membership is Free!  Click Join to sign-up
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 GenerateSearchablePDF to Ms Word
 New Topic  Reply to Topic
Author Previous Topic Topic Next Topic  

Amélie

France
10 Posts

Posted - Sep 17 2024 :  11:47:35  Show Profile  Reply
Hi,

Is it possible to create a Word file when using "GenerateSearchablePDF" or convert the PDF file generated by "GenerateSearchablePDF" from PDF to Word?

Thank you!

Best regards.

Hello

xequte

38531 Posts

Posted - Sep 17 2024 :  19:12:33  Show Profile  Reply
Hi

Not with ImageEn, but if you have word installed you can convert a file to Word using Automation:

function ConvertWordFile(const InFilename, OutFilename: string): Boolean;
var
  wordApp: OleVariant;
begin
  Result := False;
  try
    wordApp := CreateOleObject('Word.Application');
    if VarIsEmpty( wordApp ) then
      exit;

    wordApp.Visible := False;
    wordApp.Documents.Open( InFileName,
                            false,   // ConfirmConversions
                            true );  // ReadOnly

    wordApp.ActiveDocument.SaveAs2( OutFilename, wdFormatDocument );

    wordApp.Quit(wdDoNotSaveChanges, EmptyParam, EmptyParam);
    wordApp := Unassigned;

    Result := True;
  except
    // Word error
  end;
end;


Nigel
Xequte Software
www.imageen.com
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Reply to Topic
Jump To: