(ctx context.Context, o *options.Options, args []string)
| 40 | } |
| 41 | |
| 42 | func (p *Parser) applyExtendAspectRatioOption(ctx context.Context, o *options.Options, args []string) error { |
| 43 | return p.parseExtend(ctx, o, keys.PrefixExtendAspectRatio, args) |
| 44 | } |
| 45 | |
| 46 | func (p *Parser) applySizeOption(ctx context.Context, o *options.Options, args []string) (err error) { |
| 47 | if err = p.ensureMaxArgs(ctx, "size", args, 7); err != nil { |
no test coverage detected