Home > php教程 > php手册 > 自动下载php生成的图片

自动下载php生成的图片

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 19:33:55
Original
2127 people have browsed it

无详细内容 无 ?php header("Content-Type:text/html;charset=utf-8"); header("Content-type: image/jpeg"); $image = imagecreatefromjpeg('./demo.jpg'); $bgcolor = imagecolorallocate($image, 0, 0, 0); $fontcolor = imagecolorallocate($image, 255,

<?php
    header("Content-Type:text/html;charset=utf-8");
    header("Content-type: image/jpeg");
    $image = imagecreatefromjpeg('./demo.jpg');
    $bgcolor = imagecolorallocate($image, 0, 0, 0);
    $fontcolor = imagecolorallocate($image, 255, 255, 255);
    header("Content-Disposition: attachment;filename=demo.jpg ");
    imagejpeg($image);
   imagedestroy($image);
?>
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template