我需要使用Magic.Net C#优化图像。它没有使用以下代码优化图像的大小。如何为Google页面压缩图像速度批准。
图片属性屏幕截图http://prntscr.com/oh6mwx
以下代码未优化图像尺寸。请提供其他方法来优化图像以提高Google页面速度。
Stream stream = new MemoryStream(binary);
var optimizer = new ImageOptimizer();
if (optimizer.IsSupported(stream))
{
optimizer.Compress(stream);
_fileProvider.WriteAllBytes(thumbFilePath, ReadFully(stream));
}
else
_fileProvider.WriteAllBytes(thumbFilePath, binary);