0
A
回答
6
這裏是你如何可以打印字節大小:
UIImage *myImage = [UIImage imageNamed:@"xxx.png"];
NSLog(@"MyImage size in bytes:%i",[UIImagePNGRepresentation(myImage) length]);
1
將PNG文件添加到Xcode項目時,PNG文件保持不變。它們在構建時與pngcrush壓縮在一起。您可以右鍵單擊您的.app結果,然後查看軟件包內容以查看圖像的最終文件大小。
或者,如果您不是在討論文件大小,而是像素大小,那麼您可以將圖像加載到UIImage並查詢其「大小」屬性。
1
您創建的UIImageView,然後打印新的UIImageView的框架
UIImageView imageView = [[UIImageView alloc] initWithImage:[[UIImage alloc] initWithData:/*image path */];
NSLog(@"photoLoaderDidLoad: self.frame %@",NSStringFromCGRect(imageView.frame));
0
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)editInfo{
UIImage *image=[editInfo valueForKey:UIImagePickerControllerOriginalImage];
NSURL *imageURL=[editInfo valueForKey:UIImagePickerControllerReferenceURL];
__block long long realSize;
ALAssetsLibraryAssetForURLResultBlock resultBlock=^(ALAsset *asset)
{
ALAssetRepresentation *representation=[asset defaultRepresentation];
realSize=[representation size];
};
ALAssetsLibraryAccessFailureBlock failureBlock=^(NSError *error)
{
NSLog(@"%@", [error localizedDescription]);
};
if(imageURL)
{
ALAssetsLibrary *assetsLibrary=[[[ALAssetsLibrary alloc] init] autorelease];
[assetsLibrary assetForURL:imageURL resultBlock:resultBlock failureBlock:failureBlock];
}
}
相關問題
- 1. 檢查圖像的大小
- 2. 檢查網址中的圖像大小
- 3. 如何檢查圖像屬性(大小)?
- 4. 檢查圖像大小之前上傳
- 5. 在XCode中調整圖像大小?
- 6. 雖然插入圖像檢查圖像的大小和高度
- 7. 大圖像查看器大小像2529x3516
- 8. Xcode NSData圖像大小更改
- 9. Xcode故事板圖像大小調整
- 10. 草繪爲XCode圖像大小? (擋板)
- 11. 如何檢測較大圖像中的小圖像的貨幣?
- 12. 如何檢查在jQuery中提供圖像路徑的圖像大小?
- 13. 如何檢查圖像大小小於100kb android
- 14. 在Java中調整圖像大小以縮小圖像大小
- 15. 負荷前檢查Android的圖像大小的內存
- 16. get_headers需要太多的時間來檢查圖像的大小
- 17. ScrollView中的圖像大小
- 18. tableviewcell中圖像的大小
- 19. jquery中的圖像大小
- 20. Android中的圖像大小
- 21. tabbar和查看大小xcode
- 22. 正在檢查圖片的大小Jquery
- 23. 檢查複選框上的圖像大小點擊
- 24. 檢查不同大小圖像上的相似度
- 25. 如何檢查javaserver臉部圖像文件的大小
- 26. 如何檢查圖像大小密度之間的匹配?
- 27. XCode 5中的標籤欄圖像大小是什麼
- 28. 大小的圖像
- 29. 縮小圖像的大小
- 30. Xcode 4.3不在大小檢查器中顯示Autoresizing面板