Does somebody know a class library which offers basic image manipulation and also gets and sets exif and iptc metadata? If possible for free...I found some components, but these were quite too expensive...(max 40$).
This is my class to get EXIF info from regular .jpg picture
using System;
using System.Text;
using System.Collections;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
namespace CreateHTML {
/* This classs was rewrited from EXIF.py script from Gene Cash
Contains code from "exifdump.py" originally written by Thierry Bousch
<bousch@topo.math.u-psud.fr> and released into the public domain.
Updated and turned into general-purpose library by Gene Cash
<email gcash at cfl.rr.com>
Copyright 2002 All rights reserved
*/
public class GetExifInfo {
public const int EXIF_ORIGDATE = 36867;
public const int EXIF_USERCMNT = 37510;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.