And Q.

思ったことを書きます

画像ファイルを読み込んで,Bitmapクラスでいじくりまわして別のファイル名で保存する方法

最初はFile→byte[]→Bitmapかと思ったけど
File→Bitmapと直でデコードできるんですね…

    			//画像をファイルとして取り出す
    			File srcFile = new File(target);
    			FileInputStream fis = new FileInputStream(srcFile);
    			Bitmap bm = BitmapFactory.decodeStream(fis);
    			
		        //bmに対する処理を書く

		        FileOutputStream fos = new FileOutputStream(files);
		        resizedBitmap.compress(CompressFormat.JPEG, 100, fos);
		        fos.flush();
		        fos.close();