目前我正在获取内存问题,因为我在React Native的Flatlist中加载直接图像。问题是由于高分辨率图像达到内存限制并且应用程序在iPhone上崩溃。有什么方法可以获取像图像网址的直接拇指网址(例如url:'assets-library://asset/asset.JPG?id = 5BECA80C-33B3-46A0-AE44-CF28A838CECF&amp; ext = JPG',)?< / p>
目前我正在使用'React-native-photo-framework'。
答案 0 :(得分:1)
getAssets
需要prepareForSizeDisplay
道具。这使用PHCachingImageManager
来请求指定大小的资产图像。
示例:
RNPhotosFramework.getAssets({
startIndex: 0,
endIndex: 100,
prepareForSizeDisplay: Rect(100,100),
fetchOptions: {
sourceTypes: ['userLibrary'],
sortDescriptors: [{
key: 'creationDate',
ascending: true,
}]
}
}).then((response) => console.log(response.assets));
当用户点击FlatList
中的行时,您可以获取完整尺寸的资源。在您需要显示之前,请不要获取完整大小的资源。
答案 1 :(得分:0)
最后,我有自己的解决方案来解决这个问题。我已经尝试了所有方法来解决,但我无法解决它。最后,我开始知道新的Photo Library提供了获取已调整大小的图像的选项,但那不适用于react-native-photos-framework。我的本土经验将帮助我解决我的问题,希望这会对你有所帮助。 Here与详细说明和代码相关联。
让我在这里添加代码片段。
导入本机照片库
#import <Photos/Photos.h>
CGSize retinaSquare = CGSizeMake(600, 600);
PHImageRequestOptions *cropToSquare = [[PHImageRequestOptions alloc] init];
cropToSquare.resizeMode = PHImageRequestOptionsResizeModeExact;
cropToSquare.deliveryMode = PHImageRequestOptionsDeliveryModeOpportunistic;
[cropToSquare setSynchronous:YES];
NSURL *imageurl = [NSURL URLWithString:@"youimagepath"];
PHFetchResult* asset =[PHAsset fetchAssetsWithALAssetURLs:[NSArray arrayWithObjects:imageurl, nil] options:nil];
[[PHImageManager defaultManager] requestImageForAsset:(PHAsset *)[asset objectAtIndex:0] targetSize:retinaSquare contentMode:PHImageContentModeAspectFit options:cropToSquare resultHandler:^(UIImage *fetchedImage, NSDictionary *info) {
NSData *imageData = UIImageJPEGRepresentation(fetchedImage,0.65);
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSTimeInterval timeStamp = [[NSDate date] timeIntervalSince1970];
NSString *filePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:[NSString stringWithFormat:@"%0.0f.jpg", timeStamp*1000]];
NSError *error = nil;
[imageData writeToFile:filePath options:NSDataWritingAtomic error:&error];
NSURL* fileUrl = [NSURL fileURLWithPath:filePath];
if(error){
fileUrl = imageurl;
}
NSString *resizedImagePath = [NSString stringWithFormat:@"%@",fileUrl];
}];