下载生成的图像并发送到电子邮件

时间:2013-07-30 14:14:16

标签: php image email download gd

萨拉姆

我通过在其中添加像这样的文本来生成图像

function create_image() 
    {

        $im = imagecreatefrompng('coupon.png');

        $red = imagecolorallocate($im, 120, 20, 20);

        $font = 'font/arial.ttf';


        imagettftext($im, 36, 0, 176, 695, $red, $font, $_POST['Tdesc']);
        ob_start();
            imagepng($im);
            $image = ob_get_contents();
        ob_end_clean();

        echo '
            <html>
                <head>
                    <title>

                    </title>
                </head>

                <body>
                    <form action="donwload.php" method="post">
                        <img src="data:image/png;base64,'.base64_encode($image).'" height="701" width="496" name="xx" />
                        <button type="submit" class="btn">Genere le coupon</button>
                    </form>
                </body>
            </html>
        ';
}

我想通过指定他的姓名和分机来下载此图片,并将其发送到地址电子邮件

0 个答案:

没有答案