In Renderer\Abstract.php, line 84, $normalized ist not used.
$renderer_params['imageType'] = 'png' has no effect, since the function
setimageType does not exist (setImageType however, does).
/**
* Set matrixcode state from options array
* @param Zend_Config $config
* @return Zend_Matrixcode_Abstract
*/
public function setOptions($options)
{
foreach ($options as $key => $value) {
$normalized = ucfirst($key);
$method = 'set' . $key;
if (method_exists($this, $method)) {
$this->$method($value);
}
}
return $this;
}
Original issue reported on code.google.com by ulrich.s...@gmail.com on 31 Jan 2013 at 3:48
Original issue reported on code.google.com by
ulrich.s...@gmail.com
on 31 Jan 2013 at 3:48