Search found 5 matches

by kelfas
2016-02-26T00:15:53-07:00
Forum: IMagick
Topic: Uncaught exception 'ImagickException'
Replies: 8
Views: 19722

Re: Uncaught exception 'ImagickException'

It turned out that the server had two ImageMagick installations. The one installed from source didn't have the delegates for JPG. Luckily I've found the source so I was able to uninstall it running:
make uninstall
Then, I reinstall it and also reinstall imagick. Both from sources.

Thank you very ...
by kelfas
2016-02-25T15:27:24-07:00
Forum: IMagick
Topic: Uncaught exception 'ImagickException'
Replies: 8
Views: 19722

Re: Uncaught exception 'ImagickException'

Hello,

Thanks for your reply. I believe it was installed from source. Would it be solved if i reinstall ImageMagick using:

Code: Select all

yum install ImageMagick
The command:

Code: Select all

gs --version
outputs:

Code: Select all

9.04
by kelfas
2016-02-25T14:50:59-07:00
Forum: IMagick
Topic: Uncaught exception 'ImagickException'
Replies: 8
Views: 19722

Re: Uncaught exception 'ImagickException'

Hello,

convert-list configure
output:


Path: /usr/local/lib/ImageMagick-6.7.3/config/configure.xml

Name Value
-------------------------------------------------------------------------------
CC gcc -std=gnu99 -std=gnu99
CFLAGS -fopenmp -g -O2 -Wall -pthread
CODER_PATH /usr/local/lib/ImageMagick ...
by kelfas
2016-02-25T12:53:51-07:00
Forum: IMagick
Topic: Uncaught exception 'ImagickException'
Replies: 8
Views: 19722

Re: Uncaught exception 'ImagickException'

Hello,

Thanks for your answer. The exceptions raises whe trying to set the image format to JPEG. I can't find this delegates.xml file. I'm working on CentOS. Does this file from ImageMagick configure.xml tells you something:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuremap ...
by kelfas
2016-02-25T01:06:58-07:00
Forum: IMagick
Topic: Uncaught exception 'ImagickException'
Replies: 8
Views: 19722

Uncaught exception 'ImagickException'

Hello,

I'm currently facing a problem when trying to convert a PDF to JPEG. I've installed ImageMagick, GhostScript and also imagick extension for PHP but I'm still getting the error:

Fatal error: Uncaught exception 'ImagickException'

My code is the following:

$pdfFile = '/tmp/RE220216_01.pdf ...