/** @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; }
/** @since Available in iOS 8.0 and later. */ public CVImageBufferAttributes setAlphaChannelOpaque(boolean alphaChannelOpaque) { set(CVImageBufferAttribute.AlphaChannelIsOpaque, CFBoolean.valueOf(alphaChannelOpaque)); return this; }