在 Flex 4 中垂直翻转图像

发布于 2024-12-11 20:27:40 字数 150 浏览 0 评论 0原文

互联网上的示例声称,只需设置scaleX =“-1”即可翻转Flex中的图像。

但当我这样做时,图像似乎根本没有渲染。

这是怎么回事?我该如何解决这个问题?我尝试将它放在画布和垂直盒子中,结果相同。 (注意 - 图像相当大,5600x2100 左右。)

Examples on the Internet claim that simply setting scaleX="-1" will flip an image in Flex.

But when I do this, the image doesn't seem to render at all.

What's going on? How can I troubleshoot the issue? I've tried placing it in a Canvas and a VBox, same result.
(Note - the image is rather large, 5600x2100 or so.)

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

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

发布评论

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

评论(1

木緿 2024-12-18 20:27:41

不知道为什么scaleX不起作用,但我想出了一个解决方案:

        var flipVerticalMatrix:Matrix = new Matrix();
        flipVerticalMatrix.scale(1, -1);
        flipVerticalMatrix.translate(0, bm.height);

        bitmap = new Bitmap(new BitmapData(bm.width, bm.height, false, 0x00AA00));
        bitmap.bitmapData.draw(bm, flipVerticalMatrix);

仍然对有关为什么scaleX不起作用的任何信息感兴趣。

Not sure why scaleX isn't working, but I came up with a solution:

        var flipVerticalMatrix:Matrix = new Matrix();
        flipVerticalMatrix.scale(1, -1);
        flipVerticalMatrix.translate(0, bm.height);

        bitmap = new Bitmap(new BitmapData(bm.width, bm.height, false, 0x00AA00));
        bitmap.bitmapData.draw(bm, flipVerticalMatrix);

Would still be interested in any info as to why scaleX didn't work.

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