isImageAlphaExist static method
檢查是否有alpha通道
Implementation
static bool isImageAlphaExist(Uint8List imageBytes) {
// Load the image
final image = decodeImage(imageBytes);
if (image == null) {
print('Failed to load image.');
throw Exception('Failed to load image.');
}
return image.hasAlpha;
}