Search found 4 matches

by stupidquestion
2012-07-31T10:19:31-07:00
Forum: Users
Topic: trying to use imagemagick for the first time
Replies: 6
Views: 7105

Re: trying to use imagemagick for the first time

glob is case sensative so .jpg is not the same as .JPG Haha I thought you meant the program only takes upper-case (if that was the case then the first script shouldn't have worked). Nah, the problem was file permission: enabling write permission on the folder for the program solved the problem ...
by stupidquestion
2012-07-31T09:39:45-07:00
Forum: Users
Topic: trying to use imagemagick for the first time
Replies: 6
Views: 7105

Re: trying to use imagemagick for the first time

File must be .JPG .jpg will not be read; you can modify the glob to read .JPG and .jpg but you will need to look it up as I can not remember how offhand. I changed the pictures' extension to JPG, but nothing happens. What's wrong with the lower-case .jpg anyway? Well, maybe the manual is not very ...
by stupidquestion
2012-07-31T07:02:07-07:00
Forum: Users
Topic: trying to use imagemagick for the first time
Replies: 6
Views: 7105

Re: trying to use imagemagick for the first time

You have installed Imagemagick and your code is for Imagick - Imagick needs to be installing seperatly to Imagemagick or it might just need enabaling in your php.ini file. When you view the contents of the php.ini file is Imagick listed ( Imagemagick will probably not be listed ). Thanks! I had to ...
by stupidquestion
2012-07-31T03:51:21-07:00
Forum: Users
Topic: trying to use imagemagick for the first time
Replies: 6
Views: 7105

trying to use imagemagick for the first time

Hi all, first time user here, need a bit of help. I installed imagemagick in Linux using "sudo apt-get install imagemagick". I'm trying to follow the basic examples listed at http://www.php.net/manual/en/imagick.examples-1.php The first sample script is: <?php header('Content-type: image/jpeg ...