1
A
回答
5
只是讓自己的新形象(表現爲UIImage的一類方法):
- (UIImage*)scaleToSize:(CGSize)size {
UIGraphicsBeginImageContext(size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(context, 0.0, size.height);
CGContextScaleCTM(context, 1.0, -1.0);
CGContextDrawImage(context, CGRectMake(0.0f, 0.0f, size.width, size.height), self.CGImage);
UIImage* scaledImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return scaledImage;
}
相關問題
- 1. 縮小UIImage的尺寸
- 2. 放大和縮小爲UIImage
- 3. 任何縮小UIImage的代碼/庫?
- 4. 壓縮UIImage但保持大小
- 5. UIImage縮小規模 - 分辨率損失
- 6. 縮小UIImage但返回更大的內存大小?
- 7. 在保存UIImage時縮小圖像大小
- 8. 如何壓縮UIImage?
- 9. 在UIScrollView中縮放UIImage
- 10. UIImage的高質量縮放
- 11. 可伸縮UIImage和CGAffineTransform
- 12. 在MonoTouch中壓縮UIImage
- 13. UIImage UIImage小+中+大如蘋果郵件
- 14. 更改UIImage的NSData大小 - 使用最大兆字節Mb限制壓縮和調整UIImage的大小
- 15. UIImage大小管理
- 16. 縮小UIImage以適應最大Base64長度
- 17. 如何在用戶捏屏幕時放大/縮小UIImage對象?
- 18. 爲什麼從相機縮小UIImage太慢?
- 19. 如何使UIScrollView縮放爲UIImage的大小?
- 20. 調整UIImageView的大小而不縮放UIImage
- 21. 如何在UIImageView中自動縮放UIImage大小?
- 22. 大的UIImage不縮小到滾動視圖的框架
- 23. 當使用NSKeyedArchiver進行存檔時,UIImage不會縮小文件大小
- 24. 如何減少UIImage大小...?
- 25. UIImagePicker和UIImage的大小
- 26. UIImage大小正在變化
- 27. UIImage大小在tableView Cell
- 28. UIImageJPEGRepresentation增加UIImage大小
- 29. UIImageView中的UIImage大小
- 30. JScrollPane窗口縮小縮小最小化
看看這個鏈接:http://stackoverflow.com/questions/6141298/how-to-scale-down-a-uiimage-and-make-it-crispy -sharp-在最相同的時間,而不是 – WhiteTiger 2012-08-10 21:37:34