gpt4 book ai didi

php - 如何返回图像

转载 作者:行者123 更新时间:2023-12-03 23:57:44 33 4
gpt4 key购买 nike

我想用 php 脚本显示图像。这是我当前的代码:

<?php
if (isset ($_GET['id'])) $id = $_GET['id'];
$t=getimagesize ($id) or die('Unknown type of image');

switch ($t[2])
{
case 1:
$type='GIF';
$img=imagecreatefromgif($path);
break;
case 2:
$type='JPEG';
$img=imagecreatefromjpeg($path);
break;
case 3:
$type='PNG';
$img=imagecreatefrompng($path);
break;
}

header("Content-type: image/".$type);
echo $img;
?>

但它不显示图像。什么是正确的方法而不是 echo $img

最佳答案

就像这样:

public function getImage()
{

$imagePath ="img/wall_1.jpg";

$image = file_get_contents(imagePath );
header('content-type: image/gif');
echo $image;

}

关于php - 如何返回图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6058418/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com