画像や動画をさまざまなサービスに共有するアプリがあります。1つはInstagramです。Instagram はビデオの直接送信をサポートしていないため、このブログを調査しました。
新しい写真フレームワークを使用して、ビデオに対して同様のことを行うことができました。
AVExport to convert to a proper video format.
PHPHotoLibrary > create new album.
PHPHotoLibrary > ad converted asset to the PHLibrary
PHPHotoLibrary > Fetch the PHAsset to get a library URL.
ライブラリの URL を Instagram に送信します。このプロセスは動画に最適です。しかし、私は画像に問題があります!何らかの理由で、画像はライブラリに保存されますが、Instagram には表示されません。
PhotoLibrary にある画像が Instagram で表示できない理由はありますか? PHLibrary creationRequest を実行する前にイメージを変換する適切な方法はありますか?
これが、画像処理の主なスニペットです..
- (void)saveImageAsset:(UIImage*)theImage toAblum:(NSString*)title andCompletion:(void (^)(NSURL* libraryURL))completion {
__block NSString *objIdentifier;
NSData *imgData = UIImagePNGRepresentation(theImage);
theImage = [UIImage imageWithData:imgData];
[[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
PHAssetCollection *assetCollection = [self albumWithTitle:title];
PHAssetChangeRequest* createAssetRequest =
[PHAssetChangeRequest creationRequestForAssetFromImage:theImage];
PHObjectPlaceholder *assetPlaceholder = createAssetRequest.placeholderForCreatedAsset;
PHAssetCollectionChangeRequest *albumChangeRequest =
[PHAssetCollectionChangeRequest changeRequestForAssetCollection:assetCollection];
[albumChangeRequest addAssets:@[ assetPlaceholder ]];
objIdentifier = assetPlaceholder.localIdentifier;
} completionHandler:^(BOOL success, NSError *error) {
if (!success) {
NSLog(@"performChanges Error %@", error);
} else NSLog(@"Write Image Good");
//NSLog(@"objIdentifier = %@", objIdentifier);
PHFetchResult *newFetch = [PHAsset fetchAssetsWithLocalIdentifiers:@[objIdentifier] options:nil];
PHAsset *lastImageAsset = [newFetch lastObject];
// NSLog(@"Image Fetch = %@ --lastImageAsset %@", newFetch, lastImageAsset);
PHImageRequestOptions* options = [[PHImageRequestOptions alloc] init];
options.synchronous = YES;
options.deliveryMode = PHImageRequestOptionsDeliveryModeFastFormat;
options.networkAccessAllowed = NO;
options.version = PHImageRequestOptionsVersionOriginal;
[[PHImageManager defaultManager] requestImageForAsset:(PHAsset *)lastImageAsset
targetSize:CGSizeMake(640,640)
contentMode:PHImageContentModeDefault
options:options
resultHandler:^(UIImage *result, NSDictionary *info) {
//NSLog(@"info = %@", info);
NSURL *finalImageURL = info[@"PHImageFileURLKey"];
NSLog(@"finalImageURL = %@", finalImageURL);
if (!finalImageURL) completion(nil);
completion(finalImageURL);
}];
}];
}