我有以下代码:
private static byte[] accessBytes(Bitmap image)
// access the data bytes in the image
{
WritableRaster raster = image.getRaster();
DataBufferByte buffer = (DataBufferByte) raster.getDataBuffer();
return buffer.getData();
} // end of accessBytes()
我想转换此代码,以便它可以在我的 android 应用程序中运行,有什么办法可以做到吗?我也有java中的工作代码,我可以制作这个代码的类库然后导入android吗?这行得通吗?