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.
私は画像変数を持っています、
$im = imagecreatetruecolor(400, 300);
ファイルに保存せずに、この画像のバイナリの文字列を jpeg 形式で取得する方法はありますか? ありがとう!
ob_start(); imagejpeg($im); $imageString = ob_get_clean();