Ben görüntüleri yeniden boyutlandırma için bir komut dosyası ile çalışıyorum. Ben bir hata alıyorum gibi görünüyor:
Error: no image was specified
Probably because of this code in the script(image.php):
if (!isset($_GET['image']))
{
header('HTTP/1.1 400 Bad Request');
echo 'Error: no image was specified';
exit();
}
Here is what I'm doing(profile.php):
$your_image = $row['Image'];
$path_to_image = $row['PortraitPath'];
$width = 100;
$height = 100;
echo "<img src=\'/image.php/{$your_image}?width={$width}&height={$height}&cropratio=1:1&image={$path_to_img}\' alt=\'Alt text goes here.\' />";
Bu nedenle, bir MySQL tablodan $your_image
ve $path_to_image
, okuma ve ardından img source
koyarak duyuyorum. Yukarıda belirtildiği gibi, belli ki, görüntü o ilk hatayı alıyorum neden olduğunu, ayarlı değil. Ben isimli alamadım ne, nasıl görüntü aslında bile benim img src
kodu ile kurulacaktır? Ben sadece gerçek görüntü gösterilmiyor? Bir resim sadece görüntülenir ediliyor ise o zaman nasıl bile görüntü ayarlanır? Teşekkür ederim.