ラベルに正しい余白が印刷されたバーコードを使用してPDFページを作成しようとしています(バーコードをPDF生成せずにラベルに印刷する方法がある場合は、 dはそれを聞くのが大好きです)。以下は、私は現在のコードのためにしたものである: ":)(ライン79上のライブラリ/ Zendの/ PDF/FileParserDataSource/File.phpに無効なファイル・パス"Zend Frameworkレンダリングバーコードを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');
}
}
私は現在、エラーを取得していますなぜこれが起こっているのかについての考えはありますか?これは、バーコードをレンダリングしようとすると発生します。その前にコードはエラーなしで実行されます。
ライン79一つです
Zend_Barcode::factory('code39', 'pdf', $barcodeOptions, $rendererOptions)->setResource($pdf, $page_index)->draw();
のようなものを使用してPDFのページにバーコードライブラリのバーコードを印刷しますか? – ACNBLine 79は、Zend_Barcode :: factoryのrender()を呼び出す行です。 – tubaguy50035