Search found 5 matches

by nickharambee
2011-02-19T10:58:44-07:00
Forum: Users
Topic: Adding rounded corners of a specific colour to JPG
Replies: 11
Views: 42948

Re: Adding rounded corners of a specific colour to JPG

Hi, Thanks. I'm aware I need to do a shell script. I have previously got an ImageMagick command working in an applescript, by doing the following: set convertPath to "Macintosh HD:opt:local:bin:convert" -- setup the image magick command set convertCommand to quoted form of POSIX path of co...
by nickharambee
2011-02-19T08:18:14-07:00
Forum: Users
Topic: Adding rounded corners of a specific colour to JPG
Replies: 11
Views: 42948

Re: Adding rounded corners of a specific colour to JPG

Hi,

I'm still wondering how to integrate this ImageMagick command into an applescript, and would be grateful for any help.

Thanks

Nick
by nickharambee
2010-12-23T17:52:01-07:00
Forum: Users
Topic: Adding rounded corners of a specific colour to JPG
Replies: 11
Views: 42948

Re: Adding rounded corners of a specific colour to JPG

Sorry it's taken a while to respond. I have now had time to try both methods for achieving the coloured background corners, and this method works fine: convert thumbnail.gif \ \( +clone -alpha extract \ -draw 'fill black polygon 0,0 0,15 15,0 fill white circle 15,15 15,0' \ \( +clone -flip \) -compo...
by nickharambee
2010-12-07T11:34:29-07:00
Forum: Users
Topic: Adding rounded corners of a specific colour to JPG
Replies: 11
Views: 42948

Re: Adding rounded corners of a specific colour to JPG

Thanks for these prompt responses. I am left a little confused though by the last message. Are you saying Anthony that what I'd like to do can't be achieved by ImageMagick? Just to confirm, as the first poster seemed unsure, what I am trying to do is to add a rounded corner to JPGs, but instead of m...
by nickharambee
2010-12-06T18:39:19-07:00
Forum: Users
Topic: Adding rounded corners of a specific colour to JPG
Replies: 11
Views: 42948

Adding rounded corners of a specific colour to JPG

Hi I am using the following command line in an applescript to convert a folder of JPGs to a specific size: -resize 395x275^ -gravity center -extent 395x275 -quality 95 I would like to add some rounded corners of 5px, specifying a colour for these corners (as I wan't to keep the files as JPGs not PNG...