public IImageFormat DetectFormat(ReadOnlySpan <byte> header) { if (testFormat.IsSupportedFileFormat(header)) { return(testFormat); } return(null); }
public bool IsSupportedFileFormat(Span <byte> header) => testFormat.IsSupportedFileFormat(header);