You are unclear by what you mean by annotations.
If you annotate the image the text is part of the image, so you can't 'loose' the text!
Search found 8887 matches
- 2006-03-02T21:28:56-07:00
- Forum: Users
- Topic: Convert TIFF with annotations to JPG
- Replies: 1
- Views: 14802
- 2006-03-02T21:06:36-07:00
- Forum: Users
- Topic: Wrapping frame image around a picture?
- Replies: 3
- Views: 18154
Sounds like a good example to add to the 'thumbnails' page for 'extra fluff' See http://www.cit.gu.edu.au/~anthony/graphics/imagick6/thumbnails/#fancy for an example that is fairly close. Instead of using border to generate the bulk of the border, you would tile the image onto a working canvas the ...
- 2006-03-02T21:01:46-07:00
- Forum: Users
- Topic: Using lookup table for -fx"". (New user question)
- Replies: 5
- Views: 32085
--- 1 ---
That is fine, if your IM txt image header says it uses that value range.
--- 2---
That header appears fine.
--- 3 ---
Yes.
See the IM example link I pointed out above. for LUT usage.
For Txt Image useage see..
http://www.cit.gu.edu.au/~anthony/graph ... files/#txt
That is fine, if your IM txt image header says it uses that value range.
--- 2---
That header appears fine.
--- 3 ---
Yes.
See the IM example link I pointed out above. for LUT usage.
For Txt Image useage see..
http://www.cit.gu.edu.au/~anthony/graph ... files/#txt
- 2006-03-01T22:20:02-07:00
- Forum: Users
- Topic: Resizing image
- Replies: 1
- Views: 14387
See Annotating Images Examples...
http://www.cit.gu.edu.au/~anthony/graph ... /#labeling
http://www.cit.gu.edu.au/~anthony/graph ... /#labeling
- 2006-03-01T22:16:52-07:00
- Forum: Users
- Topic: how to draw a transparent shape with Magick::draw()
- Replies: 2
- Views: 20424
Im is attempting to fill with the transparent color, however the image you created does not have an alpha channel to handle a transparent color. As " none " is actually fully-transparent black, the fill color comes out as black. To fix add a -matte option before your -draw to ensure the image has a ...
- 2006-02-28T23:03:39-07:00
- Forum: Users
- Topic: Screen Capture URL
- Replies: 1
- Views: 19768
A program to fire up browsers then screen capture them automatically was published in the IM mail lists some time ago.
I have placed it online at
http://www.cit.gu.edu.au/~anthony/graph ... t_webpages
I have not tested or expolored it. You at own risk.
I have placed it online at
http://www.cit.gu.edu.au/~anthony/graph ... t_webpages
I have not tested or expolored it. You at own risk.
- 2006-02-19T18:06:01-07:00
- Forum: Users
- Topic: How to print image widht or heigth?
- Replies: 0
- Views: 11913
Code: Select all
identify image
- 2006-02-19T18:04:49-07:00
- Forum: Users
- Topic: How can i make color on image transparent using GDlib?
- Replies: 0
- Views: 11898
- 2006-02-19T18:00:39-07:00
- Forum: Users
- Topic: Taking Screen Caps of a movie file.
- Replies: 1
- Views: 16785
- 2006-02-19T17:06:11-07:00
- Forum: Users
- Topic: Set the opacity of an image/colour
- Replies: 0
- Views: 12224
Fisrt just changing the specific color WILL NOT WORK! This will not take into account that the image contains anti-aliased pixels that is various shades of grey along the edges of the text to make it look smoother without staircase 'jaggies'. A black and white image like this should be thought of as ...
- 2006-02-19T17:01:12-07:00
- Forum: Users
- Topic: how to specify size of images in a composite
- Replies: 3
- Views: 27840
As I mentioned, once the next point release comes out you will not need the parenthesis for -geometry resize, as it will resize ONLY the last image in the current image sequence, rather than all the images as a normal -resize does. If you want to may sure -geometry works as expected for all IM v6 ...
- 2006-02-19T16:54:06-07:00
- Forum: Users
- Topic: Using lookup table for -fx"". (New user question)
- Replies: 5
- Views: 32085
First of all the IM "txt:" image format only uses intergers and not floating point. so you can not use numbers in the 0.0 to 1.0 range. You can use numbers from 0 to 255 or 0 to 65535 however (the later will only work on a Q16 version of IM, not a Q8 ). Second the header is vital. It first tells IM ...
- 2006-02-19T16:39:15-07:00
- Forum: Users
- Topic: jpeg rotate lossless or not?
- Replies: 9
- Views: 44223
You can not rotate a jpeg losslessly using IM, or any image program that actually reads and writes the image data. However the libjpeg library installation has a jpegtran program that adjusts the jpeg data to rotate it without actaullay reading and writing the image. IE it can do it losslessly. The ...
- 2006-02-16T21:44:22-07:00
- Forum: Users
- Topic: revealing an image pixel by pixel
- Replies: 0
- Views: 13434
- 2006-02-16T21:25:18-07:00
- Forum: Users
- Topic: three jpegs adjoin to one jpg
- Replies: 0
- Views: 13603
What command did you use..
Did you try -mode concatanate
A better way if you just want to append them side by side and they are already all the same height is o use..
Did you try -mode concatanate
A better way if you just want to append them side by side and they are already all the same height is o use..
Code: Select all
convert logo_p?.jpg +append result.jpg