Search found 22 matches

by iwantmedia
2016-05-31T10:30:22-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

The above still shows an error with & without the quotes. Finally after nagging and posting the parts from this forum the ISP are almost admitting the install was wrong. "Hi Tom, Thanks for your time. Our System Administrators are working on a fix for this as we speak. Please bear with us.&...
by iwantmedia
2016-05-31T00:46:02-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

My current theory is that rgb ... 'rgb(107,15,15)' ... would work without the quotes, so we wouldn't know if the quotes are being ignored. However, this ... -draw 'color 1,0 floodfill' ... needs the quotes in order to keep the three space-separated "words" together in a single argument. T...
by iwantmedia
2016-05-31T00:01:45-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

It is strange that you say your 'rgb(...)' color works, but -draw does not. -draw depends upon MVG (I believe from xml, though not sure). Might you have an old or badly installed xml? See http://www.imagemagick.org/script/magick-vector-graphics.php. When you do convert -list format what do you get ...
by iwantmedia
2016-05-30T22:41:47-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

Here's another test you can do. Arrange for a text file called, say, mydraw.txt, to contain: color 1,0 floodfill Note: there are no quote characters. Then change your command, replacing the entire quoted draw argument with @ and the filename: -draw @mydraw.txt If this works, then you have a solutio...
by iwantmedia
2016-05-30T14:42:02-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

ok spaces removed and line breaks removed. Here is the $cmd that is returned but i still have the issue of {-draw} {color} {1,0} {floodfill}
by iwantmedia
2016-05-30T14:11:16-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

Bonzo wrote:I have lost track are you on a Linux or windows server?
the site is hosted on a linux server. I am using dreamweaver cc to edit the php files.
by iwantmedia
2016-05-30T13:36:15-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

$cmd = "convert '../img/gallery/3_Queens_Parade_300_x_220_8.jpg' -write mpr:image +delete \ ". "045a-top.jpg -write mpr:edge_top +delete \ ". "045a-bottom.jpg -rotate 180 -write mpr:edge_btm +delete \ ". "mpr:image -alpha set -bordercolor 'rgb(107,15,15)' -border ...
by iwantmedia
2016-05-30T13:19:43-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

When trying different code with some form of error reporting on... when using this code: $cmd = "convert '../img/gallery/3_Queens_Parade_300_x_220_8.jpg' -write mpr:image +delete \ ". "045a-top.jpg -write mpr:edge_top +delete \ ". "045a-bottom.jpg -rotate 180 -write mpr:edg...
by iwantmedia
2016-05-30T13:04:05-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

What do you now get from convert -version I want to see that it has lcms in the delegates. After than we can try some simple draw commands and see if we can pin down where it is failing. try these two commands: convert -size 200x200 xc:black -fill white -draw "rectangle 50,50 150,150" tes...
by iwantmedia
2016-05-30T12:58:40-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

Your latest version uses back-quotes around the draw string. I don't know PHP, but I expect that would cause a problem. Please echo or print the value of $CMD and paste the result here. I do not see backquotes in the actual command, which would have caused a problem. The error message does show bac...
by iwantmedia
2016-05-30T12:23:56-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

I've check the php file and all seems ok. I have added the path to convert and the result is still the same. I have spoken with the hosting provider and they have tested imagemagick and said they did all checks when updated and recompiled lcms etc. I can't believe how many hours i have spent playing...
by iwantmedia
2016-05-28T08:58:02-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

The site is hosted on a Linux shared server with heart internet. How would I check if the php file characters are corrupt? I've tried escaping the quotes both single & double but it doesn't change anything. How do you add the full path on the convert command? Can lcms be added to a shared server...
by iwantmedia
2016-05-26T15:08:55-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

No I'm using local image links. The http is just for user reference to view the resources. Ok I just wanted to see of anyone would be willing to take a look because my client is getting worried the main feature of his site isn't working & could be losing custom & I have spent hours altering ...
by iwantmedia
2016-05-26T13:28:18-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

Try running my command above with actual images and values and not variables. Also remove the new line \ at the end of each line above so that it is one long command on one line. Leave the \ before the parens. What are the error messages for that? Here is the code i am running... $array=array(); ex...
by iwantmedia
2016-05-26T12:40:06-07:00
Forum: Developers
Topic: Imagemagick PHP stopped working on update
Replies: 64
Views: 46455

Re: Imagemagick PHP stopped working on update

I'm still having the same issue, the script is running and alters the frame thickness and size depending on the users selections however it just doesn't add the picture and tile it to create the picture frame.

Very frustrating.