ZF-7818: Zend_Pdf: Image Drawing does not work with PHP 5.3.0
Description
Trying to draw an image with the Zend_Pdf component ends up with the error 'JPG support is not configured properly.' The Problem is a improvement in PHP 5.3.0. In the file Zend/Pdf/Resource/Image/Jpeg.php you can find the following if statement on line 60/61:
$gd_options = gd_info(); if (!$gd_options['JPG Support'] ) {
With the version 5.3.0 of PHP the "JPG Support" attribute has been renamed to "JPEG Support". http://de.php.net/manual/de/function.gd-info.php
Comments
Posted by Tobias Petry (ice-breaker) on 2009-09-11T02:35:19.000+0000
Bug Report is a duplicate of ZF-6715