Hi there, and thank you for helping if you can. Here's what I have to show my image: <?php header('content-type: image/jpeg'); $watermark = imagecreatefrompng('watermark.png'); $watermark_width = imagesx($watermark); $watermark_height = imagesy($watermark); $image = imagecreatetruecolor($watermark_width, $watermark_height); $image = imagecreatefromjpeg($_GET['src']); $size = getimagesize($_GET['src']); $dest_x = $size[0] - $watermark_width - 5; $dest_y = $size[1] - $watermark_height - 5; imagecopy($image, $watermark, $dest_x , $dest_y, 0, 0, $watermark_width, $watermark_height); imagejpeg($image); imagedestroy($image); imagedestroy($watermark); ?> Problem is I'm at dreamhost and they have "allow_url_fopen" disabled so I'm getting errors from the $_GET I think.... I need someone to help me make it work in a different way that the server allows. Do I make any sense here? Thank you!
Are the images local from the $_GET variable? If they aren't you are going to have to use cURL or something similar to get the images rather than just getting them through $_GET variable.