如何在asp.net web应用程序中使用cloudary url2png
本文关键字:cloudary url2png 应用程序 web asp net | 更新日期: 2023-09-27 18:14:11
我在cloudary中看到了一些使用url2png的示例代码,在下面的链接
http://cloudinary.com/documentation/url2png_website_screenshots_addon create_website_screenshots
例如nodejs实现如下
cloudinary.url("http://en.wikipedia.org/wiki/Jpg",
{ type: "url2png",
crop: "fill", width: 150, height: 200, gravity: "north"
sign_url: true });
我找不到在c#.net web应用程序中使用相同的示例代码。
谁能建议我如何在c#.net中实现cloudary的url2png
Thanks in advance
下面是一个.NET示例,与您共享的代码相当:
cloudinary.Api.UrlImgUp
.Type("url2png")
.Transform(new Transformation().Crop("fill").Width(150).Height(200).Gravity("north"))
.Signed(true)
.BuildUrl("http://en.wikipedia.org/wiki/Jpg");