decode Image Bitmap
Android implementation for decoding image ByteArray to ImageBitmap. Uses BitmapFactory to decode the bytes and converts to Compose ImageBitmap.
Platform-specific implementation for decoding image ByteArray to ImageBitmap. On Android, uses BitmapFactory to decode and converts to ImageBitmap. On iOS, uses UIImage and converts to ImageBitmap.
Return
ImageBitmap if decoding succeeds, null otherwise
Parameters
image Data
ByteArray containing image data (PNG, JPEG, etc.)