gpt4 book ai didi

pdf - ColdFusion CFDOCUMENT 与其他 PDF 的链接

转载 作者:行者123 更新时间:2023-12-04 23:22:04 26 4
gpt4 key购买 nike

我目前正在使用 cfdocument 标签创建 PDF。该 PDF 只不过是一堆指向其他 PDF 的链接。

所以我创建了这个 PDF 索引,链接都是 HREF

<a href="Another_PDF.pdf">Another PDF</a>

如果我将 localURL 属性设置为“否”,我的 URL 将包含整个网络路径:

<a href="http://www.mywebsite.com/media/PDF/Another_PDF.pdf">Another PDF</a>

如果我将 localURL 属性设置为“yes”,那么我会得到:

<a href="File:/D:/website/media/PDF/Another_PDF.pdf">Another PDF</a>

所以这个索引 PDF 将进入 CD,所有链接的 PDF 将紧挨着它,所以我需要一个相对链接......更像是:

<a href="Another_PDF.pdf">Another PDF</a>

cfdocument 似乎没有这样做。我可以修改文档的文件名并将其设为“File:///Another_PDF.pdf”,但这不起作用,因为我不知道 CD 驱动器的驱动器盘符......或者如果文件要最终进入 CD 上的目录。

有没有一种方法(可能使用 iText 或其他东西)在创建 PDF 后将其打开并将 URL 链接转换为实际的 PDF GoTo 标签?

我知道这有点牵强,但我对此束手无策。

所以我已经设法进入对象,但我仍在努力。

转换自:

5 0 obj<</C[0 0 1]/Border[0 0 0]/A<</URI(File:///75110_002.PDF)/S/URI>>/Subtype/Link/Rect[145 502 184 513]>>endobj

为此:

19 0 obj<</SGoToR/D[0/XYZ null null 0]/F(75110_002.PDF)>>endobj 
20 0 obj<</Subtype/Link/Rect[145 502 184 513]/Border[0 0 0]/A 19 0 R>>endobj

哇,这真的是在踢我的屁股! :)

所以我设法打开文档,循环链接注释,捕获 Rect 坐标和链接到文档名称(保存到结构数组中),然后成功删除了作为 URI 的注释链接。

所以现在我想我现在可以遍历该结构数组并使用 createLink 方法或 setAction 方法将注释放回文档中。但是我看到的这些方法的所有示例都附加到一个 block (文本)。但是我的文档已经有了文本,所以我不需要重新制作文本链接,我只需要将链接放回原处即可。

所以我想我可以重新打开文档并查找作为链接的实际文本,然后将 setAction 附加到已经存在的文本 block ......我找不到文本!!

我很烂! :)

最佳答案

This thread有一个通过修改 pdf 注释来更新链接操作的示例。它是用 iTextSharp 5.x 编写的,但 java 代码没有太大区别。

该线程提供了注释如何工作的可靠解释。但总而言之,您需要阅读源 pdf 并循环浏览各个页面以获取注释。提取链接并使用类似 getFileFromPath() 的方法仅用文件名替换它们。

我很好奇,所以我对上面的 iTextSharp 代码进行了快速而丑陋的转换。免责声明,它没有经过高度测试:

/**
Usage:

util = createObject("component", "path.to.ThisComponent");
util.fixLinks( "c:/path/to/sourceFile.pdf", "c:/path/to/newFile.pdf");

*/
component {

/**
Convert all absolute links, in the given pdf, to relative links (file name only)
@source - absolute path to the source pdf file
@destination - absolute path to save copy
*/
public function fixLinks( string source, string destination) {
// initialize objects
Local.reader = createObject("java", "com.lowagie.text.pdf.PdfReader").init( arguments.source );
Local.pdfName = createObject("java", "com.lowagie.text.pdf.PdfName");

// check each page for hyperlinks
for ( Local.i = 1; Local.i <= Local.reader.getNumberOfPages(); Local.i++) {

//Get all of the annotations for the current page
Local.page = Local.reader.getPageN( Local.i );
Local.annotations = Local.page.getAsArray( Local.PdfName.ANNOTS ).getArrayList();

// search annotations for links
for (Local.x = 1; !isNull( Local.annotations) && Local.x < arrayLen(Local.annotations); Local.x++) {

// get current properties
Local.current = Local.annotations[ Local.x ];
Local.dictionary = Local.reader.getPdfObject( Local.current );
Local.subType = Local.dictionary.get( Local.PdfName.SUBTYPE );
Local.action = Local.dictionary.get( Local.PdfName.A );
Local.hasLink = true;

//Skip this item if it does not have a link AND action
if (Local.subType != Local.PdfName.LINK || isNull(Local.action)) {
Local.hasLink = false;
}
//Skip this item if it does not have a URI
if ( Local.hasLink && Local.action.get( Local.PdfName.S ) != Local.PdfName.URI ) {
Local.hasLink = false;
}

//If it is a valid URI, update link
if (Local.hasLink) {
// extract file name from URL
Local.oldLink = Local.action.get( Local.pdfName.URI );
Local.newLink = getFileFromPath( Local.oldLink );

// replace link
// WriteDump("Changed link from ["& Local.oldLink &"] ==> ["& Local.newLink &"]");
Local.pdfString = createObject("java", "com.lowagie.text.pdf.PdfString");
Local.action.put( Local.pdfName.URI, Local.pdfString.init( Local.newLink ) );
}
}

}

// save all pages to new file
copyPDF( Local.reader , arguments.destination );
}

/**
Copy all pages in pdfReader to the given destination file
@pdfReader - pdf to copy
@destination - absolute path to save copy
*/
public function copyPDF( any pdfReader, string destination) {
try {

Local.doc = createObject("java", "com.lowagie.text.Document").init();
Local.out = createObject("java", "java.io.FileOutputStream").init( arguments.destination );
Local.writer = createObject("java", "com.lowagie.text.pdf.PdfCopy").init(Local.doc, Local.out);

// open document and save individual pages
Local.doc.open();
for (Local.i = 1; i <= arguments.pdfReader.getNumberOfPages(); Local.i++) {
Local.writer.addPage( Local.writer.getImportedPage( arguments.pdfReader, Local.i) );
}
Local.doc.close();
}
finally
{
// cleanup
if (structKeyExists(Local, "doc")) { Local.doc.close(); }
if (structKeyExists(Local, "writer")) { Local.writer.close(); }
if (structKeyExists(Local, "out")) { Local.out.close(); }
}
}

}

关于pdf - ColdFusion CFDOCUMENT 与其他 PDF 的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20956717/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com