作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用Flutter框架和Dart开发图像编辑器,因此无法将矩阵滤镜应用于 Canvas 。
我正在尝试使用“Paint”类和“canvas.drawPaint(paint)”函数将矩阵过滤器应用于 Canvas ,但是我得到了黑色 Canvas 。
Original image
Expected (Variant 2 in code)
I get
class EditorPainter extends CustomPainter {
final ui.Image image;
final double zoom;
final Offset offset;
EditorPainter({
@required this.image,
@required this.zoom,
@required this.offset,
this.elements
});
@override
void paint(Canvas canvas, Size size) {
Size imageSize = Size(image.width.toDouble(), image.height.toDouble());
Size targetSize = imageSize * zoom;
// Variant 1 - not working (draws black canvas)
paintImage(
canvas: canvas,
rect: offset & targetSize,
image: image,
fit: BoxFit.fill
);
// Paint with "sepia" filter
final Paint paint = Paint()
..colorFilter = ColorFilter.matrix([
0.393, 0.768, 0.189, 0.0, 0.0,
0.349, 0.686, 0.168, 0.0, 0.0,
0.272, 0.534, 0.131, 0.0, 0.0,
0.0, 0.0, 0.0, 1.0, 0.0,
]);
canvas.drawPaint(paint);
// Variant 2 - working
// Image with "sepia" filter
paintImage(
canvas: canvas,
rect: offset & targetSize,
image: image,
fit: BoxFit.fill,
colorFilter: ColorFilter.matrix([
0.393, 0.768, 0.189, 0.0, 0.0,
0.349, 0.686, 0.168, 0.0, 0.0,
0.272, 0.534, 0.131, 0.0, 0.0,
0.0, 0.0, 0.0, 1.0, 0.0,
])
);
}
}
最佳答案
drawPaint
用给定的Paint
填充 Canvas 。在您的情况下,它会用黑色填充。
您应该修改第一个示例:
final matrix = ColorFilter.matrix([
0.393, 0.768, 0.189, 0.0, 0.0,
0.349, 0.686, 0.168, 0.0, 0.0,
0.272, 0.534, 0.131, 0.0, 0.0,
0.0, 0.0, 0.0, 1.0, 0.0,
]);
context.pushColorFilter(offset,matrix, (context, offset) {
paintImage(
canvas: canvas,
rect: offset & targetSize,
image: image,
fit: BoxFit.fill
);
});
这些将创建一个新层并对其应用滤色器。
关于canvas - 如何将矩阵滤镜应用于 Canvas ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56974363/
我是一名优秀的程序员,十分优秀!