微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

想要渲染图像而不使用PHP GD库将其保存到磁盘

嗨有以下功能

function renderBusinessCard($details){
        //Getting the template for the business card
        $filename = Templates::model()->getTemplateFileName($details['BusinessCards']['dp_id']);
        header("Content-type: image/jpeg");

        $image = $_SERVER['DOCUMENT_ROOT'].'resources/templates/'.$filename;


//        header("Content-Type: image/jpeg");
        //Getting the width and height of the image
        list($width,$height) = getimagesize($image);


//echo $width;die;
        //Creating a copy of a loaded image
        $create = imagecreatefromjpeg($image);


        //Creating a blank template to work from
        $template = imagecreatetruecolor($width,$height);
        imagecopyresized($template, $create, 0, 0, 0, 0, $width, $height, $width, $height);

        imagejpeg($template, null, 100);

    }

我想要实现的是在图像标签显示图像,如下所示

<img src="<?PHP renderBusinessCard($details); ?>"

但不知何故,它总是将乱码代码渲染到屏幕而不是我想要的结果.这是可能吗?如果不使用单独的文件,我希望它保留在一个函数方法中.

解决方法:

您需要在单独的资源中呈现图像.没有好的方法在HTML文档中添加图像数据. (任何人都在考虑推荐数据:URI:这是一个糟糕的主意.)

<img src="renderBusinessCard.PHP?param1=1&param2=2">

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐