Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android -- 幾種保存成jpeg文件的形式

Android -- 幾種保存成jpeg文件的形式

編輯:關於Android編程

//1.采用NV21格式 YuvImage類進行保存   效率很高
String fileName = "IMG_"
       + String.valueOf(index) + ".jpg";
File sdRoot = Environment.getExternalStorageDirectory();
String dir = "/picture/";
File mkDir = new File(sdRoot, dir);
if (!mkDir.exists())
{
   mkDir.mkdirs();
}


File pictureFile = new File(sdRoot, dir + fileName);
if (!pictureFile.exists()) {
   try {
       pictureFile.createNewFile();

       FileOutputStream filecon = new FileOutputStream(pictureFile);
       YuvImage image = new YuvImage(data,
               ImageFormat.NV21, size.width, size.height,
               null);

       image.compressToJpeg(
               new Rect(0, 0, image.getWidth(), image.getHeight()),
               70, filecon);   // 將NV21格式圖片,以質量70壓縮成Jpeg,並得到JPEG數據流

   }catch (IOException e)
   {
       e.printStackTrace();
   }
}


//2.采用Bitmap類
Bitmap bmp = BitmapFactory.decodeFile(pictureFile.getPath());
FileOutputStream fileOutStream = null;
fileOutStream = new FileOutputStream(file);
bmp.compress(Bitmap.CompressFormat.JPEG, 100, fileOutStream);  //把位圖輸出到指定的文件中
fileOutStream.flush();
fileOutStream.close();


//3.直接采用保存byte[]數據
FileOutputStream fos = new FileOutputStream(pictureFile.getPath()); // Get file output stream
fos.write(bytes);                                               // Written to the file
fos.close();

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved