我正在尝试在以下代码中列出(也重新调整大小)照片。所以我想输出所有带有“x”id的图像。
问题是我有一个包含在文档中的标题,所以我不能header('Content-type: image/jpeg');
用来输出我想要显示的图像数组。但是如果我把它拿出来,它只会显示一堆随机字符,我知道这是字符串中的照片。我不知道如何使这项工作。我也计划将每张照片放在自己的 div 中。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<?php include 'topheader.php'; ?>
</head>
<body>
<?php
ob_start();
ini_set("gd.jpeg_ignore_warning", 1);
$roomid = $_GET['room'];
$query = "SELECT `photoname` FROM `roomsite`.`photos` WHERE `roomid`='$roomid'";
$getphotos = $connect->prepare($query);
if ($getphotos->execute()){
while ($array = $getphotos->fetch(PDO::FETCH_ASSOC)){
$image = imagecreatefromjpeg('userphotos/'.$array['photoname'].'');
list($image_width, $image_height, $type, $attr) = getimagesize('userphotos/'.$array['photoname'].'');
$new_size = ($image_width + $image_height)/($image_width*($image_height/100));
$new_width = $image_width * $new_size;
$new_height = $image_height * $new_size;
$new_image = imagecreatetruecolor($new_width, $new_height);
imagecopyresized($new_image, $image, 0, 0, 0, 0, $new_width, $new_height, $image_width, $image_height);
$imagearray = imagejpeg($new_image, null);
header('Content-type: image/jpeg');
echo $imagearray;
}
} else { die('Query Error'); }
?>
</body>
</html>
我可以做这样的事情
while ($array = $getphotos->fetch(PDO::FETCH_ASSOC)){
echo '<img src="outputphotos.php">';
}
但这意味着我将运行两次查询,这可能不是一个好主意?这是唯一的方法吗?