Image processing on local server won't behave

See all posts See thread Reply

Re: Image processing on local server won't behave new!
by colin, 14 years, 7 months ago
Apparently, the MIME type is wrongly detected:
MIME type detected as image/png; charset=binary by Fileinfo PECL extension

Try to deactivate the PECL Fileinfo detection (works from v 0.28):
$handle->mime_fileinfo = false;
This should deactivate Fileinfo, and use other techniques to detect the MIME type. If the detected MIME type is an image one, image processing should happen.

Let me know.Reply