Search found 6 matches
- 2011-11-15T19:20:39-07:00
- Forum: Users
- Topic: annotate with inverted text colors?
- Replies: 7
- Views: 12904
Re: annotate with inverted text colors?
Good point. Perhaps a shadow under that annotation?
- 2011-11-15T13:05:27-07:00
- Forum: Users
- Topic: annotate with inverted text colors?
- Replies: 7
- Views: 12904
Re: annotate with inverted text colors?
Great work, Fred! Thanks!
- 2011-11-15T11:00:54-07:00
- Forum: Users
- Topic: annotate with inverted text colors?
- Replies: 7
- Views: 12904
Re: annotate with inverted text colors?
Thanks. Would there be any sane way to do this with annotate or something similarly simple? The text is just pixel text.
- 2011-11-15T09:54:02-07:00
- Forum: Users
- Topic: annotate with inverted text colors?
- Replies: 7
- Views: 12904
annotate with inverted text colors?
I would like to put a small watermark on images.
I would like the color of the text to be an inversion of the colors below it, on a pixel by pixel level, thereby insuring it showed up on everything.
Is this possible?
I would like the color of the text to be an inversion of the colors below it, on a pixel by pixel level, thereby insuring it showed up on everything.
Is this possible?
- 2010-08-26T03:33:54-07:00
- Forum: Users
- Topic: fade image to transparency?
- Replies: 5
- Views: 13101
Re: fade image to transparency?
Here's a goofy version that works. #!/bin/bash h=100 # Get width w=`convert source.jpg -format "%w" info:` # Create gradient convert -size ${w}x$h gradient:black-none alpha_grad_src.png # Crop and apply gradient convert source.jpg -crop ${w}x${h}+0+0 \ alpha_grad_src.png -compose CopyOpacity ...
- 2010-08-26T02:26:51-07:00
- Forum: Users
- Topic: fade image to transparency?
- Replies: 5
- Views: 13101
fade image to transparency?
I have a jpg with an arbitrary size.
using the commandline, I'd like to:
1. Crop the image at 100px height
2. Fade the last 30% of the image into transparency
3. Save as png
I've been reading the documentation for hours, but I can't figure this out for the life of me. How can I do this?
using the commandline, I'd like to:
1. Crop the image at 100px height
2. Fade the last 30% of the image into transparency
3. Save as png
I've been reading the documentation for hours, but I can't figure this out for the life of me. How can I do this?