Search found 7 matches
- 2015-11-20T02:08:57-07:00
- Forum: Users
- Topic: grayscale to color
- Replies: 16
- Views: 7017
Re: grayscale to color
fmw42: Thank you very much for your assistance
- 2015-11-19T01:17:55-07:00
- Forum: Users
- Topic: grayscale to color
- Replies: 16
- Views: 7017
Re: grayscale to color
After command:
convert -channel Green -fill white -colorize 100% +channel in.png out.png
all grayscale pixels are white (255,255,255)
After command:
convert -channel Green -threshold -1 +channel in.png out.png
all image is white
convert -channel Green -fill white -colorize 100% +channel in.png out.png
all grayscale pixels are white (255,255,255)
After command:
convert -channel Green -threshold -1 +channel in.png out.png
all image is white
- 2015-11-19T01:04:40-07:00
- Forum: Users
- Topic: grayscale to color
- Replies: 16
- Views: 7017
Re: grayscale to color
1. As I understand, -colorize option needs some parameter
2. Unrecognized option (-separate)
2. Unrecognized option (-separate)
- 2015-11-19T00:51:40-07:00
- Forum: Users
- Topic: grayscale to color
- Replies: 16
- Views: 7017
Re: grayscale to color
fmw47: I receive "convert: Missing value (-colorize)" message
- 2015-11-18T23:39:17-07:00
- Forum: Users
- Topic: grayscale to color
- Replies: 16
- Views: 7017
Re: grayscale to color
Version: @(#)ImageMagick 5.4.1 12/01/01 Q:16 http://www.imagemagick.org Copyright: Copyright (C) 2001 ImageMagick Studio Usage: convert [options ...] file [ files... ] output_file Where options include: -adjoin join images into a single multi-image file -affine matrix drawing transform matrix ...
- 2015-11-18T21:48:19-07:00
- Forum: Users
- Topic: grayscale to color
- Replies: 16
- Views: 7017
Re: grayscale to color
Thank you, fmw42 and snibgo. Unfortunately, both your solutions don't work for my (-separate, -evaluate options don't exist ...)
- 2015-11-18T01:52:02-07:00
- Forum: Users
- Topic: grayscale to color
- Replies: 16
- Views: 7017
grayscale to color
I have old version of ImageMagick (5.4.1), unfortunately I can not upgrade to newer version because 5.4.1 is the latest version available for my platform (SGI IRIX 6.5). I have grayscale image and i want for every pixel replace Green value to 255 without change Red and Blue channels. For example RGB ...