Search found 36 matches

by Tagomago
2011-02-23T07:59:40-07:00
Forum: Users
Topic: Trouble compositing images onto effects-filled canvases
Replies: 12
Views: 25321

Trouble compositing images onto effects-filled canvases

I've taken commands from both Fred's imagemagick scripts and imagemagick tutorials that call for creating a blank canvas, applying changes to it (noise, etc.) and then combining them with the image. In each case, the final image comes out nearly identical to the originial. I must be missing somethin...
by Tagomago
2011-02-23T06:32:14-07:00
Forum: Users
Topic: photo effect - Warholize - line art
Replies: 23
Views: 51474

Re: photo effect - Warholize - line art

Thanks, that looks quite good. Dithering to 3 colors worked nicely for me as well.
by Tagomago
2011-02-21T14:02:52-07:00
Forum: Users
Topic: Recommend guides on programming/scripting?
Replies: 1
Views: 3921

Recommend guides on programming/scripting?

I'm trying to get a handle on how to combine my command sequences into workable scripts. This IM guide http://www.imagemagick.org/Usage/windows/ has so far been helpful, but some of it is a bit beyond me. I really have no scripting/programming experience and need to find some more elementary instruc...
by Tagomago
2011-02-18T07:57:51-07:00
Forum: Users
Topic: photo effect - Warholize - line art
Replies: 23
Views: 51474

Re: photo effect - Warholize - line art

Below is the rough version of how I got a Warhol style image. Question, though: could anyone point me to a guide on combining this many commands in windows command prompt? Or, put another way, is it possible to create and manipulate four seperate images within the same command? I'm hoping to do batc...
by Tagomago
2011-02-18T07:46:49-07:00
Forum: Fred's Scripts
Topic: Scripts problems - IM and Cygwin
Replies: 33
Views: 189819

Re: Scripts problems - IM and Cygwin

Well... thanks for all the effort. I suppose I have settings wrong somewhere?
by Tagomago
2011-02-17T14:24:06-07:00
Forum: Users
Topic: Charcoal transformation - but how about chalk/pastel?
Replies: 5
Views: 11843

Re: Charcoal transformation - but how about chalk/pastel?

Thanks, the first three only came out as two colors, which is why I was stuck when I did that method. But, I got the gradient made and got it applied to the image. I'm sure you know, though, that the result is wacky, just chunks of crude RGB color fitted to the darkness and lightness of the B&W ...
by Tagomago
2011-02-17T14:09:46-07:00
Forum: Bugs
Topic: Possible bug with spread on windows 7
Replies: 2
Views: 6235

Possible bug with spread on windows 7

Hi, I've been trying the spread command on IM 6.6.7.7 Q16. IM is running on a Dell Precision T3500 with windows 7 (quad core E5507 processor, 4gigs ram if that matters) This is my input: convert rose: -spread 3 rose_spread3.png or: Convert test.jpg -spread 3 spread.png In both cases, as well as othe...
by Tagomago
2011-02-17T13:55:53-07:00
Forum: Users
Topic: Charcoal transformation - but how about chalk/pastel?
Replies: 5
Views: 11843

Re: Charcoal transformation - but how about chalk/pastel?

I'm looking over both pages and having a hard time understanding just how I can generate the rainbow/lut and then use it to color the an image. I followed enough to use the +level-colors operator, but I'm not clear on how to completely re-color an image. Example: convert charcoal.jpg +level-colors r...
by Tagomago
2011-02-17T13:12:07-07:00
Forum: Users
Topic: How was this imagemagick pointillism effect created?
Replies: 14
Views: 28829

Re: How was this imagemagick pointillism effect created?

So strange... I just reinstalled imagemagick with the latest version, and put in your exact commands. Same result: big block of yellow.
by Tagomago
2011-02-17T12:25:17-07:00
Forum: Users
Topic: Charcoal transformation - but how about chalk/pastel?
Replies: 5
Views: 11843

Charcoal transformation - but how about chalk/pastel?

I've wondering if there is a way to imitate chalk pastel with imagemagick. I could imagine a color charcoal transformation coming close, but does the charcoal transformation necessitate turning an image B&W? In photoshop, there are filters to apply chalk strokes, brush strokes, etc. I don't know...
by Tagomago
2011-02-17T12:18:58-07:00
Forum: Users
Topic: How was this imagemagick pointillism effect created?
Replies: 14
Views: 28829

Re: How was this imagemagick pointillism effect created?

I'm working with IM 6.6.7.5 Just tried a new Image, located http://cvcl.mit.edu/hybrid/cat2.jpg In doing that I found that the output is the average color of the image. (I got a big block of yellow for this, grey for another.) I tried different values and got the same result. This is with both png a...
by Tagomago
2011-02-17T10:29:23-07:00
Forum: Users
Topic: How was this imagemagick pointillism effect created?
Replies: 14
Views: 28829

Re: How was this imagemagick pointillism effect created?

Is there a bug with spread? I've tried

convert rose: -spread 3 rose_spread3.png

Result: small green square.

Convert test.jpg -spread 3 spread.png

Result: all grey image.
Those results are on both windows and Cygwin.
by Tagomago
2011-02-17T07:00:48-07:00
Forum: Fred's Scripts
Topic: Scripts problems - IM and Cygwin
Replies: 33
Views: 189819

Re: Scripts problems - IM and Cygwin

fmw45: both tests were true Anthony: I changed that portion of script to: if [ "06060705" -ge "06040805" ] && echo "true"; then # create multi-image miff (sine tmpA1 cosine), then pass to composite -displace convert $tmp0 \ -channel R -evaluate sine $density \ -...
by Tagomago
2011-02-16T13:50:25-07:00
Forum: Users
Topic: Resize width to x pixels while keeping w/h ration
Replies: 2
Views: 64615

Re: Resize width to x pixels while keeping w/h ration

convert -resize [desired width] input.jpg output.jpg will keep proportions.
by Tagomago
2011-02-16T13:17:54-07:00
Forum: Fred's Scripts
Topic: Scripts problems - IM and Cygwin
Replies: 33
Views: 189819

Re: Scripts problems - IM and Cygwin

I doublechecked and the script I'm using does say " [ "$im_version" -ge "06040805" ] " and 06060705 appears nowhere. (Of course, that is the IM version I have) Here are the test results: a=1 if [ $a -ge 1 ]; then True b="a" if [ "$b" == "a"...