Fix pixelated image in storyline

Reviewed By: seanxiao

Differential Revision: D2563069

fb-gh-sync-id: 86fa47801c34669b7b0c2826e0e776717f5605dc
This commit is contained in:
Oliver (Cunpu) Bo 2015-10-21 12:43:23 -07:00 committed by facebook-github-bot-4
parent a859d9e931
commit 4036eca570

View File

@ -58,17 +58,16 @@ RCT_EXPORT_MODULE()
// Note: PhotoKit defaults to a deliveryMode of PHImageRequestOptionsDeliveryModeOpportunistic
// which means it may call back multiple times - we probably don't want that
imageOptions.deliveryMode = PHImageRequestOptionsDeliveryModeHighQualityFormat;
BOOL useMaximumSize = CGSizeEqualToSize(size, CGSizeZero);
CGSize targetSize;
if (useMaximumSize) {
targetSize = PHImageManagerMaximumSize;
imageOptions.resizeMode = PHImageRequestOptionsResizeModeNone;
imageOptions.deliveryMode = PHImageRequestOptionsDeliveryModeHighQualityFormat;
} else {
targetSize = size;
imageOptions.resizeMode = PHImageRequestOptionsResizeModeFast;
imageOptions.deliveryMode = PHImageRequestOptionsDeliveryModeFastFormat;
}
PHImageContentMode contentMode = PHImageContentModeAspectFill;