我正在使用 FPDF 从 PNG 文件中提取信息。不幸的是,服务器已禁用 fopen。谁能推荐一个解决这个问题的好方法?任何帮助将非常感激。提前致谢!
function _parsepng($file)
{
// Extract info from a PNG file
$f = fopen($file,'rb');
if(!$f)
$this->Error('Can\'t open image file: '.$file);
$info = $this->_parsepngstream($f,$file);
fclose($f);
return $info;
}