0

我尝试了这个imagejpeg() php 方法,但它在运行代码时将图像返回给浏览器。

但是我需要一个返回图像 URL 的方法,以便我可以在我的 img 标签中使用它。

目前我必须使用 -

<img src="siteurl/myphpfile.php" />

但我认为如果该方法返回一个图像处理程序会更好,这样我就可以在我的 img 标签中使用它,比如 -

<img src="image.jpg" />

我的 myphpfile.php 是包含代码的文件。

在 php 手册中搜索了许多功能,但没有运气,我也在使用这种方法imagettftext()在图像上添加文本。

文件中的总代码——

<?php
    function myimagecreate( $myname ) {
    $headurl = 'template_header01.jpg';
    header('Content-type: image/jpeg');
    $text = "My Full Text";
    $name = $text.".jpg";
    $jpg_image = imagecreatefromjpeg($headurl);
    $black = imagecolorallocate($jpg_image, 1, 1, 1);
    $font_path = 'myfont/arial.ttf';
    imagettftext($jpg_image, 24, 0, 175, 85, $black, $font_path, $text);
    imagejpeg($jpg_image,'mynameimg.jpg');
    imagedestroy($jpg_image);
    return 'mynameimg.jpg';
    }

    $to = 'swapnesh20032003@gmail.com';
    $subject = $myname; 
    $message = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Kings</title>
</head>

<body>
<table width="100%"><tr><td valign="bottom" align="center" height="282"><img src="'.myimagecreate( $myname ).'" /></td></tr></table></table></body></html>';

mail($to,$subject,$message);    
?>
4

2 回答 2

3

有两种更明显的方法可以解决这个问题。

  1. 将渲染图像写入文件

    这可以imagejpeg通过传入文件名的第二个参数来使用,例如:

     $im = imagecreatetruecolor(..);
     // ..
     imagejpeg($im, 'image.jpg');
    
  2. 使用 URL 重写

    您始终可以通过.jpgs一个特殊文件夹中的所有内容(例如/dynamic/image.jpg通过您的脚本来渲染它)。如果您愿意,您甚至可以将文件名 ( image.jpg) 作为脚本的参数,告诉它在图像是动态的情况下要渲染什么。

显然,如果您的图像需要在每个请求中有所不同,那么 #2 是更好的选择。但是,如果您的图像是静态的(即您imagettftext总是在同一图像上写相同的文本),则建议使用 #1 更快。

于 2012-12-31T11:52:52.043 回答
1

您的 PHP 页面可以返回图像:

<?php
$filename = "my_image.png";
$image = fopen($filename, 'rb');

header("Content-Type: image/png");
header("Content-Length: " . filesize($filename));
fpassthru($image);

然后,您可以让它读取 GET 参数并返回适当的图像。然后您可以在其他页面中使用它,如下所示:

<img src="my_image_return_page.php?image=<?=$image_id?>">

这当然适用于 PNG 图像类型,对于其他类型,您必须将 Content-Type 标头更改为适当的格式。您可以在此处找到可用的格式。

扩展答案:

假设您想要一个脚本,该脚本需要根据传递的图像 ID 从数据库中读取图像。

<?php
//Get image id
$imageId = $_GET['id'];

//You search for your image in database here, and return the location
//Additionally if image with that id wasn't found, you can return location of some image that says "Ooops, we couldn't find image you were looking for".
//Say you save image's location in $imageLocation variable.

//Get pathinfo of your image file
$pathInfo = pathinfo($imageLocation);

$extension = $pathInfo['extension'];
if ($extension == "jpg") {
    $contentType = "jpeg";
} elseif ($extension == "png") {
    $contentType = "png";
} elseif ($extension == "gif") {
    $contentType = "gif";
} else {
    //Handle error here if format isn't recognized
}

//Set content type
header("Content-Type: image/".$contentType);
//Set content length
header("Content-Length: ". filesize($imageLocation));

//This is shorter way then using fopen, but has the same result
echo file_get_contents($imageLocation);
于 2012-12-31T11:57:38.210 回答