(format imagetype.Type)
| 123 | } |
| 124 | |
| 125 | func (po ProcessingOptions) SetFormat(format imagetype.Type) { |
| 126 | po.Set(keys.Format, format) |
| 127 | } |
| 128 | |
| 129 | func (po ProcessingOptions) ShouldSkipFormatProcessing(inFormat imagetype.Type) bool { |
| 130 | return slices.Contains(po.config.SkipProcessingFormats, inFormat) || |
no test coverage detected