ABPersonViewController 如何处理照片数据?

发布于 2024-09-10 09:42:45 字数 169 浏览 2 评论 0原文

通过ABPersonViewController我们可以编辑联系人的照片。那么我们如何通过其他方式访问照片信息呢?然而,我们得到的是 ABPerson 的图像数据作为大原始图片,而不是 ABPersonViewController 显示的剪辑照片数据。那我们该怎么办呢? ABPersonCopyImageData,下一个?

Through ABPersonViewController we can edit contact's photo. Then How can we access the photo info by other way? However, we got ABPerson's image data as the big original picture but not the clip photo data as the ABPersonViewController show. Then what should we do?
ABPersonCopyImageData, next?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

め可乐爱微笑 2024-09-17 09:42:45

+[UIImage imageWithData:]

要缩放图像,类似于

UIGraphicsBeginImageContextWithOptions(size, YES, 0);
[[UIImage imageWithData:data] drawInRect:(CGRect){{0,0},size}];
UIImage * scaledImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

(假设 size 是“点”的数量,以支持 iPhone 4)

+[UIImage imageWithData:]

To scale the image, something like

UIGraphicsBeginImageContextWithOptions(size, YES, 0);
[[UIImage imageWithData:data] drawInRect:(CGRect){{0,0},size}];
UIImage * scaledImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

(assuming size is the number of "points", for iPhone 4 support)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文