Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Both input images were 32Bit bitmaps, but the output was only a 24Bit bitmap instead of a 32Bit. My question is now if its possible to get a 32Bit output image and if its possible how is this archieved?
Is your 32-bit images 8bits/channel x 4 channels (rgba) or 32-bits for a single channel grayscale. If the latter, then you need to compile IM in HDRI mode. see http://www.imagemagick.org/script/high- ... -range.php. If the former then try adding -channel rgba -alpha on after reading the images.