GDが次のような画像をロードするための異なる機能を持っている理由を本当に理解できません:
imagecreatefromjpeg()
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
メソッドを使用したメモリ消費には興味がありません