UIImage 只拉伸一部分

发布于 2024-11-16 11:36:57 字数 313 浏览 2 评论 0原文

所以,假设我有这个精灵:

mbm
bcb
mbm

其中每个字母都是一部分。 (m: margin; b: border, c:center)

我想要一个能够重复 b 和 c 的类,只要它需要完成视图,所以我得到这样的东西:

mbbbbbbbbbbbbbm
bcccccccccccccb
bcccccccccccccb
bcccccccccccccb
mbbbbbbbbbbbbbm

有没有可以做到这一点的东西已经? 如果它不存在,关于如何实现它有什么想法吗?

So, lets say i have this sprite:

mbm
bcb
mbm

where each letter is a portion. (m: margin; b: border, c:center)

and I want a class that is able to repeat the b's and c as long as it needs to complete the view so i get something like this:

mbbbbbbbbbbbbbm
bcccccccccccccb
bcccccccccccccb
bcccccccccccccb
mbbbbbbbbbbbbbm

Is there something that can do this already?
If it doesn't exist, any ideas on how to implement it?

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

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

发布评论

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

评论(2

梦明 2024-11-23 11:36:57

难道用这个方法就达不到这个目的吗?

-(UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger)topCapHeight

(请参阅Apple UIImage 类参考 )

Could you not achieve this with this method ?

-(UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger)topCapHeight

(see Apple UIImage Class Reference )

三生路 2024-11-23 11:36:57

我们可以使用下面的代码拉伸图像:-这里我们需要 m..m 必须具有相同的尺寸,所以我们拉伸中间部分

UIImage *image = [UIImage imageNamed:@"img_loginButton.png"];
    UIEdgeInsets edgeInsets;
    edgeInsets.left = 3.0f; //Assume it is the pixel for starting 'm'
    edgeInsets.top = 0.0f;
    edgeInsets.right = 3.0f; //Assume it is the pixel for Ending 'm'
    edgeInsets.bottom = 0.0f;
    image = [image resizableImageWithCapInsets:edgeInsets];
//Use this image as your controls image

We can stretch the image using the below code :- Here we need the m..m must be in same size so we stretch the middle portion

UIImage *image = [UIImage imageNamed:@"img_loginButton.png"];
    UIEdgeInsets edgeInsets;
    edgeInsets.left = 3.0f; //Assume it is the pixel for starting 'm'
    edgeInsets.top = 0.0f;
    edgeInsets.right = 3.0f; //Assume it is the pixel for Ending 'm'
    edgeInsets.bottom = 0.0f;
    image = [image resizableImageWithCapInsets:edgeInsets];
//Use this image as your controls image
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文