大家好我是一个Android开发者,我试图从可绘制资源创建一个图像文件,如下所示:
Bitmap btm = BitmapFactory.decodeResource(getResources(),R.drawable.image1);
Bitmap btm = BitmapFactory.decodeFile(pathname);
btm.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
File f = new File(Environment.getExternalStorageDirectory()+ File.separator + "temporary_file.jpg");
try {
f.createNewFile();
new FileOutputStream(f).write(bytes.toByteArray());
} catch (IOException e) {
e.printStackTrace();
}
但我需要的是从image1的路径开始创建文件, 我试着用:
String pathname = currentLevel.getImagePath();
Bitmap btm = BitmapFactory.decodeFile(pathname);
btm.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
但它不起作用:
E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: android.resource:/com.example.utente.guessimageferes/drawable/immagine1 (No such file or directory)
还有
String pathname ="android.resource://com.example.utente.guessimageferes/drawable/immagine1"
我有同样的问题,它可能成为我想要的吗?
答案 0 :(得分:0)
我需要的是从image1的路径开始
image1
没有路径。 image1
是一种资源。它是您的开发计算机上的文件 。它不是设备上的文件。因此,它没有路径。