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.
PHPで画像リソースからbase64文字列を取得するにはどうすればよいですか? ただし、その場で画像を作成したため、URL は存在しません。
これが私が試したものですが、うまくいきません:
echo 'data:image/png;base64,'.base64_encode($img);
これによりエラーが発生します。
Warning: base64_encode() expects parameter 1 to be string, resource given