0
我想打開一個圖像url,將其轉換爲圖像,所以我可以使用imagecopymerge()
,然後將其轉換爲base64。從png創建圖像,轉換爲base64
我能夠使用file_get_contents
查看圖像數據,但我不知道如何將它與imagecreatefromstring
,imagecopymerge
和base64_encode
結合使用。
我想打開一個圖像url,將其轉換爲圖像,所以我可以使用imagecopymerge()
,然後將其轉換爲base64。從png創建圖像,轉換爲base64
我能夠使用file_get_contents
查看圖像數據,但我不知道如何將它與imagecreatefromstring
,imagecopymerge
和base64_encode
結合使用。
的方式我終於做到了是使用
$img=imagecreatefrompng('url');
ob_start();
imagepng($img);
$imgString=ob_get_clean();
$imgBase64=base64_encode($imgString);
我發現我不能將圖像轉換爲字符串,並且必須使用緩衝區。