我有一个用于绘图的Bitmap对象,我想使用JPEG格式将其保存在SDCARD上。我有以下代码:

    public void saveBitmap() throws IOException {

        String path=Environment.getExternalStorageDirectory().getAbsolutePath()+"/output.jpg";
        File output=new File(path);

        BufferedOutputStream ous = null;
        try {
            ous=new BufferedOutputStream(new FileOutputStream(output));
            mBitmap.compress(CompressFormat.JPEG, 100, ous);
            ous.flush();
            ous.close();
        } finally {
            if (ous!=null) {
                try {
                    ous.close();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                    Log.e("closing", e.getMessage());
                }
            }
        }
    }


但是执行此功能后,我总是可以看到黑色背景的jpeg文件。如果我将格式更改为PNG,一切都会好的。我在哪里弄错了?

绘图代码:

    @Override
    protected void onDraw(Canvas canvas) {

        canvas.drawColor(0x00FFFFFF);
        canvas.drawBitmap(mBitmap, 0, 0, mBitmapPaint);
        canvas.drawPath(mPath, mPaint);
    }

最佳答案

jpeg格式不支持透明度。这就是为什么在保存时将透明度变为黑色的原因。

08-16 12:27