Search found 8 matches

by knr
2019-02-01T07:09:15-07:00
Forum: Users
Topic: Does ImageMagick support bmp 64 bit?
Replies: 2
Views: 4175

Re: Does ImageMagick support bmp 64 bit?

The Wiki links writes:
GDI+ also permits 64 bits per pixel.
and links to:
https://docs.microsoft.com/en-us/window ... le-formats
by knr
2019-01-29T06:21:03-07:00
Forum: Magick.NET
Topic: Specifying gamma when reading pixel data
Replies: 6
Views: 18744

Re: Specifying gamma when reading pixel data

Ok.

If it is not posible to specifying gamma of the pixel data I read - how do I change colorspace with out ImageMagick first removes the gamma?

From: https://imagemagick.org/script/command-line-options.php
Note, ImageMagick assumes the sRGB colorspace if the image format does not indicate ...
by knr
2019-01-25T01:46:45-07:00
Forum: Magick.NET
Topic: Specifying gamma when reading pixel data
Replies: 6
Views: 18744

Re: Specifying gamma when reading pixel data

There exists an option to set ColorSpace in ReadSettings as shown below:


PixelStorageSettings pixelStorageSettings = new PixelStorageSettings(100, 100, StorageType.Short, PixelMapping.RGB);
pixelStorageSettings.ReadSettings.ColorSpace = ColorSpace.RGB;
pixelStorageSettings.ReadSettings.ColorType ...
by knr
2019-01-25T01:38:31-07:00
Forum: Users
Topic: Does ImageMagick support bmp 64 bit?
Replies: 2
Views: 4175

Does ImageMagick support bmp 64 bit?

Does ImageMagick support bmp 64 bit?
If so how do I save as 16 bit depth rgb image as bmp.
by knr
2019-01-22T03:48:27-07:00
Forum: Magick.NET
Topic: Loading monochrome pixel into MagickImage
Replies: 2
Views: 13061

Re: Loading monochrome pixel into MagickImage

Thanks dlemstra :D
Your solution works.
by knr
2019-01-21T07:28:46-07:00
Forum: Magick.NET
Topic: Loading monochrome pixel into MagickImage
Replies: 2
Views: 13061

Loading monochrome pixel into MagickImage

I kan load/read a raw RGB pixel array into a MagickImage.


PixelStorageSettings pixelStorageSettings = new PixelStorageSettings(100, 100, StorageType.Short, PixelMapping.BGR);
var colorImage = new MagickImage(myImageDataByteArray, pixelStorageSettings);


How do I load/read a monochrome pixel ...
by knr
2019-01-21T07:21:24-07:00
Forum: Magick.NET
Topic: Specifying gamma when reading pixel data
Replies: 6
Views: 18744

Re: Specifying gamma when reading pixel data

colorImage has a Gamma property, but it is read only
and PixelStorageSettings has no Gamma setting
FYI: myImageData is a byte array
by knr
2019-01-21T04:59:07-07:00
Forum: Magick.NET
Topic: Specifying gamma when reading pixel data
Replies: 6
Views: 18744

Specifying gamma when reading pixel data

I have some RGB images with no gamma applied.
When I try to read the images like this

PixelStorageSettings pixelStorageSettings = new PixelStorageSettings(100, 100, StorageType.Short, PixelMapping.BGR);
var colorImage = new MagickImage(myImageData, pixelStorageSettings);

The resulting colorImage ...