Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字符串中的图像$data。我需要调整该图像的大小,因此将其转换为imagewith imagecreatefromstring。如何将调整大小的图像恢复为$data变量?我发现的都是imagepng同类。
$data
image
imagecreatefromstring
imagepng
imagepng与输出缓冲一起使用:
ob_start(); imagepng($image); $data = ob_get_clean();