Fixed: #2454 SVG export - color matrix not applied to images

This commit is contained in:
Jindra Petřík
2025-05-09 10:17:13 +02:00
parent 12e3afdd80
commit 892ddf4706
2 changed files with 3 additions and 1 deletions
@@ -144,7 +144,7 @@ public class SVGShapeExporter extends DefaultSVGShapeExporter {
SerializableImage img = image.getImageCached();
if (img != null) {
if (colorTransform != null) {
colorTransform.apply(img);
img = colorTransform.apply(img);
}
int width = img.getWidth();