如何在 ac# 控制台应用程序中使用 AutoRotate 插件?我想我可以做一些事情,settings.AutoRotate = true;
比如我可以改变适合模式来使用缝雕刻插件。
我已经尝试settings.Add("autorotate","true")
过 keycollection 以及其他键名AutoRotate
和autoRotate
.
我以一种简单的方法使用它。
new AutoRotate().Install(ImageResizer.Configuration.Config.Current);
...
protected static Image ResizeImage(Image image, double scaleFactor)
{
var settings = new ResizeSettings
{
Scale = ScaleMode.Both,
Width = (int)Math.Floor(Image.Width * scaleFactor),
Height = (int)Math.Floor(Image.Height * scaleFactor),
Mode = FitMode.None,
Format = "png"
};
settings.Set("autorotate", "true");
return ImageBuilder.Current.Build(image, settings, true);
}