How to convert an image to base64 encoding?

前端 未结 9 1343
刺人心
刺人心 2020-11-22 06:01

Can you please guide me how can I convert an image from a URL to base64 encoding?

9条回答
  •  耶瑟儿~
    2020-11-22 06:29

    Just in case you are (for whatever reason) unable to use curl nor file_get_contents, you can work around:

    $img = imagecreatefrompng('...');
    ob_start();
    imagepng($img);
    $bin = ob_get_clean();
    $b64 = base64_encode($bin);
    

提交回复
热议问题