我在Drupal 8上创建了模块,以便从节点生成PDF文件,因为请求是这个PDF看起来与我想在PNG中创建屏幕截图并使用Imagick将其转换为PDF的页面完全相同。
一切顺利,直到Imagick,我得到了这个:
ImagickException: Zero size image string passed in Imagick->readimageblob()
但是图像就在那里,没关系,我可以毫无问题地打开它。
这是我的代码:
<?php
/**
* @file
* MyControllerBase
*/
namespace Drupal\my_pdf\Controller;
use Drupal\node\Entity\Node;
use Knp\Snappy\Image;
use Symfony\Component\HttpFoundation\Response;
use Drupal\Core\Controller\ControllerBase;
class MyPdfController extends ControllerBase {
/**
* @return \Symfony\Component\HttpFoundation\Response
*/
public function createPdf($nodeid) {
$node = Node::load($nodeid);
$url = \Drupal::request()->getSchemeAndHttpHost() . $node->url();
$module_path = drupal_get_path('module', 'verifone_pdf');
$filename = 'node-id-' . $nodeid . '.png';
$snappy = new Image('xvfb-run /usr/bin/wkhtmltoimage');
$snappy->setOption('no-stop-slow-scripts', TRUE);
$snappy->setOption('javascript-delay', 5000);
$snappy->setOption('images', TRUE);
$snappy->setOption('enable-smart-width', TRUE);
$snappy->setOption('user-style-sheet', $module_path . '/css/style.css');
$snappy->setOption('width', '1920');
$snappy->setDefaultExtension('png');
if(!file_exists("/tmp/$filename")) {
$snappy->generate($url, "/tmp/$filename");
}
$image = imagecreatefrompng("/tmp/$filename");
$im = new \Imagick();
ob_start();
imagepng($image);
$image_data = ob_get_contents();
ob_end_clean();
// Get image source data
$im->readimageblob($image_data);
$im->setImageFormat('pdf');
return new Response(
$im,
200,
array(
'Content-Type' => 'application/pdf',
'Content-Disposition' => 'attachment; filename="page-' . $nodeid . '.pdf"'
)
);
}
}
我错过了什么吗?有人可以帮我解决这个问题或者给我一些PNG到PDF格式改变的工作示例吗?
答案 0 :(得分:0)
readImageBlob()
从二进制字符串中读取图像。在您的情况下,您需要readImage()
从文件名中读取图像。
此外,您必须使用setFormat()
方法而不是setImageFormat()
方法。
即。 :
$im = new \Imagick();
$im->readImage("/tmp/{$filename}");
$im->setFormat('pdf');
您可以使用$im->queryFormats()
获取支持的格式列表。
最后一步是将getImage()
方法传递给Response
对象。
我会写这样的东西(未经测试):
<?php
/**
* @file
* MyControllerBase
*/
namespace Drupal\my_pdf\Controller;
use Drupal\node\Entity\Node;
use Knp\Snappy\Image;
use Symfony\Component\HttpFoundation\Response;
use Drupal\Core\Controller\ControllerBase;
class MyPdfController extends ControllerBase
{
/**
* @return \Symfony\Component\HttpFoundation\Response
*/
public function createPdf($nodeid)
{
$node = Node::load($nodeid);
$url = \Drupal::request()->getSchemeAndHttpHost() . $node->url();
$module_path = drupal_get_path('module', 'verifone_pdf');
$filename = 'node-id-' . $nodeid . '.png';
$snappy = new Image('xvfb-run /usr/bin/wkhtmltoimage');
$snappy->setOption('no-stop-slow-scripts', TRUE);
$snappy->setOption('javascript-delay', 5000);
$snappy->setOption('images', TRUE);
$snappy->setOption('enable-smart-width', TRUE);
$snappy->setOption('user-style-sheet', $module_path . '/css/style.css');
$snappy->setOption('width', '1920');
$snappy->setDefaultExtension('png');
if(!file_exists("/tmp/$filename")) {
$snappy->generate($url, "/tmp/{$filename}");
}
$im = new \Imagick();
$im->readImage("/tmp/{$filename}");
$im->setFormat('pdf');
return new Response(
$im->getImage(),
200,
array(
'Content-Type' => 'application/pdf',
'Content-Disposition' => 'attachment; filename="page-' . $nodeid . '.pdf"'
)
);
}
}
希望它有所帮助。