Search found 23 matches

by danfar
2014-12-08T14:41:41-07:00
Forum: IMagick
Topic: PDF to JPG not working from php front end
Replies: 46
Views: 53743

Re: PDF to JPG not working from php front end

it was a pain to even get this far - is it possible i can add the path to the delegates.xml? where would it be? if I can get the ssh command that would be kool


thanks for you help
by danfar
2014-12-08T14:21:03-07:00
Forum: IMagick
Topic: PDF to JPG not working from php front end
Replies: 46
Views: 53743

Re: PDF to JPG not working from php front end

ok so how do I add it? should I un install both and reinstall? or do just IM only

thanks
by danfar
2014-12-08T13:38:40-07:00
Forum: IMagick
Topic: PDF to JPG not working from php front end
Replies: 46
Views: 53743

Re: PDF to JPG not working from php front end

if I can see gs under delegates doesnt that mean IM knows about gs?
by danfar
2014-12-08T12:53:02-07:00
Forum: IMagick
Topic: PDF to JPG not working from php front end
Replies: 46
Views: 53743

Re: PDF to JPG not working from php front end

if i run
convert -list configure

I can see gs under delegates along with freetype fontconfig etc

so that means imagemagick see's gs?
by danfar
2014-12-08T12:22:11-07:00
Forum: IMagick
Topic: PDF to JPG not working from php front end
Replies: 46
Views: 53743

Re: PDF to JPG not working from php front end

so how can I fix this? any suggestions

thanks
by danfar
2014-12-08T10:23:10-07:00
Forum: IMagick
Topic: PDF to JPG not working from php front end
Replies: 46
Views: 53743

Re: PDF to JPG not working from php front end

how can I call ghostscript directly

exec("/usr/bin/convert test.pdf jastest123.jpg");

for e.g for gs
exec("/usr/bin/gs test.pdf jastest123.jpg");
by danfar
2014-12-08T09:36:48-07:00
Forum: IMagick
Topic: PDF to JPG not working from php front end
Replies: 46
Views: 53743

Re: PDF to JPG not working from php front end

Yes i have ghostscript installed and it works on command line all i have read is they need the same path e.g. /usr/bin/ /usr/bin/convert /usr/bin/gs but how to I make it work on php I even tried this from http://www.veryinteractivepeople.com/?p=521 but nothing happens <?php ini_set('display_errors',...
by danfar
2014-12-08T08:34:39-07:00
Forum: IMagick
Topic: PDF to JPG not working from php front end
Replies: 46
Views: 53743

PDF to JPG not working from php front end

PDF to JPG not working from php front end It works fine on command line using convert test.pdf test123.jpg the path for both are /usr/bin/convert and /usr/bin/gs versions are imagemagick 6.5.4-7 ghostscript 8.70 I have tried this code and a couple of others from the web <?php Replace input.jpg with...