Hi,
how to remove blank page. i found script in this forum but error for IPicture object.
please advice. thank you.
Hi,
how to remove blank page. i found script in this forum but error for IPicture object.
please advice. thank you.
0 out of 0 found this helpful
Comments
4 comments
Hi Sakinah,
In FineReader Engine 12, you may use IsEmpty Method of the FRPage Object to detect, whether the page is empty. Code sample
for (int i = 0; i < document.Pages.Count; i++) { FREngine.FRPage page = document.Pages[i]; if (page.IsEmpty()) { document.Pages.DeleteAt(i); i--; } }Hi Nadezhda,
I use FR Engine 10. no IsEmpty method for FRPage object.
Please advice. Thank you
Hi Sakinah,
IsEmpty method is a new feature of FREngine 11. We should recommend an update. I apologize for the inconvenience.
ok noted.
Thank you for your reply.
Please sign in to leave a comment.