以下の内容はhttps://appdev.blitz-time.com/entry/2019/05/01/090934より取得しました。


【Androidアプリ開発】Bitmapオブジェクトを指定パスにPNGファイルとして保存

Bitmapオブジェクトを指定パスにPNGファイルとして保存します。

static public boolean saveAsPngImage(Bitmap bmp, String strPath){
    try {
        File file = new File(strPath);
        FileOutputStream outStream = new FileOutputStream(file);
        bmp.compress(Bitmap.CompressFormat.PNG, 100, outStream);
        outStream.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
        return false;
    } catch (IOException e) {
        e.printStackTrace();
        return false;
    }
    return true;
}  



以上の内容はhttps://appdev.blitz-time.com/entry/2019/05/01/090934より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14