English 中文(简体)
使用普通C/C+++(已关闭)在 PDF 中添加注解
原标题:Add annotation to PDF using plain C/C++ [closed]
问题回答

这里是""http://partners.adobe.com/public/ developmenter/en/pdf/PDFReference.pdf" rel="无随从的无参考">PDF参考文件第三版

PDF files are composed by different binary objects, that can be compressed, encoded or encrypted using different algorithms, compression schemes (lossy and lossless) and encoding filters. Each object is referenced in a reference table with information on its position in the file. You will need to know how to deal with this table, you will need to implement all possible compression schemes, encodings filters and encryption algorithms, and then you will have to deal with all possible structures of PDF objects.

在 PDF 规格中,这些对象被称为词典,它们由条目组成。每个条目都有一种类型,可以是简单类型,也可以是另一种词典(或引用它),或者是另外一种元素类型的阵列。因此我们可以说,PDF基本上是字典对象的树。

一旦您的代码能够处理规格中可能的所有字典和树结构,您就可以进入第8章-该规格的交互式特征 , Part 8.4 - 说明 ,并在PDF文件中添加注释词典。

您应该注意到, 我甚至没有提到 PDF 文件的热题, 如字体、 颜色空格、 换行空间、 以及在页面中绘制指令 。 我正在计算您能够将所有对象装入文件, 创建一个批注对象, 以某种方式将其插入到您的对象树上, 并再次保存所有对象 。 这或多或少是 < a href=> http:// itextpdf. com/" rel=" nofollow noreferr" > iText < / a > 如何工作, 所以如果您真的想要执行这个, 您可以查看 iText 的源代码, 这样您就可以拥有一个小窗口, 来显示这类工程所需要的工作量 。

您也可以查看 < a href=> https://stackoverflow.com/a/ 3610696/501196> 的SO 中的答案 。





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签