gpt4 book ai didi

zend-framework - Zend Framework 将条形码渲染成 PDF 页面

转载 作者:行者123 更新时间:2023-12-04 05:59:50 25 4
gpt4 key购买 nike

我正在尝试创建带有条形码的 PDF 页面,这些条形码具有要打印在标签页上的正确边距(如果您对如何在不生成 PDF 的情况下将条形码打印到标签上有其他想法,我很想听听)。以下是我目前的代码:

$pdf = new Zend_Pdf();
for($i = 1; $i <= $numberOfPages; $i++)
{
$page = new Zend_Pdf_Page(Zend_Pdf_Page::SIZE_A4);
$page->setFont(Zend_Pdf_Font::fontWithName(Zend_Pdf_Font::FONT_HELVETICA), 20);
$pdf->pages[] = $page;
}
foreach($pdf->pages as $id => $page)
{
if($equipmentCount > 10)
{
$barcodesOnThisPage = 10;
$equipmentCount = $equipmentCount - 10;
}
else
{
$barcodesOnThisPage = $equipmentCount;
}
for($i = 1; $i <= $barcodesOnThisPage; $i++)
{
//Zend_Barcode::setBarcodeFont();
$barcodeOptions = array('text' => 'ZEND-FRAMEWORK-1');
$rendererOptions = array('topOffset' => 50);
$pdf = Zend_Barcode::factory('code39', 'pdf',
$barcodeOptions, $rendererOptions)->setResource($pdf)->render();
die;
$barcodeOptions = array('text' => 'ZEND-FRAMEWORK-2');
$rendererOptions = array('topOffset' => 100);
$pdfBarcode = Zend_Barcode::factory('code39', 'pdf',
$barcodeOptions, $rendererOptions)->setResource($pdf)->draw();
$barcodeOptions = array('text' => 'ZEND-FRAMEWORK-3');
$rendererOptions = array('topOffset' => 150);
$pdfBarcode = Zend_Barcode::factory('code39', 'pdf',
$barcodeOptions, $rendererOptions)->setResource($pdf)->draw();
// and the end render your Zend_Pdf
/$pdfBarcode->save('testBarcode.pdf');
}
}

我目前收到错误“无效的文件路径:library/Zend/Pdf/FileParserDataSource/File.php on line 79 ()”

关于为什么会发生这种情况的任何想法?当我尝试渲染条形码时会发生这种情况。在此之前,代码执行没有错误。

最佳答案

$barcodeOptions = array('text' => 'ZEND-FRAMEWORK-1', 'font' => __DIR__ . "/FRE3OF9X.TTF"); 

TTF 文件(FRE3OF9X.TTF 或你有什么)必须存在。

关于zend-framework - Zend Framework 将条形码渲染成 PDF 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9049046/

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