当我将 PNG 图像放在屏幕上时,它看起来太小

发布于 2024-12-04 00:56:33 字数 211 浏览 2 评论 0原文

我有一张PNG图片(640*960),当我将它放在我的应用程序屏幕上(使用UIImageView)时,它看起来太小(非常非常小),我什至不知道它的尺寸变成了什么,你能帮忙吗我明白为什么我得到这个吗?提前感谢:)

编辑:

在此处输入图像描述

i have a PNG picture (640*960), when i place it on my app screen (using an UIImageView) it looks too small (very very small), i didn't even know what does its dimensions became, can you please help me figure out why i got that? thanx in advance :)

EDIT:

enter image description here

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

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

发布评论

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

评论(1

壹場煙雨 2024-12-11 00:56:33

有一个 API 用于创建带有比例的 UIImage。

NSData *imageData = ...;
UIImage *unscaled = [UIImage imageWithData:imageData];
UIImage *img = [UIImage imageWithCGImage:unscaled.CGImage
                                   scale:2
                             orientation:UIImageOrientationUp];

您可能想也可能不想使用[UIScreen mainScreen].scale来动态检测比例/视网膜。

There's an API for creating an UIImage with a scale.

NSData *imageData = ...;
UIImage *unscaled = [UIImage imageWithData:imageData];
UIImage *img = [UIImage imageWithCGImage:unscaled.CGImage
                                   scale:2
                             orientation:UIImageOrientationUp];

You may or may not want to use [UIScreen mainScreen].scale as well, to dynamically detect scale/retina.

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