Search found 6 matches

by WhiteCastle
2015-02-14T05:37:19-07:00
Forum: IMagick
Topic: PNG and JPG not in the supported formats
Replies: 13
Views: 17084

Re: PNG and JPG not in the supported formats

You may be able to do it with Imagick. You should be able to do it with one or more exec() commands. Imagick has not kept up with many of the latest enhancements to Imagemagick and is lacking some older ones. Some PSD files have layer types with which Imagemagick cannot deal. Simple layers should b...
by WhiteCastle
2015-02-12T20:35:50-07:00
Forum: IMagick
Topic: PNG and JPG not in the supported formats
Replies: 13
Views: 17084

Re: PNG and JPG not in the supported formats

exec("convert test.jpg -thumbnail 100x100 th_test.jpg"); I am not sure what realpath() is but you can use variables in your code as well. It works good, but I want to use full features. I will create a PHP routine like: 1 - Open a PSD file, identify and separate all layers 2 - Gave by a v...
by WhiteCastle
2015-02-12T14:43:05-07:00
Forum: IMagick
Topic: PNG and JPG not in the supported formats
Replies: 13
Views: 17084

Re: PNG and JPG not in the supported formats

I did read a post where some guy found a solution, just installing manually the libraries In this topic: http://www.webmasterworld.com/php/3857215.htm Here's a quote of his post, looks like the same problem: EDIT: Wow. Just wow. I specifically tried .gif last evening, but it was one of those situati...
by WhiteCastle
2015-02-12T13:01:18-07:00
Forum: IMagick
Topic: PNG and JPG not in the supported formats
Replies: 13
Views: 17084

Re: PNG and JPG not in the supported formats

Let's try a small example doing this This code works if i use a BMP or GIF, but not with JPG and PNG, how can i work on this simple code using exec? <?php $im = new Imagick(); $im->readImage( realpath('test.jpg') ); $im->thumbnailImage( 100, null ); $im->writeImage( 'th_test.jpg' ); $im->destroy(); ...
by WhiteCastle
2015-02-12T12:29:30-07:00
Forum: IMagick
Topic: PNG and JPG not in the supported formats
Replies: 13
Views: 17084

Thanks guys, 'where convert' worked, it show the directory: C:\ImageMagick\convert.exe C:\Windows\System32\convert.exe but rename the convert.exe dont affected in the number of Suported Formats in PHPINFO(), is there another step? I was thinking about use exec() to convert all the JPG and PNG into B...
by WhiteCastle
2015-02-12T10:05:35-07:00
Forum: IMagick
Topic: PNG and JPG not in the supported formats
Replies: 13
Views: 17084

PNG and JPG not in the supported formats

Hi! I'm using the latest version of IM and dependencies and works fine in Command Prompt (MS DOS) and I can manipulate JPG, PNG and others. But in PHP some things go wrong, JPG and PNG doesn't shows up in the Supported Formats, I tried to manipulate others formats in PHP like BMP and GIF and it work...