Search found 11 matches
- 2018-11-23T02:59:49-07:00
- Forum: MagickWand
- Topic: MagickSetImageCompression not working
- Replies: 17
- Views: 229920
Re: MagickSetImageCompression not working
Version 6.9.9-34 works fine.
- 2018-02-12T02:03:01-07:00
- Forum: MagickWand
- Topic: MagickSetImageCompression not working
- Replies: 17
- Views: 229920
Re: MagickSetImageCompression not working
I found it.
I must use version 6.6.4-Q16 and not 6.9.9-27 Q8.
Version 6.9.9-27 Q8 failed to create 8 bits single channel.
I must use version 6.6.4-Q16 and not 6.9.9-27 Q8.
Version 6.9.9-27 Q8 failed to create 8 bits single channel.
- 2018-02-08T04:34:48-07:00
- Forum: MagickWand
- Topic: MagickSetImageCompression not working
- Replies: 17
- Views: 229920
Re: MagickSetImageCompression not working
The corrected program does not create 8 bits single channel any more.
Source code not changed.
Only i deinstalled all ImageMagick versions to reinstall V6 clean.
I do not understand why the corrected program suddenly create 24 bits images (8/hannel 3 channel).
Any idea what is gone wrong?
Version ...
Source code not changed.
Only i deinstalled all ImageMagick versions to reinstall V6 clean.
I do not understand why the corrected program suddenly create 24 bits images (8/hannel 3 channel).
Any idea what is gone wrong?
Version ...
- 2018-01-16T06:54:36-07:00
- Forum: MagickWand
- Topic: MagickSetImageCompression not working
- Replies: 17
- Views: 229920
Re: MagickSetImageCompression not working
Perfect, MagickSetCompression is the right one, now everything is ok.
I could convert the image to 8 bits single channel no compression.
Thank you for your help.
I could convert the image to 8 bits single channel no compression.
Thank you for your help.
- 2018-01-15T09:17:28-07:00
- Forum: MagickWand
- Topic: MagickSetImageCompression not working
- Replies: 17
- Views: 229920
Re: MagickSetImageCompression not working
sorry but compression is set to : '8-Bit RLE' it must be set to 'None'
- 2018-01-15T08:18:53-07:00
- Forum: MagickWand
- Topic: MagickSetImageCompression not working
- Replies: 17
- Views: 229920
Re: MagickSetImageCompression not working
I rearranged the instruction as you worte but i get 24 bits instead of 8.
It does not work using C API but strangly works for command line.
Anyway thanks for your help.
It does not work using C API but strangly works for command line.
Anyway thanks for your help.
- 2018-01-15T07:32:13-07:00
- Forum: MagickWand
- Topic: MagickSetImageCompression not working
- Replies: 17
- Views: 229920
Re: MagickSetImageCompression not working
Do you mean that ImageMagick can not create 8 bit single channel 256 colors ?
Then please look at the following command line: it creates correctly 8 bit single channel
"C:\Program Files\ImageMagick-7.0.2-Q8\magick" tmp.bmp -resample 500x500 -resize 344x360 -grayscale Rec601Luma -depth 8
-alpha ...
Then please look at the following command line: it creates correctly 8 bit single channel
"C:\Program Files\ImageMagick-7.0.2-Q8\magick" tmp.bmp -resample 500x500 -resize 344x360 -grayscale Rec601Luma -depth 8
-alpha ...
- 2018-01-15T03:24:39-07:00
- Forum: MagickWand
- Topic: MagickSetImageCompression not working
- Replies: 17
- Views: 229920
Re: MagickSetImageCompression not working
Hi,
I am back again.
Our machine does not accept the 24bits image.
I found out some interresting docs in https://www.imagemagick.org/script/porting.php#imv7
It is stated there the following:
Grayscale
Previously, grayscale images were Rec601Luminance and consumed 4 channels: red, green, blue, and ...
I am back again.
Our machine does not accept the 24bits image.
I found out some interresting docs in https://www.imagemagick.org/script/porting.php#imv7
It is stated there the following:
Grayscale
Previously, grayscale images were Rec601Luminance and consumed 4 channels: red, green, blue, and ...
- 2017-12-19T07:42:54-07:00
- Forum: MagickWand
- Topic: MagickSetImageCompression not working
- Replies: 17
- Views: 229920
Re: MagickSetImageCompression not working
Okay,
I will make a try to pass the image to our machine.
If it can process it then everything is ok.
Thanks.
I will make a try to pass the image to our machine.
If it can process it then everything is ok.
Thanks.
- 2017-12-18T07:11:23-07:00
- Forum: MagickWand
- Topic: MagickSetImageCompression not working
- Replies: 17
- Views: 229920
Re: MagickSetImageCompression not working
Thanks for your reply.
You'r right. Now i have version 7 clean reinstalled (destroying all version 6 directories),
and use 'MagickWand\MagickWand.h'. The 'biCompression' is set now correctly to 0.
But the result image is 24 bit and not 8 bit as i explicitly used MagickSetImageDepth(wand,
.
You'r right. Now i have version 7 clean reinstalled (destroying all version 6 directories),
and use 'MagickWand\MagickWand.h'. The 'biCompression' is set now correctly to 0.
But the result image is 24 bit and not 8 bit as i explicitly used MagickSetImageDepth(wand,

- 2017-12-15T04:48:21-07:00
- Forum: MagickWand
- Topic: MagickSetImageCompression not working
- Replies: 17
- Views: 229920
MagickSetImageCompression not working
Hi,
Using C API I want to convert a .bmp file to a .bmp with the following properties:
color depth 8bits
colorspace grayScale
resolution 500x500 ppi
size 344x360
NoCompression
According to bitmap file format referenced in https://en.wikipedia.org/wiki/BMP_file_format:
The C API converted image ...
Using C API I want to convert a .bmp file to a .bmp with the following properties:
color depth 8bits
colorspace grayScale
resolution 500x500 ppi
size 344x360
NoCompression
According to bitmap file format referenced in https://en.wikipedia.org/wiki/BMP_file_format:
The C API converted image ...