Search found 7 matches

by bcbounders
2013-10-07T15:41:17-07:00
Forum: Developers
Topic: Speed up generation of multiple images
Replies: 10
Views: 9529

Re: Speed up generation of multiple images

@fmw42,

You rock! That did the trick! I tested it first without the PHP variables being inserted and it worked, no problem. Now I've got my variables being inserted again... and all is right with the world.

Thanks, again, for taking the time to help out!

Really appreciate it.

- John
by bcbounders
2013-10-06T15:59:45-07:00
Forum: Developers
Topic: Speed up generation of multiple images
Replies: 10
Views: 9529

Re: Speed up generation of multiple images

@fmw42,

SWEET! Thanks... I'll have to give that a try... then start peppering in the PHP variables to get it to work with my front-end. I want to do it right now... but I'm running out the door for dinner, so I'm gonna have to wait. BUMMER! But I'll report back.

Thanks so much!

- John
by bcbounders
2013-10-06T15:42:07-07:00
Forum: Developers
Topic: Speed up generation of multiple images
Replies: 10
Views: 9529

Re: Speed up generation of multiple images

I think this should simplify things... Here's the stripped down code for generating the top line of text, without the PHP variables being inserted: //Create Top Line with white stroke $command = "convert -background transparent -gravity center -stroke '#fffffe' -strokewidth 13 -fill '#120255' -font ...
by bcbounders
2013-10-06T14:02:15-07:00
Forum: Developers
Topic: Speed up generation of multiple images
Replies: 10
Views: 9529

Re: Speed up generation of multiple images

Thanks, guys... will do. I'll strip out the PHP variables and post the "clean" version of the commands along with sample output.

Appreciate the help!

- John
by bcbounders
2013-10-06T11:58:29-07:00
Forum: Developers
Topic: Speed up generation of multiple images
Replies: 10
Views: 9529

Re: Speed up generation of multiple images

I'm still stuck on this... anyone out there able to give me a push? I'm not sure which of the items in the "$command" lines could be consolidated... where I need to "clone"... etc.

Help! :(
by bcbounders
2013-10-04T14:16:41-07:00
Forum: Developers
Topic: Speed up generation of multiple images
Replies: 10
Views: 9529

Re: Speed up generation of multiple images

see parenthesis processing and clones at http://www.imagemagick.org/Usage/basics/#parenthesis http://www.imagemagick.org/Usage/basics/#list_ops @fmw42, Thanks for the links. I've been checking these out for a little while (before today)... and just haven't been able to get them to work for me ...
by bcbounders
2013-10-04T13:42:54-07:00
Forum: Developers
Topic: Speed up generation of multiple images
Replies: 10
Views: 9529

Speed up generation of multiple images

Hi, I'm new to ImageMagick and could use some help. I'm running IM through PHP and have to generate two lines of outlined text. The only way that I could get it to work and look the way I wanted was to do two convert commands to generate two versions of the same text... one with a white border, then ...