我正在尝试使用Aspose.PDF将特定页面上的文本替换为大写.Net。如果有人能提供任何可能很棒的帮助。谢谢。
答案 0 :(得分:3)
我的名字是Tilal Ahmad,我是Aspose的开发人员传播者。
您可以使用documentation link搜索和替换PDF文档特定页面上的文本。您应该按照文档底部的建议调用特定页面索引的Accept方法。此外,要用大写替换文本,可以使用String对象的ToUpper()方法,如下所示。
....
textFragment.Text = textFragment.Text.ToUpper();
....
编辑:用于更改特定PDF页面上的文本案例的示例代码
//open document
Document pdfDocument = new Document(myDir + "testAspose.pdf");
//create TextAbsorber object to find all instances of the input search phrase
TextFragmentAbsorber textFragmentAbsorber = new TextFragmentAbsorber("");
//accept the absorber for all the pages
pdfDocument.Pages[2].Accept(textFragmentAbsorber);
//get the extracted text fragments
TextFragmentCollection textFragmentCollection = textFragmentAbsorber.TextFragments;
//loop through the fragments
foreach (TextFragment textFragment in textFragmentCollection)
{
//update text and other properties
textFragment.Text = textFragment.Text.ToUpper();
}
pdfDocument.Save(myDir+"replacetext_output.pdf");