I am building an Aspose.Word.Document and saving as a .doc. I then use Aspose to save the .doc file as a .tif file. The problem is that the tif file is not being saved properly in that part of the table from the .doc file is not being saved. I have attached the .doc file and the .tif file for your review. I have tried saving the tif using group 3 and 4 compression as well as LZW but the results are the same. I am using Aspose 6.6
Here is the code:
mobjMainAsposeDoc = New Aspose.Words.Document
Lots of code to Build the document
Dim lobjImageOption As New Aspose.Words.Rendering.ImageOptions
lobjImageOption.TiffCompression = Aspose.Words.Rendering.TiffCompression.Ccitt4
lobjImageOption.Resolution = 200
'Save the Aspose document as a .doc
mobjMainAsposeDoc.Save(System.IO.Path.GetTempPath & "VerdictPrintTemp\" & "ExtractCaseMinuteView.Doc", SaveFormat.Doc)
'Save the doc as a tif
mobjMainAsposeDoc.SaveToImage(0, mobjMainAsposeDoc.PageCount, System.IO.Path.GetTempPath & "VerdictPrintTemp\" & "ExtractCaseMinuteView.TIF", lobjImageOption)