EOB*_*EOB 1 php pdf-generation zend-pdf
我正在像这样创建我的图像:
$image1 = Zend_Pdf_Image::imageWithPath($path);
Run Code Online (Sandbox Code Playgroud)
现在,当我调试时,我看到 _width 和 _height,但我无法使用它们访问它们
$image1->_width;
Run Code Online (Sandbox Code Playgroud)
因为它受到保护。我如何获得这些值?
谢谢!