<< More Tutorials
How to resize an image by width in C# using rethumb?
To resize an image or photo in C# use the following code:
using System.IO;
using System;
using System.Net;
class CsRethumbExample
{
static void Main()
{
string paramOperation = "width";
int paramValue = 100; // New width in pixels.
string imageURL = "http://images.rethumb.com/image_coimbra_600x300.jpg";
string imageFilename = "resized-image.jpg";
using (WebClient client = new WebClient())
{
client.DownloadFile(string.Format("http://api.rethumb.com/v1/{0}/{1}/{2}", paramOperation, paramValue, imageURL), imageFilename);
}
}
}
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 "resize-by-width.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?