Can I use a URL as the source for imagecreatefromjpeg() without enabling fopen wrappers?

后端 未结 3 1701
感情败类
感情败类 2020-12-17 17:22

I know it’s possible to use imagecreatefromjpeg(), imagecreatefrompng(), etc. with a URL as the ‘filename’ with fopen(), but I\'m unable to enable the wrappers due to securi

相关标签:
3条回答
  • 2020-12-17 17:30

    You could always download the image (e.g. with cURL) to a temporary file, and then load the image from that file.

    0 讨论(0)
  • 2020-12-17 17:39

    You could even implement a cURL based stream wrapper for 'http' using stream_wrapper_register.

    0 讨论(0)
  • 2020-12-17 17:46

    You can download the file using cURL then pipe the result into imagecreatefromstring.

    Example:

        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $imageurl); 
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // good edit, thanks!
        curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1); // also, this seems wise considering output is image.
        $data = curl_exec($ch);
        curl_close($ch);
    
        $image = imagecreatefromstring($data);
    
    0 讨论(0)
提交回复
热议问题