Description
When I delete a page of a PDF, an exception was thrown: Number of placed objects is not correct.
Code
void Main()
{
var doc = new Aspose.Pdf.Document(@"C:\Users\XCL\Desktop\pdf\source.pdf");
doc.Pages.Delete(2);
doc.Optimize(); // If remove this line, it's OK. Because of the page of deleted maybe is too large, so I must to call this line.
doc.Save(@"C:\Users\XCL\Desktop\pdf\target.pdf");
}
Test File
source.pdf (81.7 KB)