my pics seem to look fine when i upload them...are your pics of a large size? maybe that is why...im uploading only jpg files but i tested it with gif files as well...here's my script if u want to take a look:
<?php
$move_to_dir = '/usr/local/etc/httpd/htdocs/dev/photos';
if ( file_exists($userfile) )
{
// File is uploaded
copy($userfile, $move_to_dir . '/' . $userfile_name);
echo "it works! :)";
}
else
{
echo "error it doesnt work :(";
}
unlink($userfile);
?>
hope it helps...