• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

objective-c - 防止 UIImage 调整大小时 - drawInRect : is called

[复制链接]
菜鸟教程小白 发表于 2022-12-12 22:29:21 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我在 -drawRect: 中渲染 UIImage,并通过在 UIImage 上调用 drawInRect: rect 将其放置在传入的 CGRect 中.它会自动调整大小并自行拉伸(stretch),这是我不想要的。我怎样才能保持它原来的大小?

UIImage* left = [UIImage imageNamed: @"Map_info_bubble_left"];
UIImage* center = [UIImage imageNamed: @"Map_info_bubble_center"];
UIImage* right = [UIImage imageNamed: @"Map_info_bubble_right"];

UIImage* leftCapStretched = [left resizableImageWithCapInsets: UIEdgeInsetsMake(0, 20, 0, 0)];
UIImage* rightCapStretched = [right resizableImageWithCapInsets: UIEdgeInsetsMake(0, 0, 0, 15)];   

CGFloat fullWidth = leftCapStretched.size.width + center.size.width + rightCapStretched.size.width;

UIGraphicsBeginImageContextWithOptions(CGSizeMake(fullWidth, center.size.height), NO, 0);
[leftCapStretched drawAtPoint: CGPointMake(0, 0)];
[center drawAtPoint: CGPointMake(leftCapStretched.size.width, 0)];
[rightCapStretched drawAtPoint: CGPointMake(left.size.width + center.size.width, 0)];
UIImage* callout = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

[callout drawInRect: rect];

基本上发生的情况是中心图像在大写拉伸(stretch)时应保持原始大小,但中心正在拉伸(stretch)并且大写拉伸(stretch)不够。我注意到如果我将 fullWidth 乘以 2,它会将中心缩小到更接近应有的位置。

编辑:在阅读文档后更简单地询问,有没有办法在调用 drawInRect: 时阻止 UIImage 缩放以适应矩形?



Best Answer-推荐答案


这可以通过将图像大小属性传递给 drawInRect:

来完成

e.x:

[myImage drawInRect:CGRectMake(someOriginX, someOriginY, myImage.size.width, myImage.size.height)];

关于objective-c - 防止 UIImage 调整大小时 - drawInRect : is called,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12007519/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap