- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在某个 x,y 位置贴一张便签。为此,我使用 .net 中的 pdfclown 注释类。以下是可用的内容。
using files = org.pdfclown.files;
public override bool Run()
{
files::File file = new files::File();
Document document = file.Document;
Populate(document);
Serialize(file, false, "Annotations", "inserting annotations");
return true;
}
private void Populate(Document document)
{
Page page = new Page(document);
document.Pages.Add(page);
PrimitiveComposer composer = new PrimitiveComposer(page);
StandardType1Font font = new StandardType1Font(document, StandardType1Font.FamilyEnum.Courier, true, false);
composer.SetFont(font, 12);
annotations::Note note = new annotations::Note(page, new Point(78, 658), "this is my annotation...");
note.IconType = annotations::Note.IconTypeEnum.Help;
note.ModificationDate = new DateTime();
note.IsOpen = true;
composer.Flush();
}
Link for annotation这是在空白 pdf 中的 78、658 坐标处放置便签。
问题是我想要在包含一些数据的特定 pdf 中粘贴便签。我该如何修改它...感谢您的帮助..
最佳答案
我是 PDF Clown 的作者-- 这是将注释(如便签)插入现有页面的正确方法:
using org.pdfclown.documents;
using annotations = org.pdfclown.documents.interaction.annotations;
using files = org.pdfclown.files;
using System.Drawing;
. . .
// Open the PDF file!
using(files::File file = new files::File(@"C:\mypath\myfile.pdf"))
{
// Get the document (high-level representation of the PDF file)!
Document document = file.Document;
// Get, e.g., the first page of the document!
Page page = document.Pages[0];
// Insert your sticky note into the page!
annotations::Note note = new annotations::Note(page, new Point(78, 658), "this is my annotation...");
note.IconType = annotations::Note.IconTypeEnum.Help;
note.ModificationDate = new DateTime();
note.IsOpen = true;
// Save the PDF file!
file.Save(files::SerializationModeEnum.Incremental);
}
请考虑关于如何保存文件的方式有很多选项(到输出(内存中)流、到不同的路径、作为压缩文件、作为附加文件)文件...)。
如果您查看该库发行版附带的 50 多个示例以及 API 文档,您可以发现它的表现力和强大性。其架构严格遵循官方 Adobe PDF Reference 1.7。
享受吧!
关于asp.net - pdfclown 中的注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13970332/
使用 PdfClown 打印 pdf 时,打印超出页面,而 PdfClown 没有创建新页面,如何解决此问题? 代码如下,它将文本打印到 pdf 页面上,当打印开始超出页面底部时,应自动添加另一个 p
我正在使用 PDFClown 来分析 PDF 文档。在许多文档中,PDFClown 中的某些字符似乎具有不同的高度,即使它们显然具有相同的高度。有解决办法吗? 这是代码: while(_lev
我是第一次尝试使用 PDFClown。正如自述文件中所写,我尝试通过以下步骤导入 PDFClown 项目在我的 Java 工作区 Eclipse IDE 中1) 文件 => 导入... => 将现有项
我在使用 PdfClown 0.1.2 进行文本编写时遇到了一些奇怪的情况。 PrimitiveComposer composer = new PrimitiveComposer(page);
我正在尝试在某个 x,y 位置贴一张便签。为此,我使用 .net 中的 pdfclown 注释类。以下是可用的内容。 using files = org.pdfclown.files;
我最近将代码从 PDFClown v0.1.2 切换到 v0.1.2.1。我认为我现在已经遇到了一些差异(更改了 TextMarkup() 的构造函数并从 CallOutNote 切换到 Static
几周前我开始使用 PDFClown。我的目的是多字突出显示,主要是在报纸上。从 org.pdfclown.samples.cli.TextHighlightSample 示例开始,我成功提取了多单词位
引用Build text callout with PDF Clown - 是否可以更改标注注释中文本的字体颜色? 我还没有找到合适的方法,有人可以给我提示吗? 最佳答案 没有明确的 PDF Clow
我正在使用 PDFClown-0.2.0 进行拼合 this pdf 文件。这是我的代码: import org.pdfclown.documents.Document; import org.pdf
我正在与 PDFClown 合作来分析和使用 PDFDocuments。我的目标是突出显示表格中的所有数字。对于属于在一起的所有数字(例如:表格一列中的所有数字),我将创建一个带有四边形列表的 Tex
我真的很喜欢 c# 中的 pdfclown,但我想从 byte[] 数组或文件流中打开 pdf。我还没有找到 pdfclown 的任何例子。谁能帮忙? 一个例子是这样的: 使用 (org.pdfclo
我正在尝试运行 Stefano Chizzolini(很棒的人:PDFClown 的创建者)编写的 Java 代码,以使用 PDF Clown 库解析 PDF。我收到此错误,但我不知道该如何解决。 E
我是一名优秀的程序员,十分优秀!