如何在 ActionScript 3.0 中用另一个图像遮盖图像
我的问题是这样的,我的用户导入图像 FileReference 和我需要屏蔽它然后将其发送到服务器。
我的问题是这样的:我能够保留文件引用事件并且 将图像数据传输到我的画布中。我能够发送到服务器 屏蔽的结果。
但我无法掩盖用户加载的图像 我的画布。
my issue is this, my users import an image with
FileReference and I need to mask it and then send it to server.
My problem is this: I'm be able do keep the filereference event and
transfer the image data into my canvas. I'm be able to send to server
the result of masking.
But I'm NOT be able to mask the image that my users have load in
my canvas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这改变了情况,但变化不大。查看修改后的解决方案:
首先单击舞台允许您选择蒙版图像。第二次单击允许您选择包含遮罩信息的图像(例如具有透明度的 png 文件)。希望这有帮助。
This changes the situation, but not dramatically. Check out the modified solution:
First click on the stage allows you to select masked image. Second click allows you to select image, which contains the masking information (e.g. png file with transparency). Hope this helps.
您只需将加载的位图添加到可屏蔽容器(例如 Sprite)。例如:
测试程序
You just need to add loaded bitmap to maskable container (e.g. Sprite). For exmaple:
Test.as