Jump to content

ImageCreateFromJpeg ...


physh

Recommended Posts

Hello. I was wondering if anyone could please help me solve this problem. when i have move one site to a new server this piece of code stopped working. The wierdest part is that in firefox it lets me download a blank php file instead of executing it.

[code]$topimg = "./i/tops/demo.jpg";
$img=ImageCreateFromJpeg($topimg);// this line casues the problem
$rgb = ImageColorAt($img, 1, 1);
echo '<html><head></head><body bgcolor="#'.dechex($rgb).'"><img src="'.$topimg.'" border=0></body></html>';
imagedestroy($img);[/code]

at first i thought that GD was not installed bu thats not the case:
var_dump(gd_info());
[code]["GD Version"]=>"bundled (2.0.23 compatible)"
  ["FreeType Support"]=> bool(true)
  ...
  ["JPG Support"]=> bool(true)[/code]
Link to comment
https://forums.phpfreaks.com/topic/12644-imagecreatefromjpeg/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.