(c *Context)
| 204 | } |
| 205 | |
| 206 | func (p *Processor) watermark(c *Context) error { |
| 207 | if p.watermarkProvider == nil || c.PO.WatermarkOpacity() == 0 { |
| 208 | return nil |
| 209 | } |
| 210 | |
| 211 | return p.applyWatermark(c.Ctx, c.Img, c.PO, c.DprScale, 1) |
| 212 | } |
nothing calls this directly
no test coverage detected