为图像网格创建缩略图
我正在构建一个应用程序,例如 iPad 上苹果的照片应用程序。我有一个大的全屏图像,我使用滚动视图来显示它们来管理缩放和分页。当我尝试使用图像缩略图创建网格时,出现了主要问题。我将它们创建为重叠在 UIButton 上的 UIImageView。一切都很好,但是当我在 iPad 上尝试该应用程序时,它需要大量内存,我想这取决于图像的重新缩放。有没有一种方法可以用小图像创建 UIImageView,重新缩放较大的图像,而不使用那么多内存?
I'm building an app like the photo app by apple in the iPad. I have large full-screen image and I show them using a scrollView for managing zooming and paging. The main problem happen when I try to create a grid with the thumbnail of the images. I create them as UIImageView overlapped on a UIButton. All works great, but when I try the app on the iPad, it requires a lot of memory, I suppose it depend on the rescaling of the Image. There's a way to create a UIImageView with the little image,rescaling the larger image, without using so much memory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 UIGraphics 创建缩略图。这是执行此操作的代码:
You can use UIGraphics to create a thumbnail. Here's this code to do it: