gpt4 book ai didi

ASP.NET 图像大小调整和裁剪

转载 作者:行者123 更新时间:2023-12-01 16:41:14 24 4
gpt4 key购买 nike

我正在寻找 ASP.NET 图像大小调整、裁剪
这在图像调整大小、裁剪等方面很有用。有知道的请分享一下

提前致谢

最佳答案

各位高手啊!!!最后一天我发现http://www.imageresizing.net/太棒了。和良好的API。效果很好。从 Visual studio 2010 扩展管理器下载:http://nuget.org/

在 VS-2010 中下载 API 的简单步骤:

1)。安装扩展 http://nuget.org/ .

enter image description here

3)。查找并安装 ImageResizing
enter image description here

4).然后代码:(我在这里使用裁剪。你可以使用任何)imageresizing.net 上的文档

string uploadFolder = Server.MapPath(Request.ApplicationPath + "images/");
FileUpload1.SaveAs(uploadFolder + FileUpload1.FileName);


//The resizing settings can specify any of 30 commands.. See http://imageresizing.net for details.
ResizeSettings resizeCropSettings = new ResizeSettings("width=200&height=200&format=jpg&crop=auto");

//Generate a filename (GUIDs are safest).
string fileName = Path.Combine(uploadFolder, System.Guid.NewGuid().ToString());

//Let the image builder add the correct extension based on the output file type (which may differ).
fileName = ImageBuilder.Current.Build(uploadFolder + FileUpload1.FileName, fileName, resizeCropSettings, false, true);

试试吧!它非常好用并且易于使用。谢谢。

关于ASP.NET 图像大小调整和裁剪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7094610/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com