Search found 5 matches
- 2013-08-26T14:27:48-07:00
- Forum: Users
- Topic: watermark just 2nd page of tiff and keeping both pages
- Replies: 12
- Views: 19608
Re: watermark just 2nd page of tiff and keeping both pages
So it would be " label:" and not "-label:" but "-composite" and not " composite" . okaaay. Thanks.
Not quite, note the blue
convert image.tiff ^
( -clone 1 -background none -fill somecolor -font somefont -pointsize somepointsize label: @c:\wip\Text2Show.txt ) ^
-gravity North -geometry +X+Y ...
- 2013-08-26T12:56:17-07:00
- Forum: Users
- Topic: watermark just 2nd page of tiff and keeping both pages
- Replies: 12
- Views: 19608
Re: watermark just 2nd page of tiff and keeping both pages
convert %1 ( -clone 1 composite -label:@c:\wip\Text2Show.txt -gravity North %1 %2\%1 ) -delete 1 %1
See my post above. You cannot put composite in a convert command nor another convert . Also it is not -label: but just label:
convert image.tiff ^
( -clone 1 -background none -fill somecolor -font ...
See my post above. You cannot put composite in a convert command nor another convert . Also it is not -label: but just label:
convert image.tiff ^
( -clone 1 -background none -fill somecolor -font ...
- 2013-08-26T10:02:27-07:00
- Forum: Users
- Topic: watermark just 2nd page of tiff and keeping both pages
- Replies: 12
- Views: 19608
Re: watermark just 2nd page of tiff and keeping both pages
If you want the text to be readable, this isn't really a watermark. Watermarks are generally designed to be hardly visible at all.
See http://www.imagemagick.org/Usage/text/ for lots of possibilities.
using ImageMagick-6.8.6-9 . So I should use
convert %1 ( -clone 1 composite -label:@c:\wip ...
- 2013-08-25T17:59:12-07:00
- Forum: Users
- Topic: watermark just 2nd page of tiff and keeping both pages
- Replies: 12
- Views: 19608
Re: watermark just 2nd page of tiff and keeping both pages
Thanks for the replies, I didn't expect them so quickly so had not turned on the tiff pc :) .
I was hoping that one of the scripting languages would be able to call an object reference to the 2nd page, but if not doable then batch file it is.
I need the files to keep their names as they will be ...
I was hoping that one of the scripting languages would be able to call an object reference to the 2nd page, but if not doable then batch file it is.
I need the files to keep their names as they will be ...
- 2013-08-25T16:13:44-07:00
- Forum: Users
- Topic: watermark just 2nd page of tiff and keeping both pages
- Replies: 12
- Views: 19608
watermark just 2nd page of tiff and keeping both pages
I have been unable to figure out a DOS command line to
take a 2 page tiff
put a watermark on just the 2nd page of the tiff (annotate would be fine too)
save resulting tiff with both pages , preferably as a 'Save As' to replace the original tiff.
We have many tiffs to process each day, so batching ...
take a 2 page tiff
put a watermark on just the 2nd page of the tiff (annotate would be fine too)
save resulting tiff with both pages , preferably as a 'Save As' to replace the original tiff.
We have many tiffs to process each day, so batching ...