我有一个实现 Serializable 的类 TouchPoint,因为它包含位图,所以我为该类编写了 writeObject 和 readObject:
private void writeObject(ObjectOutputStream oos) throws IOException {
long t1 = System.currentTimeMillis();
oos.defaultWriteObject();
if(_bmp!=null){
int bytes = _bmp.getWidth()*_bmp.getHeight()*4;
ByteBuffer buffer = ByteBuffer.allocate(bytes);
_bmp.copyPixelsToBuffer(buffer);
byte[] array = buffer.array();
oos.writeObject(array);
}
Log.v("PaintFX","Elapsed Time: "+(System.currentTimeMillis()-t1));
}
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException{
ois.defaultReadObject();
byte[] data = (byte[]) ois.readObject();
if(data != null && data.length > 0){
_bmp = BitmapFactory.decodeByteArray(data, 0, data.length);
}
}
问题是我得到
SkImageDecoder::Factory 返回 null
那么我该如何解决它。我知道可能的解决方案是将 writeObject() 更改为
ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
_bmp.compress(Bitmap.CompressFormat.PNG, 100, byteStream);
oos.writeObject(byteStream.toByteArray);
但是这种方法慢了近 10 倍以上。
- copyPixelsToBuffer ~14ms 用于写入图像
- _bmp.compress ~ 160ms
UPDATE 发现实际的问题是之后
buffer.array();
所有 byte[] 数组元素为:0