在蒙版下裁剪图像
我有这张图像,上面有一个圆形裁剪。 用户可以移动底层图像,当他对结果满意时,点击裁剪按钮。 我怎样才能只裁剪蒙版下的图像部分?
I have this image over which i have a circular crop.
The user can move the underlying image and when he is ok with the result hits the crop button.
How can i crop only that part of the image which is under the mask?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个新的 BitmapData,然后使用其 draw() 函数从蒙版对象中绘制像素。
例如,假设您有一个 srcImg 和一个 destImg,这两个图像均在 MXML 中定义:
HTH;
艾米
Create a new BitmapData, then use its draw() function to draw the pixels from the masked object.
For example, say you have a srcImg and a destImg, both Images defined in MXML:
HTH;
Amy