I have seen some sample code in cloudinary for using url2png, in the below link
http://cloudinary.com/documentation/url2png_website_screenshots_addon#create_website_screenshots
For example nodejs implementation like below
cloudinary.url("http://en.wikipedia.org/wiki/Jpg",
{ type: "url2png",
crop: "fill", width: 150, height: 200, gravity: "north"
sign_url: true });
I could not find any sample code for using the same in c#.net web app.
Can any one suggest me how to implement cloudinary's url2png in c#.net
Thanks in advance