Hi,
I’m using the latest version (23.12.0) of Aspose Word and have an issue with the graph inside it, when it’s aligned to the left instead of centered as the input file.
The code I used to test:
string inputFile = "D:\\sample.doc";
using(var inStream = new FileStream(inputFile, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
{
Document doc = new Document(inStream);
doc.Save(@"D:\\out.doc", SaveFormat.Doc);
}
The graph is in the page 8-9. Here is my sample files and the different from 2 versions
D.zip (1.8 MB)
Please help me check this case? Thank you alot.