我真的不明白为什么GD具有不同的加载图像的功能,如:
原文链接:https://www.f2er.com/php/140179.htmlimagecreatefromjpeg() imagecreatefrompng() imagecreatefromgif()
如果图像是字符串,则有单个功能?
imagecreatefromstring()
事实上,将图像读入字符串并将其传递给函数更好,类似于:
$imgBlob = file_get_contents($imagePath); imagecreatefromstring($imageBlob); unset($imgBlob); //> Free memory,but I am not interested in memory consumpation
?还是我错过了什么?这可能会给新用户带来潜在的混乱
也许他们只是忘了创建一个函数imageCreateFromFile()?
PS.当然,我对使用file_get_contents方法的内存消耗不感兴趣