I am trying to convert a document from a Laserfiche TIFF image to a PDF document. I found an example here Export tiff to pdff - Laserfiche Answers.
Changing this code to use RA I came up with the code below, but when I run this, I get the following error on the docuExport.ExportPdf line...
"System.IO.FileNotFoundException: Could not load file or assembly 'itextsharp, Version=4.1.7.0, Culture=neutral, PublicKeyToken=3f98b3eaee6c16a6'. The system cannot find the file specified.
File name: 'itextsharp, Version=4.1.7.0, Culture=neutral, PublicKeyToken=3f98b3eaee6c16a6'"
I am using RA SDK 10.3.0.242
var repository = new RepositoryRegistration(_laserficheConnection.ServerName, _laserficheConnection.RepositoryName); Session session = new Session(); session.LogIn(repository); DocumentInfo info = new DocumentInfo(id, session); var ms = new MemoryStream(); var docuExport = new DocumentExporter(); docuExport.ExportPdf(info, info.AllPages, PdfExportOptions.None, ms);
Any help determining what I am doing wrong would be greatly appreciated.