Dompdf remote image is not displaying in pdf

后端 未结 17 2274
臣服心动
臣服心动 2020-12-09 17:28

On my server pdf generated via dompdf was not displaying images. Because they are remote url images.(local images are working fine) then I come to know that it needs some se

17条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-09 18:15

    I think you could add this

    private function change_url_image($data, $url) {    
        $str = $url; //for example "http://localhost/yoursite/";
        $str2 = str_replace($str, "", $data);
        return $str2;
    }
    

    to change url for image

提交回复
热议问题