hallo,
ich möchte ein bild beim öffnen in eine bestimmt größe bringen.
das klappt auch.
wenn ich nun das bild mit:
aufrufe ist alle ok.
will ich aber eine tabelle um das bild und noch einen "fenster schließen button versehen geht das nicht.
was muß ich da tun
ich möchte ein bild beim öffnen in eine bestimmt größe bringen.
das klappt auch.
PHP-Code:
header("Content-Type: image/jpeg");
if (file_exists($bild))
{
$imgInfo = getimagesize($bild);
$img = imagecreatefromjpeg($bild);
$imgX = $imgInfo[0];
$imgY = $imgInfo[1];
$im_new = @imagecreatetruecolor($new_x, $new_y)
OR
$im_new = imagecreate($new_x, $new_y);
imagecopyresized
($im_new, $img, 0, 0, 0, 0, $new_x, $new_y, $imgX, $imgY);
imagejpeg($im_new);
imagedestroy($im_new);
}
PHP-Code:
$new_x=562;
$new_y=750;
$bild ="08.jpg";
print "<a href=\"08.jpg\" onclick=\"return(openWindow('pic.php?bild=$bild&new_x=$new_x&new_y=$new_y',";
print "'Image','scrollbars=no,resizable=yes,width=400,height=500'))\">";
print "test</a>";
will ich aber eine tabelle um das bild und noch einen "fenster schließen button versehen geht das nicht.
was muß ich da tun
Kommentar