Page 1 of 1

Re: [Magick++] Transparency

Posted: 2007-10-28T09:02:37-07:00
by el_supremo
I think you'd be better off not using the Draw methods. I don't know how to code this in C++ but this C code composites a transparent signature over a non-transparent base image. Maybe you can translate it to its equivalent in C++.

Code: Select all

	// Read the base image
	m_wand = NewMagickWand();
	MagickReadImage(m_wand,"logo:");

	/* Read the signature image */
	a_wand = NewMagickWand();
	MagickReadImage(a_wand,"sig.png");

	// Composite the signature over the base image
	MagickCompositeImage(m_wand,a_wand,OverCompositeOp,0,0);
	/* Write it out */
	MagickWriteImage(m_wand,"logo_sig.png");
Pete