Jump to content

Image resize problem


mraiur

Recommended Posts

Hi.

I have made a resize and upload class.

And the file thumb.php has a strange problem i upload a picture witch is above 2 mb filesize ( 4.8MB to be exact).

Okey i am testing it on my laptop witch is running on windows with base php.ini and the thumb.php

resizes the picture with no problem.

But after i upload the the converting and resizing scripts they work . The images are uploaded with no problem but the resize works only if the image file is less then 1.0MB - 1.2MB.

So has enyone have an idea what is the problem  ?

Link to comment
https://forums.phpfreaks.com/topic/128427-image-resize-problem/
Share on other sites

Link me to the image and I'll test it with my personal Image class that I wrote a while back and tell you if there's actually a problem with it.

 

I remember someone posting a similar problem (they had an incredibly high resolution picture) and they couldn't resize it, but I could with my class, so let's see what happens.  Link to it please.

Link to comment
https://forums.phpfreaks.com/topic/128427-image-resize-problem/#findComment-665516
Share on other sites

Add the following two lines after your first opening <?php tag -

ini_set ("display_errors", "1");
error_reporting(E_ALL);

 

When learning php, developing php code, or debugging php code, use php error reporting to get php to help you.

Link to comment
https://forums.phpfreaks.com/topic/128427-image-resize-problem/#findComment-665582
Share on other sites

хах добре че помогна .... с толко мнооо "дай кода".....

 

What language is that?  The only language that I can think of with letters like that (other than Greek, which it's clearly not; I speak Greek. =P) is Russian. >_>

Link to comment
https://forums.phpfreaks.com/topic/128427-image-resize-problem/#findComment-665592
Share on other sites

it means "huh thanks for the help.... whit this "give the code" stuff"

And i know that i have to set the error reportiong to see the errors :) but there are no errors just nothing is resized and i wonder how to put the question up like:

1. Do you know if there is a limit of the the imagecreatefromjpeg for example.

or

2. Do you have any idea why on my local mashine i can resize the image and the same image i cant on the "live server" ? Is there any php.ini specs that has to be changed....

Link to comment
https://forums.phpfreaks.com/topic/128427-image-resize-problem/#findComment-665646
Share on other sites

I don't know of any specific php settings other than the ones I mentioned above.  Maybe you can run a phpinfo() on your localhost and another on the server and start comparing values.  I assume that you have the gd/imagemagick/whatever extensions installed on the remote server or you would have gotten error messages since you say they are turned on.  Have you searched php.net for the extension you are using to see if there is anything useful there regarding your problem?

Link to comment
https://forums.phpfreaks.com/topic/128427-image-resize-problem/#findComment-665669
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.