iOS 儲存圖片或視頻到PhotoLibrary

來源:互聯網
上載者:User

儲存圖片到photo library與儲存video到photo library的API差不多,但也有所不同。圖片是可以直接把資料寫入photo library,而video需要先把資料存到臨時檔案然後,然後通過臨時檔案的路徑去轉存到photo library。

我們直接來看相應的API:

// These methods can be used to add photos or videos to the saved photos album.// With a UIImage, the API user can use -[UIImage CGImage] to get a CGImageRef, and cast -[UIImage imageOrientation] to ALAssetOrientation.- (void)writeImageToSavedPhotosAlbum:(CGImageRef)imageRef orientation:(ALAssetOrientation)orientation completionBlock:(ALAssetsLibraryWriteImageCompletionBlock)completionBlock;// The API user will have to specify the orientation key in the metadata dictionary to preserve the orientation of the image- (void)writeImageToSavedPhotosAlbum:(CGImageRef)imageRef metadata:(NSDictionary *)metadata completionBlock:(ALAssetsLibraryWriteImageCompletionBlock)completionBlock __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_4_1);// If there is a conflict between the metadata in the image data and the metadata dictionary, the image data metadata values will be overwritten- (void)writeImageDataToSavedPhotosAlbum:(NSData *)imageData metadata:(NSDictionary *)metadata completionBlock:(ALAssetsLibraryWriteImageCompletionBlock)completionBlock __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_4_1);- (void)writeVideoAtPathToSavedPhotosAlbum:(NSURL *)videoPathURL completionBlock:(ALAssetsLibraryWriteVideoCompletionBlock)completionBlock;

前三個都是存圖片的,通過參數我們可以發現,第一個使用了我們傳進去的方向,第二個可以通過傳入image的metadata保留image的metadata,前兩個都是把圖片轉成 CGImageRef 再儲存,第三個是傳入NSData所以可以完整保留image的資訊,同時也有metadata傳進去,如果image內建的資訊與metadata衝突那metadata會覆蓋圖片本身所帶的metadata。

最後一個是儲存視頻的API,可以看到參數是一個NSURL,這個只要穿一個本地臨時檔案的file URL 就好了。

儲存圖片根據你的需求選擇適當的API,比如我們擷取到的是UIImage的執行個體,那麼我們用第一個或者第二個比較方便,如果我們從本地臨時檔案讀取image的資料那麼我們直接用第三個就比較方便。

下面來一段簡單的代碼:

- (void)saveImage:(UIImage*)image{    ALAssetsLibrary *assetsLibrary = [[ALAssetsLibrary alloc]init];    [assetsLibrary writeImageToSavedPhotosAlbum:[image CGImage] orientation:(ALAssetOrientation)image.imageOrientation completionBlock:^(NSURL *assetURL, NSError *error) {        if (error) {            NSLog(@"Save image fail:%@",error);        }else{            NSLog(@"Save image succeed.");        }    }];}

儲存video就麻煩點了,你需要先把video寫入本地檔案然後,擷取到本地臨時檔案的路徑,然後調用上面的第四個API寫入photo library。

關於寫入臨時檔案,我之前寫過一篇關於檔案讀寫的文章,可以去看看。

我這裡奉上一個把工程資產庫的video寫入photo library的demo,這樣你就可以把video匯入模擬器了,方便有些時候測試。

主要代碼如下,整個工程可以再文尾連結下載:

- (void)save:(NSString*)urlString{    ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];    [library writeVideoAtPathToSavedPhotosAlbum:[NSURL fileURLWithPath:urlString]                                completionBlock:^(NSURL *assetURL, NSError *error) {                                    if (error) {                                        NSLog(@"Save video fail:%@",error);                                    } else {                                        NSLog(@"Save video succeed.");                                    }                                }];}

整個工程附在後面:

SaveVideo2PhotoLibrary(點擊下載)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.