iptc_profile)));
}
+bool Magick::Image::isOpaque(void) const
+{
+ MagickBooleanType
+ result;
+
+ GetPPException;
+ result=IsImageOpaque(constImage(),exceptionInfo);
+ ThrowImageException;
+ return(result != MagickFalse ? true : false);
+}
+
void Magick::Image::isValid(const bool isValid_)
{
if (!isValid_)
void iptcProfile(const Blob &iptcProfile_);
Blob iptcProfile(void) const;
+ // Returns true if none of the pixels in the image have an alpha value
+ // other than OpaqueAlpha (QuantumRange).
+ bool isOpaque(void) const;
+
// Does object contain valid image?
void isValid(const bool isValid_);
bool isValid(void) const;
using MagickCore::InvokeDynamicImageFilter;
using MagickCore::IsEventLogging;
using MagickCore::IsGeometry;
+ using MagickCore::IsImageOpaque;
using MagickCore::IsImagesEqual;
using MagickCore::KuwaharaImage;
using MagickCore::LevelImage;