<< More Tutorials
How to use rethumb in C#?
To use rethumb in C# try the following code:
using System.IO;
using System;
using System.Net;
class CsRethumbExample
{
static void Main()
{
using (WebClient client = new WebClient())
{
client.DownloadFile("http://api.rethumb.com/v1/width/100/http://factor45.org/images/beach.jpg", @"beach.thumb.jpg");
}
}
}
Start using this example now
Use the following commands to get started:
$ git clone https://github.com/rethumb/rethumb-csharp-examples.git
$ cd rethumb-csharp-examples
$ ... Use your IDE of choice to handle the file "generic.cs"
More examples using C#
How to use rethumb in C#?
How to resize an image by width in C# using rethumb?
How to resize an image by height in C# using rethumb?
How to resize an image by width and height in C# using rethumb?
How to create a square thumbnail from an image in C# using rethumb?
How to read Exif data in json format from an image in C# using rethumb?
How to make an image responsive in C# using rethumb?
How to read GPS coordinates from an image in C# using rethumb?
How to convert an image to JPG, GIF, PNG, TIF or WebP in C# using rethumb?
How to resize an image to cover any dimensions in C# using rethumb?