photochatapp
decoder
extractLastBit function
extractLastBit
photochatapp
decoder
extractLastBit function
decoder library
Functions
assembleBits
bits2bytes
decodeMessageFromImage
decodeMessageFromImageAsync
extractBitsFromImg
extractLastBit
getMockedDecodeResult
sanitizePaddingZeros
description
extractLastBit
function
int
extractLastBit
(
int
pixel
)
Implementation
int
extractLastBit(
int
pixel) {
int
lastBit = pixel &
1
;
return
lastBit; }