如何使用C#使用Magic.Net压缩图像

时间:2019-07-19 08:36:55

标签: c# imagemagick

我需要使用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);

0 个答案:

没有答案