Skip to content

Instantly share code, notes, and snippets.

@nacho4d
Last active December 19, 2015 11:28
Show Gist options
  • Save nacho4d/5947513 to your computer and use it in GitHub Desktop.
Save nacho4d/5947513 to your computer and use it in GitHub Desktop.
CGImageAlphaInfo and CGBitmapInfo
Binary Int Name
-- --------- --------- --------- --------- --------- -------- ----------------
0x 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0 kCGImageAlphaNone
0x 0000 0000 0000 0000 0000 0000 0000 0000 0000 0001 1 kCGImageAlphaPremultipliedLast
0x 0000 0000 0000 0000 0000 0000 0000 0000 0000 0010 2 kCGImageAlphaPremultipliedFirst
0x 0000 0000 0000 0000 0000 0000 0000 0000 0000 0011 3 kCGImageAlphaLast
0x 0000 0000 0000 0000 0000 0000 0000 0000 0000 0100 4 kCGImageAlphaFirst
0x 0000 0000 0000 0000 0000 0000 0000 0000 0000 0101 5 kCGImageAlphaNoneSkipLast
0x 0000 0000 0000 0000 0000 0000 0000 0000 0000 0110 6 kCGImageAlphaNoneSkipLast
0x 0000 0000 0000 0000 0000 0000 0000 0000 0000 0111 7 ---
0x 0000 0000 0000 0000 0000 0000 0000 0000 0001 1111 1f kCGBitmapAlphaInfoMask
0x 0000 0000 0000 0000 0000 0000 0000 0001 0000 0000 1 << 8 kCGBitmapFloatComponents
0x 0000 0000 0000 0000 0000 0000 0111 0000 0000 0000 0x07000 kCGBitmapByteOrderMask
0x 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0 << 12 kCGBitmapByteOrderDefault
0x 0000 0000 0000 0000 0000 0000 0001 0000 0000 0000 1 << 12 kCGBitmapByteOrder16Little
0x 0000 0000 0000 0000 0000 0000 0010 0000 0000 0000 2 << 12 kCGBitmapByteOrder32Little
0x 0000 0000 0000 0000 0000 0000 0011 0000 0000 0000 3 << 12 kCGBitmapByteOrder16Big
0x 0000 0000 0000 0000 0000 0000 0100 0000 0000 0000 4 << 12 kCGBitmapByteOrder32Big
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment