Hejsa Udviklere.
Sidder og skal lave et script om til at der er watermark på også, er der nogen der kan sætte det på i den her kode?
<?php
function imaget($id, $rand){
// The file
$filename = $id;
// Set a maximum height and width
if(!is_numeric($rand)){
$width = 600;
$height = 600;
} else {
$width = 100;
$height = 100;
}
// Content type
header('Content-type: image/jpeg');
// Get new dimensions
list($width_orig, $height_orig) = getimagesize($filename);
$ratio_orig = $width_orig/$height_orig;
if ($width/$height > $ratio_orig) {
$width = $height*$ratio_orig;
} else {
$height = $width/$ratio_orig;
}
// Resample
$image_p = imagecreatetruecolor($width, $height);
$image = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
// Output
imagejpeg($image_p, null, 100);
}
imaget($_GET['pic'], $_GET['rand']);
?>
På forhånd tak :-)