Search found 3 matches
- 2014-08-20T06:48:51-07:00
- Forum: Users
- Topic: Magic++ vs MagickWand vs MagickCore
- Replies: 1
- Views: 1837
Magic++ vs MagickWand vs MagickCore
Hello folks, at the moment I'm using convert.exe as an external command from a C++ application. I'm trying to improve the overall performance of the application, so I want to use an API instead. The image transformations I use are not very complicated, such as changing bitdepth, resolution, rotating ...
- 2014-01-27T04:48:40-07:00
- Forum: Users
- Topic: Magick++ bitdepth for monochrome BMP
- Replies: 1
- Views: 1730
Re: Magick++ bitdepth for monochrome BMP
seems that setting the depth does not function at all
I managed to reduce bitdepth using quantize, but as far as I understood this function always optimizes the depth, so if I'm asking for a RGB image but the input content is B/W or grayscale I will not get the resulting bitdepth I need.
I managed to reduce bitdepth using quantize, but as far as I understood this function always optimizes the depth, so if I'm asking for a RGB image but the input content is B/W or grayscale I will not get the resulting bitdepth I need.
- 2014-01-24T10:07:45-07:00
- Forum: Users
- Topic: Magick++ bitdepth for monochrome BMP
- Replies: 1
- Views: 1730
Magick++ bitdepth for monochrome BMP
Hello folks, I cannot manage to transform a monochrome tiff loaded from disk in an Image object into a bitmap with 1 bit per pixel. I'm using Magick++, not the command line tool. I tried with image.depth(1) also with image.type(BilevelType) when getting the depth it was correct, but after writing ...