0)) { $thumbsmaxsize = THUMBSMAXSIZE; } else { $thumbsmaxsize = 400; // default value; } $width = imageSX ($image); $height = imageSY ($image); if (($width <= $thumbsmaxsize) || ($height <= $thumbsmaxsize)) { return false; } if ($width > $height) { $thumb_width = $thumbsmaxsize; $thumb_height = $height * ($thumbsmaxsize / $width); } else if ($width < $height) { $thumb_width = $width * ($thumbsmaxsize / $height); $thumb_height = $thumbsmaxsize; } else if ($width == $height) { $thumb_width = $thumbsmaxsize; $thumb_height = $thumbsmaxsize; } $thumb_image = ImageCreateTrueColor ($thumb_width, $thumb_height); if ($thumb_image === false) { return false; } if (!imagecopyresampled ($thumb_image, $image, 0, 0, 0, 0, $thumb_width, $thumb_height, $width, $height)) { return false; } if ($ext == "jpg" || $ext == "jpeg") { if (!imagejpeg ($thumb_image, $destfile, 100)) { return false; } } else if ($ext == "png") { if (!imagepng ($thumb_image, $destfile)) { return false; } } imagedestroy ($image); imagedestroy ($thumb_image); return true; } function delete_from_ftp ($file) { $ftp_conn = ftp_connect (FTPSERVER); $login = ftp_login ($ftp_conn, FTPUSER, FTPPASS); if ((!$ftp_conn) || (!$login)) { server_error (); } $target = sprintf ("%s/%s", FTPROOTDIR, $file); $deleted = ftp_delete ($ftp_conn, $target); if (!$deleted) { server_error (); } ftp_close ($ftp_conn); } function send_to_ftp ($file) { $ftp_conn = ftp_connect (FTPSERVER); $login = ftp_login ($ftp_conn, FTPUSER, FTPPASS); if ((!$ftp_conn) || (!$login)) { server_error (); } $dest = sprintf ("%s/%s", FTPROOTDIR, $file); $upload = ftp_put ($ftp_conn, $dest, $file, FTP_BINARY); if (!$upload) { server_error (); } ftp_close ($ftp_conn); } ?>