在蒙版下裁剪图像

发布于 2024-11-26 12:19:36 字数 94 浏览 2 评论 0原文

我有这张图像,上面有一个圆形裁剪。 用户可以移动底层图像,当他对结果满意时,点击裁剪按钮。 我怎样才能只裁剪蒙版下的图像部分?


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 技术交流群。

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

发布评论

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

评论(1

上课铃就是安魂曲 2024-12-03 12:19:36

创建一个新的 BitmapData,然后使用其 draw() 函数从蒙版对象中绘制像素。

例如,假设您有一个 srcImg 和一个 destImg,这两个图像均在 MXML 中定义:

protected function cropImg():void {
    var bd:BitmapData = new BitmapData(maskObj.width, maskObj.height, true, 0);
    bd.draw(srcImg, new Matrix());
    var bmp:Bitmap = new Bitmap(bd);
    destImg.source = bmp;
}

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:

protected function cropImg():void {
    var bd:BitmapData = new BitmapData(maskObj.width, maskObj.height, true, 0);
    bd.draw(srcImg, new Matrix());
    var bmp:Bitmap = new Bitmap(bd);
    destImg.source = bmp;
}

HTH;

Amy

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