平滑缩放影片剪辑

发布于 2024-12-10 09:59:29 字数 333 浏览 1 评论 0原文

我有一个包含位图作为帧的 MovieClip 。如何平滑地缩放它,达到与将 Bitmap.smoothing 设置为 true 相同的效果?

我还有一个包含位图的 Sprite。我想在 Sprite 上实现相同的效果,但设置其 scaleXscaleY 属性会导致同样的问题。我尝试在子 Bitmap 实例上将 smoothing 设置为 true,但似乎没有任何反应。

I have a MovieClip that contains bitmaps as frames. How can I scale it smoothly, achieving the same effect as with Bitmap.smoothing set to true?

I also have a Sprite that contains Bitmaps. I want to achieve the same effect on the Sprite, but setting its scaleX and scaleY properties results in the same problem. I tried setting smoothing to true on the children Bitmap instances, but nothing seems to happen.

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

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

发布评论

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

评论(1

昨迟人 2024-12-17 09:59:29

您可以使用一个技巧在 MovieClip 上获得类似平滑的效果,即对其应用一个小的 BlurFilter,例如:

var blurFilter:BlurFilter = new BlurFilter(2, 2, BitmapFilterQuality.LOW);
my_mc.filters = [ blurFilter ];

要么这样,要么为它分配 smoothing=true MovieClip 中的每个位图。

A trick that you can use to get a smoothing-like effect on a MovieClip is to apply a small BlurFilter to it, like:

var blurFilter:BlurFilter = new BlurFilter(2, 2, BitmapFilterQuality.LOW);
my_mc.filters = [ blurFilter ];

Either this, or assign smoothing=true for each bitmap inside the MovieClip.

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