我想从资产文件夹中打开一个图像,调整其大小并重新保存该图像。我使用以下代码:
private void resizeImage(float ratio) {
AssetManager assetManager = getAssets();
InputStream stream = null;
try {
stream = assetManager.open("bear.png");
} catch (IOException e) {
return;
}
Bitmap bitmapOrg = BitmapFactory.decodeStream(stream);
int width = bitmapOrg.getWidth();
int height = bitmapOrg.getHeight();
float scaleWidth = ((float) width) / ratio;
float scaleHeight = ((float) height) / ratio;
Matrix aMatrix = new Matrix();
aMatrix.setSkew(scaleWidth, scaleHeight);
bitmapOrg = Bitmap.createBitmap(bitmapOrg, 0, 0, bitmapOrg.getWidth(),
bitmapOrg.getHeight(), aMatrix, false);
}
但是,当我启动应用程序时,它崩溃了。这是堆栈跟踪:
12-09 02:36:33.750: ERROR/AndroidRuntime(1939): at android.graphics.Bitmap.nativeCreate(Native Method)
12-09 02:36:33.750: ERROR/AndroidRuntime(1939): at android.graphics.Bitmap.createBitmap(Bitmap.java:477)
12-09 02:36:33.750: ERROR/AndroidRuntime(1939): at android.graphics.Bitmap.createBitmap(Bitmap.java:444)
有人知道为什么会崩溃吗?
最佳答案
资产文件夹位于APK内部,因此在文件系统中不是真实的文件夹。
我认为您无法在此保存任何内容。
关于java - 将位图保存到文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8439705/