从图像选择器控制器生成所选图像的较小预览
这是我的计划:
- 用户点击按钮。
- uiimage picker视图控制器显示
- 用户选择图像,
- 所选图像的缩略图视图应保存在我的应用程序中。 (就像选择相册后的 ui 选择器视图一样,有缩略图视图)
我最多可以做三点。但我不知道如何创建所选图像的缩略图视图。
Here is what I am planning:
- user taps on a button.
- a uiimage picker view controller displays
- user selects an image
- a thumbnail view of selected image should be saved in my application.
( like ui picker view has after selecting albums, there is thumbnail view )
Up to three points I can do. But I don't know about creating thumbnail view of selected image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
未记录的
UIImage
调整大小。Undocumented
UIImage
resizing.制作一个缩略图大小的小位图。将你的图片画进去。获取位图并将其转换为 UIImage 并保存。
这是一个实现:
iPhone - 多个 CGBitmapContextCreateImage 调用 - ObjectAlloc 攀爬
Make a small bitmap the size of your thumbnail. Draw your picture into it. Take the bitmap and turn it into a UIImage and save it.
Here is an implementation:
iPhone - Multiple CGBitmapContextCreateImage Calls - ObjectAlloc climbing
http://vocaro.com /trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/
这是一本关于图像处理的精彩读物。
http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/
This is a fantastic read for image manipulation.