Hi there.
When posting new edits or whatever its always nice to post screens. But too big screens **** up the layout here and links arent clicked that often.
So I suggest doing thumbnails if a picture is above a specific width or introducing the [imgt] tag. This tag may create a thumbnail and include it in the post.
It may work like this:
Code:
[imgt]http://www.pressebox.de/attachment/40919/Perfect+Image+11+Rechts+3D+300dpi+rgb.jpg[/imgt]
resulting into:

The script iteself isn't that hard:
Code:
<?
$PicPathIn="../bilder/";
$PicPathOut="../bilder/out/";
$bild="Foto.jpg";
$size= GetImageSize("$PicPathIn"."$bild");
$breite=$size[0];
$hoehe=$size[1];
$neueBreite=100;
$neueHoehe= intval($hoehe*$neueBreite/$breite);
if($size[2]==1) {
// GIF
$altesBild= imagecreatefromgif("$PicPathIn"."$bild");
$neuesBild= imagecreate($neueBreite,$neueHoehe);
imageCopyResized($neuesBild,$altesBild,0,0,0,0,$neueBreite,$neueHoehe,$breite,$hoehe);
imageGIF($neuesBild,"$PicPathOut"."TN"."$bild");
}
if($size[2]==2) {
// JPG
$altesBild= ImageCreateFromJPEG("$PicPathIn"."$bild");
$neuesBild= imagecreate($neueBreite,$neueHoehe);
imageCopyResized($neuesBild,$altesBild,0,0,0,0,$neueBreite,$neueHoehe,$breite,$hoehe);
ImageJPEG($neuesBild,"$PicPathOut"."TN"."$bild");
}
if($size[2]==3) {
// PNG
$altesBild= ImageCreateFromPNG("$PicPathIn"."$bild");
$neuesBild= imagecreate($neueBreite,$neueHoehe);
imageCopyResized($neuesBild,$altesBild,0,0,0,0,$neueBreite,$neueHoehe,$breite,$hoehe);
ImagePNG($neuesBild,"$PicPathOut"."TN"."$bild");
}
echo "Altes Bild:<BR>";
echo "<IMG SRC=\"$PicPathIn$bild\" WIDTH=\"$breite\" HEIGHT=\"$hoehe\"><BR><BR>";
echo "Neues Bild:<BR>";
$Thumbnail=$PicPathOut."TN".$bild;
echo "<IMG SRC=\"$Thumbnail\" WIDTH=\"$neueBreite\" HEIGHT=\"$neueHoehe\">";
?>
This code reads a image from $PicPathIn . $bild and will write it to $PicPathOut . "TN" . $bild. You may do the script so it fetches the Get-string and throws out a image as file.
Code:
thumb.php?img="path:\\to.the.image" -> "PNG.a. ...d.a54.56.12."
This should not be hard. I hope you can and will do it x) maybe add some kind of nice backdrop too, so it fits to mmowned.
You may also do it in CSS / javascript .. but meeh ^^