Sorry if this is a bit of a dumb question, I'm newish, but, if I use this dali code:
(def blend
[:dali/page
[:defs
(s/css
(str "rect {stroke: black; mix-blend-mode: difference;}\n"))]
[:rect {:fill :pink} [80 60] [250 250]]
[:rect {:fill :blue} [140 120] [250 250] 80]
[:rect {:fill :turquoise} [180 180] [250 250]]])
then do (d/render-svg blend "diff1.svg") browsers and OSes show me an image like this:

which is correct (I think).
Then if I do (d/render-png blend "diff1.png") I get this:

It seems like the blend mode is being ignored in rasterization? Perhaps this is another batik bug?
Sorry if this is a bit of a dumb question, I'm newish, but, if I use this dali code:
then do

(d/render-svg blend "diff1.svg")browsers and OSes show me an image like this:which is correct (I think).
Then if I do

(d/render-png blend "diff1.png")I get this:It seems like the blend mode is being ignored in rasterization? Perhaps this is another batik bug?