CImg icon indicating copy to clipboard operation
CImg copied to clipboard

RGBA Image

Open Mikez2015 opened this issue 3 years ago • 0 comments

Hello. I try draw circle to RGBA Image:


      	cimg_library::CImg<unsigned char> src(pixels, 4096, 4096, 1, 4, true);
	const unsigned char color_Green[] = { 0,255,0 };
	src.fill(75);
	src.draw_circle(2048, 2048, 4096/4, color_Green);

voronoi2_512

Mikez2015 avatar Sep 10 '21 06:09 Mikez2015