Cocoa 在保留动画的同时调整 NSImage 的大小

发布于 2024-10-20 20:01:59 字数 322 浏览 3 评论 0原文

有没有办法调整 NSImage (动画 gif)的大小并保留动画? 我想制作 512x256px 大小的动画 gif,适合 256x256px 的矩形。

[newImage lockFocus];

[animatedGif drawInRect:newRect
        fromRect:NSMakeRect(0.0f, 0.0f, self.size.width, self.size.height)
        operation:NSCompositeCopy
        fraction:1.0f];

[newImage unlockFocus];

is there a way to resize a NSImage (animated gif) and preserve the animation?
I want to make the animated gif with 512x256px size, fit a rect of 256x256px.

[newImage lockFocus];

[animatedGif drawInRect:newRect
        fromRect:NSMakeRect(0.0f, 0.0f, self.size.width, self.size.height)
        operation:NSCompositeCopy
        fraction:1.0f];

[newImage unlockFocus];

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

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

发布评论

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

评论(2

中性美 2024-10-27 20:01:59

我会保存 gif 动画的第一张图片。当您要调整 NSImage 的大小时,只需绘制动画的第一张图像即可。

我希望我正确理解你的问题。

I would save the first picture of the animated gif. When you are going to resize the NSImage, just draw the first image of the animation.

I hope I understood your question correctly.

青衫儰鉨ミ守葔 2024-10-27 20:01:59

也许您可以使用计时器手动设置动画,每隔 0.1 秒显示另一帧?

perhaps you can animate it manually with a timer which shows every 0.1 second another frame?

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