使用Excel数据填充PDF表单

时间:2017-02-27 00:57:46

标签: python excel forms pdf

我有Excel电子表格,例如:

byte[] bytes = new byte[8]; // Well known size: 64 bits
GCHandle h = GCHandle.Alloc(this, GCHandleType.Pinned);
Marshal.Copy(hh.AddrOfPinnedObject(), bytes, 0, 8);
h.Free();

我想用这些数据填写以下表格: https://www.uspto.gov/sites/default/files/patents/process/file/efs/guidance/updated_IDS.pdf

请注意,PDF表单上有一个添加按钮,可以在PDF中为电子表格第二行的数据创建第二行。

我熟悉Python,但我见过的类似解决方案要么从头创建新表单(How can I auto-populate a PDF form in Django/Python?),要么不操纵PDF表单中的添加按钮(Batch fill PDF forms from python or bash)。

0 个答案:

没有答案