コミュニティ

Remove blank page

Hi,

 

how to remove blank page. i found script in this forum but error for IPicture object.

please advice. thank you.

 

 

この記事は役に立ちましたか?

0人中0人がこの記事が役に立ったと言っています

コメント

4件のコメント

  • Avatar
    Permanently deleted user

    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--;
        }
    }
    0
  • Avatar
    Permanently deleted user

    Hi Nadezhda,

     

    I use FR Engine 10. no IsEmpty method for FRPage object.

    Please advice. Thank you

     

    0
  • Avatar
    Permanently deleted user

    Hi Sakinah,

    IsEmpty method is a new feature of FREngine 11. We should recommend an update. I apologize for the inconvenience.

    0
  • Avatar
    Permanently deleted user

    ok noted. 

    Thank you for your reply.

    0

サインインしてコメントを残してください。