I tried changing
Header("Content-type: image/jpeg"); to
Header(Content-type: "image/jpeg");
Header("Content-type: "image/jpeg");
Header("Content-type: image/jpg");
but didnt work what am I missing
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /path/radupload/resize.php on line 8
Line 6 // Path to your jpeg
7
8 $upfile '/path/to/my/web/site/uploads/popular/rock07.jpg';
9 Header("Content-type: image/jpeg");
10
11 $size = GetImageSize($upfile); // Read the size
12 $width = $size[0];
13 $height = $size[1];
14
15 // Proportionally resize the image to the
16 // max sizes specified above