(format Format)
| 127 | type Option func(*resizeConfig) |
| 128 | |
| 129 | func WithFormat(format Format) Option { |
| 130 | return func(config *resizeConfig) { |
| 131 | config.format = format |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | func WithMode(mode ResizeMode) Option { |
| 136 | return func(config *resizeConfig) { |
no outgoing calls