<< More Tutorials
How to read Exif data in json format from an image in C# using rethumb?
To read Exif data in json format from an image in C# use the following code:
using System.IO;
using System;
using System.Net;
class CsRethumbExample
{
static void Main()
{
using (WebClient client = new WebClient())
{
string response = client.DownloadString("http://api.rethumb.com/v1/exif/all/http://images.rethumb.com/image_exif_1.jpg");
Console.Write(response);
// Use your favorite json library to parse the response!
}
}
}
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 "read-exif-data-in-json.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?