Search found 41 matches

by jaykappy
2013-07-19T08:13:02-07:00
Forum: Developers
Topic: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)
Replies: 9
Views: 32159

Re: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)

gave it a go.... I ran two examples same code..one converting jpg the other converting PDF (i need the pdf conversion, workign with GS right now.) Basically same code, files exists in specified locations Wont convert PDF for some reason...JPG conversion works fine Unless you have any further thought...
by jaykappy
2013-07-18T12:24:02-07:00
Forum: Developers
Topic: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)
Replies: 9
Views: 32159

Re: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)

So you've given up with ImageMagick? Fair enough. Just out of curiosity, did you try correcting the commands as I suggested above? going to give those a shot....when I have a bit of free time...would like to figure both ways out.. Seems directly calling GhostScript seems to be a bit faster? Or I co...
by jaykappy
2013-07-18T10:26:01-07:00
Forum: Developers
Topic: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)
Replies: 9
Views: 32159

Re: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)

Think I finally got it...was a whirl wind...would be so helpful if there was some documentation out there that gave you the steps and versions that work with each other... 1. Major issues were getting php_imgmagick.dll to be recognized in IIS7.5. THis required downloading the proper build for my PHP...
by jaykappy
2013-07-18T10:20:49-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103876

Re: Convert using ImageMagick using PHP

Think I finally got it...was a whirl wind...would be so helpful if there was some documentation out there that gave you the steps and versions that work with each other... 1. Major issues were getting php_imgmagick.dll to be recognized in IIS7.5. THis required downloading the proper build for my PHP...
by jaykappy
2013-07-18T07:41:33-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103876

Re: Convert using ImageMagick using PHP

I was able to get IIS to recognize the PHP.dll see this post http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=23780 1. Went to this site and found the newer dlls for PHP 5.3 and 5.4 - http://valokuva.org/?p=197 *Downloaded the imagick-php54-php53.tgz. and used winzip to open it......
by jaykappy
2013-07-18T07:24:55-07:00
Forum: Developers
Topic: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)
Replies: 9
Views: 32159

Re: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)

If I really didnt need this I would have dropped ImageMagick a long time ago....HORRIBLE documentation I got IIS 7.5 to recoginize the PHP_imagick.dll FINALLY...... Next step is to run exec() in PHP 1. Went to this site and found the newer dlls for PHP 5.3 and 5.4 - http://valokuva.org/?p=197 *Downl...
by jaykappy
2013-07-18T05:40:38-07:00
Forum: Developers
Topic: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)
Replies: 9
Views: 32159

VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)

Trying to get Imagemagick running on WIn7 2008R2 server with IIS 7.5 Have been trying for over a week now, getting the run around in every direction. Basically I am now simply trying to get the php_imagick.dll installed and recognized in IIS 7.5...easier said than done...I dont care if the versions ...
by jaykappy
2013-07-18T05:33:09-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103876

Re: Convert using ImageMagick using PHP

Imagick is not very well supported an the latest version is a few years old. You need the correct version to go with the php version and I needs to be compiled by a certain version of whatever it is copiled with. I think you will be digging yourself a bigger hole trying to use than getting exec( ) ...
by jaykappy
2013-07-17T12:20:52-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103876

Re: Convert using ImageMagick using PHP

I am still working on getting PHP and the DLL installed and recognized... 1. I go to the website where they say the latest version is and its not named php_imagick.dll its called php_imagick_nts.dll 2. I dowloaded the file to my PHP folder which was on C:\Program Files (x86)\PHP\v5.3\ext (After I do...
by jaykappy
2013-07-17T05:40:46-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103876

Re: Convert using ImageMagick using PHP

Got this back from another post...going to try this.... How do you reference extension ImageMagick and GhostScript in php.ini file? To run command like this exec("c:\Program Files (x86)\gs\gs9.07\bin\gswin32 -h") from php script, you would need to configure website to run as administrator....
by jaykappy
2013-07-17T05:38:00-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103876

Re: Convert using ImageMagick using PHP

Should I do the same with Imagemagick.....just install the 32 bit version to coincide with the 32 bit install of GS
right now I have the 64 bit version installed.

I installed the 32bit version of GS and was able to command line gswin32c -h and got a response.
What test shoudl I do inside PHP?

THanks
by jaykappy
2013-07-16T12:02:37-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103876

Re: Convert using ImageMagick using PHP

I can go to cmd and navigate to there Ghostscript is and run "gswin32 -h" and get a response EDIT: If I can do this from teh command line for GhostScript and ImageMagick I am close....just dont know why it wont work with IIS and from within my PHP page.....ugggg what could be stopping it f...
by jaykappy
2013-07-16T11:55:22-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103876

Re: Convert using ImageMagick using PHP

did this...get this...ugggggg $array=array(); echo "<pre>"; exec("c:\program files\gs\gs9.07\bin\gswin64c --help", $array); echo "<br>".print_r($array)."<br>"; echo "</pre>"; echo 'DONE'; Array ( ) 1 DONE EDIT: Tried these as well...same result exec(...
by jaykappy
2013-07-16T11:37:06-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103876

Re: Convert using ImageMagick using PHP

would I exec that? like this exec("c:\program files\gs\gs9.07\bin\gswin64c" --help); I tried this but nothing doing $array=array(); echo "<pre>"; exec("c:\program files\gs\gs9.07\bin\gswin64c" --help, $array); echo "<br>".print_r($array)."<br>"; echo...
by jaykappy
2013-07-16T10:18:20-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103876

Re: Convert using ImageMagick using PHP

Yes it works from the cmd prompt with simply : convert image.pdf image.jpg

So now we are onto Server configuration...I am testing on IIS....do you have any ideas where I can start? Much appreciated.