Need to delete text from pdf file attached

Hi Team,

Please give me code to delete text Machine Translated by Google. in the file attached.tesremoveaspose.pdf (41.1 KB)
Please give me code asap.

Thanks and Regards,
Harish G.

@HarishGali,

The code sample:

private void Logic()
{
    var doc = new Document($"{PartialPath}_input.pdf");

    var page = doc.Pages[1];
    var absorber = new TextFragmentAbsorber();
    absorber.TextSearchOptions.LimitToPageBounds = true;
    absorber.TextSearchOptions.Rectangle = new Aspose.Pdf.Rectangle(168, 168, 350, 360);
    page.Accept(absorber);

    foreach (var fragment in absorber.TextFragments)
    {
        fragment.Text = string.Empty;
    }

    doc.Save($"{PartialPath}_output.pdf");
}