gpt4 book ai didi

html - Coldfusion PDF 中的字符集

转载 作者:太空宇宙 更新时间:2023-11-04 13:15:23 31 4
gpt4 key购买 nike

谁能告诉我如何修复这个字符集以阅读我在这个 pdf 中的内容。显然出了问题,因为当文件名为 .html 并且 coldfusion 被删除并且元字符集为 utf-8 时,此信息有效。有人能告诉我如何解决这个问题吗?我对冷聚变还很陌生,我认为问题在于我缺乏知识。任何帮助将不胜感激!

我的结果:enter image description here

http://jsfiddle.net/yntz3n8w/1/

我想要完成的事情:http://www.flhsmv.gov/dmv/forms/BTR/82040.pdf

    <cfsetting enablecfoutputonly="true">
<cfcontent type="application/pdf">
<cfheader name="Content-Disposition" value="attachment;filename=test.pdf">
<cfdocument format="PDF" localurl="yes"
marginTop=".25" marginLeft=".25" marginRight=".25" marginBottom=".25"
pageType="custom" pageWidth="8.5" pageHeight="10.2">
<cfoutput><?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>PDF Export Example</title>
</head>
<body>
</body>
</html>

</cfoutput>
</cfdocument>

最佳答案

试试这个基本顺序。这就是我将它放在我的一个文件中的方式,它工作正常:

<cfdocument format="PDF" filename="name.pdf" overwrite="Yes">
<html>
...
</html>
</cfdocument>

<cfheader name="Content-Disposition" value="attachment;filename=name.pdf">
<cfcontent type="application/octet-stream" file="#expandPath('.')#\name.pdf" deletefile="Yes">

关于html - Coldfusion PDF 中的字符集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27707243/

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