Android -- 將NV21映像儲存成JPEG

來源:互聯網
上載者:User

標籤:des   android   blog   http   io   ar   os   java   for   


//儲存一張照片String fileName = "IMG_" + String.valueOf(index) + ".jpg";  //jpeg檔案名稱定義File sdRoot = Environment.getExternalStorageDirectory();    //系統路徑String dir = "/jpeg/";   //檔案夾名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, width, height, null);   //將NV21 data儲存成YuvImage       //映像壓縮       image.compressToJpeg(               new Rect(0, 0, image.getWidth(), image.getHeight()),               70, filecon);   // 將NV21格式圖片,以品質70壓縮成Jpeg,並得到JPEG資料流   }catch (IOException e)   {       e.printStackTrace();   }}

該方法,常常在 Camera.PreviewCallback中採用:

@Overridepublic void onPreviewFrame(byte[] data, Camera camera) {}



將NV21資料壓縮成JPEG,並得到JPEG byte資料,解壓JPEG byte資料成一張Bitmap

@Overridepublic void onPreviewFrame(byte[] bytes, Camera camera) {    YuvImage image = new YuvImage(bytes, ImageFormat.NV21, width, height, null);            //ImageFormat.NV21  640 480    ByteArrayOutputStream outputSteam = new ByteArrayOutputStream();    image.compressToJpeg(new Rect(0, 0, image.getWidth(), image.getHeight()), 70, outputSteam); // 將NV21格式圖片,以品質70壓縮成Jpeg,並得到JPEG資料流    byte[] jpegData = outputSteam.toByteArray();                                                //從outputSteam得到byte資料    Options options = new BitmapFactory.Options();    options.inSampleSize = 1;    Bitmap bmp = BitmapFactory.decodeStream(jpegData, null, options);}


http://my.oschina.net/eclipse88/blog/80115

Android -- 將NV21映像儲存成JPEG

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.