Hi!
I’m using Aspose.Words to convert Word documents to images. I use this simple code:
var doc = new Aspose.Words.Document(KitTestPath + “Input.docx”);
var options = new Aspose.Words.Saving.ImageSaveOptions(Aspose.Words.SaveFormat.Jpeg);
options.JpegQuality = 100;
options.Resolution = 200;
options.PageCount = 1;
for (int counter = 0; counter < doc.PageCount; counter++)
{
options.PageIndex = counter;
doc.Save(string.Format(“Output_{0}.jpg”, counter), options);
}
When applying this on the attached file the result is a little bit surprising. Part of the image is blue which is not visible in the original Word document. Can you tell what is the problem in this document?
Regards,
Dejan
Thanks for your help.
Regards,
Dejan