Zend PDF - 获取图像的宽度和高度?

时间:2012-02-22 12:02:18

标签: php pdf-generation zend-pdf

我正在创建这样的图像:

$image1 = Zend_Pdf_Image::imageWithPath($path);

现在,当我调试时,我看到_width和_height,但我无法使用

访问它们
$image1->_width;

因为它受到保护。我如何获得这些价值?

谢谢!

1 个答案:

答案 0 :(得分:4)

$image1->getPixelWidth();
$image1->getPixelHeight();