ste
07/20/2022, 7:36 AMCanvas
? Given the dark blue rect and the black text, how should I blend them? I tried every single BlendMode
, but none of them gave the desired result. I need to whiten the part of the text that overlaps the rect (or, alternatively, clear the part or the rect the text would overlap)clipPath(textPath, ClipOp.Difference) {
drawDarkBlueRect()
}
// ^ this draws the blue rect with white (bg) "Comp"
clipRect(darkBlueRect, ClipOp.Difference) {
drawTextPath()
}
// ^ this one draws the black "pose"
I'm gonna try this nowOleksandr Balan
07/20/2022, 7:57 AMste
07/20/2022, 8:05 AM