Re: Quicky convert shape files to images

2013-02-24 Thread Killian De Volder
-filter cubic -define filter:b=1.3 -define filter:c=1.3 <= This seems to produce sharper results. Killian De Volder On 24-02-13 18:58, Killian De Volder wrote: Wanted to convert shape files fast, came up with this: #!/bin/bash import $1 convert -fuzz 15% -trim \ -filter cubic -resize 190x190

Re: Quicky convert shape files to images

2013-02-24 Thread Killian De Volder
Yes Killian De Volder On 24-02-13 20:30, Andrey Repin wrote: Greetings, Killian De Volder! PS results look like this: On 24-02-13 18:58, Killian De Volder wrote: Wanted to convert shape files fast, came up with this: Is this ImageMagick? #!/bin/bash import $1 convert -fuzz 15% -trim \ -f

Re: Quicky convert shape files to images

2013-02-24 Thread Andrey Repin
Greetings, Killian De Volder! > PS results look like this: > On 24-02-13 18:58, Killian De Volder wrote: >> Wanted to convert shape files fast, came up with this: Is this ImageMagick? >> >> #!/bin/bash >> import $1 >> convert -fuzz 15% -trim \ >> -filter cubic -resize 190x190 \ >> -background w

Re: Quicky convert shape files to images

2013-02-24 Thread Killian De Volder
PS results look like this: On 24-02-13 18:58, Killian De Volder wrote: Wanted to convert shape files fast, came up with this: #!/bin/bash import $1 convert -fuzz 15% -trim \ -filter cubic -resize 190x190

Quicky convert shape files to images

2013-02-24 Thread Killian De Volder
Wanted to convert shape files fast, came up with this: #!/bin/bash import $1 convert -fuzz 15% -trim \ -filter cubic -resize 190x190 \ -background white -gravity center -extent 200x200 \ -resize 20x20 \ -gamma 0.5 \ $1 $1 #-fuzz 15% -transparent white \ #If white should be transparent #viewnior $