我使用pdfcrowd将php文件转换为pdf,但它转换为空白pdf。可能是什么问题?做pdfcrowd转换php文件?
代码在这里
<?php
require 'pdfcrowd.php';
try
{
$client = new Pdfcrowd("nabinashahi", "2ef55554fe4c2d23b52b8e080cac867g");// create an API client instance
// $pdf = $client->convertURI('http://www.google.com/');
$pdf = $client->convertFile("C:/xampp/htdocs/pdf/page.php");// convert a web page and store the generated PDF into a $pdf variable
// set HTTP response headers
header("Content-Type: application/pdf");
header("Cache-Control: no-cache");
header("Accept-Ranges: none");
header("Content-Disposition: attachment; filename=\"google_com.pdf\"");
echo $pdf;// send the generated PDF
}
catch(PdfcrowdException $why)
{
echo "Pdfcrowd Error: " . $why;
}
?>
答案 0 :(得分:1)
我认为问题在于你没有转换你的php文件生成的输出,而是实际的php文件本身。 pdfCrowd能够将HTML转换为pdf - 我认为它们不能很好地处理php源代码,我不认为那是你想要做的: - )