/** @since Available in iOS 8.0 and later. */ public boolean isAlphaChannelOpaque() { if (has(CVImageBufferAttribute.AlphaChannelIsOpaque)) { CFBoolean val = get(CVImageBufferAttribute.AlphaChannelIsOpaque, CFBoolean.class); return val.booleanValue(); } return false; }