(ctx context.Context, o *options.Options, args []string)
| 339 | } |
| 340 | |
| 341 | func (p *Parser) applyPixelateOption(ctx context.Context, o *options.Options, args []string) error { |
| 342 | return p.parsePositiveInt(ctx, o, keys.Pixelate, args...) |
| 343 | } |
| 344 | |
| 345 | func (p *Parser) applyWatermarkOption(ctx context.Context, o *options.Options, args []string) error { |
| 346 | if err := p.ensureMaxArgs(ctx, "watermark", args, 7); err != nil { |
no test coverage detected