Search found 21 matches

by ggking7
2012-05-06T09:37:18-07:00
Forum: Users
Topic: convert command stopped working (partially)
Replies: 6
Views: 11357

convert command stopped working (partially)

I've been using the following command in a perl script for a long time: system(qq{convert images/"$sku".jpg -resize "$width"x"$height" -alpha set -virtual-pixel transparent -channel A -blur 0x10 -level 50%,100% +channel -background white -flatten -quantize RGB -quality ...
by ggking7
2011-01-11T19:46:00-07:00
Forum: PerlMagick
Topic: Deconstructing "Soft Edges"
Replies: 2
Views: 10681

Re: Deconstructing "Soft Edges"

This should work but it just doesn't: $image->Set(alpha=>'Set'); $image->Set('virtual-pixel'=>'Transparent'); $image->Blur(geometry=>'0x8',channel=>'A'); $image->Level(levels=>'50%,100%',channel=>'A'); I'm trying to replicate this: convert thumbnail.gif -alpha set -virtual-pixel transparent -channel...
by ggking7
2011-01-10T17:10:00-07:00
Forum: PerlMagick
Topic: Deconstructing "Soft Edges"
Replies: 2
Views: 10681

Deconstructing "Soft Edges"

I'm trying to deconstruct this line from the examples so I can convert it to Perlmagick: convert thumbnail.gif -alpha set -virtual-pixel transparent -channel A -blur 0x8 -level 50%,100% +channel soft_edge.png Can someone tell me the sequence of events? I have these Perlmagick commands: $image->Set(a...
by ggking7
2010-11-15T17:13:31-07:00
Forum: PerlMagick
Topic: Soft edges
Replies: 2
Views: 9982

Re: Soft edges

Thanks fmw42. Can any PerlMagick experts out there point me in the right direction?
by ggking7
2010-11-15T15:12:40-07:00
Forum: PerlMagick
Topic: Soft edges
Replies: 2
Views: 9982

Soft edges

Can anyone show me how to use soft edges with PerlMagick?

http://www.imagemagick.org/Usage/thumbnails/#soft_edges

I'm looking for something along the lines of this:

http://www.imagemagick.org/Usage/thumbn ... t_edge.png

I don't want to use true transparency because I'll be saving in JPG format.
by ggking7
2010-11-15T13:25:58-07:00
Forum: Users
Topic: Faded border
Replies: 2
Views: 6885

Faded border

I'd like to use imagemagick to create a border that fades to the desired color. Gimp has something like this at Filters->Decor->Fuzzy Border:

http://docs.gimp.org/en/script-fu-fuzzy-border.html

Can this be done in imagemagick?