Search found 4 matches
- 2016-05-12T09:41:34-07:00
- Forum: Users
- Topic: Imagemagick automatically lowering depth too far.
- Replies: 7
- Views: 4271
Re: Imagemagick automatically lowering depth too far.
The PNG developer may have other ideas to suggest. Oh sorry, I know there are multiple ways to define/talk about bit depth. I and the website are talking about 2 bits per pixel, so up to 4 different colors at once. I'd like to have my images indexed with a bit depth of 2, which works when I feed it ...
- 2016-05-11T23:23:10-07:00
- Forum: Users
- Topic: Imagemagick automatically lowering depth too far.
- Replies: 7
- Views: 4271
Re: Imagemagick automatically lowering depth too far.
Thank you for the suggestions The line convert src/gfx/test.png -define png:color-depth=2 PNG8:src/gfx/test4.png results in a png of bit-depth 8 for images that start with 3-4 colors, converting the image to a bit depth of 2 works. Sometimes it groups greys that are too close together as the same ...
- 2016-05-11T22:23:20-07:00
- Forum: Users
- Topic: Imagemagick automatically lowering depth too far.
- Replies: 7
- Views: 4271
Re: Imagemagick automatically lowering depth too far.
I'm using Windows 7 but through Cygwin. I'm outputting as png. I just tried it and that sets the depth to 8. There doesn't seem to be a PNG2: option though. yea, I'm very limited by the other software. I just tried convert src/gfx/test.png -define png:color-depth=2 -depth 2 src/gfx/test4.png and it ...
- 2016-05-11T22:03:41-07:00
- Forum: Users
- Topic: Imagemagick automatically lowering depth too far.
- Replies: 7
- Views: 4271
Imagemagick automatically lowering depth too far.
Hello! I've just started using ImageMagick so I appologize if I'm missing something simple. I'm working on a project that requires indexed pngs with a Bit Depth of 2. I'm creating the images and converting them using convert [image location 1] -depth 2 [new image location] This works perfectly for ...