color of new image is not right

Magick++ is an object-oriented C++ interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick++.
Post Reply
9tontruck
Posts: 2
Joined: 2012-07-19T17:13:06-07:00
Authentication code: 15

color of new image is not right

Post by 9tontruck »

Here is my code:

Code: Select all

	ColorRGB d;
	d.blue(240.0);
	d.green(210.0);
	d.red(8.0);
	d.alpha(0);
	Image image(Geometry(width, height), d);
	image.write("01.jpg");
The written image is not correct..
in case of "#define MAGICKCORE_QUANTUM_DEPTH 8" output image is (rgb = 0,1,47) which does not make sense.
in case of "#define MAGICKCORE_QUANTUM_DEPTH 16" output image is always black

Can anyone please tell me which part is wrong in my code?
Post Reply