[Mono-dev] Implementation of SetPropertyItem

2010-11-24 Thread Patrick Kowalzick
Dear List, I found that System.Drawing.Image::SetPropertyItem throws a NotImplementedException. The code from looks like public void SetPropertyItem(PropertyItem propitem) { throw new NotImplementedEx

Re: [Mono-dev] Problem running mkbundle using cygwin/windows

2010-10-12 Thread Patrick Kowalzick
Hello Robert, thanks for your answer. >> temp.c: In function `main': >> temp.c:170: warning: implicit declaration of function `g_utf16_to_utf8' >> Any ideas what is missing? (I'd guess a header with a valid definition >> of g_utf16_to_utf8, but I was not able to figure out where to find it). >

[Mono-dev] Problem running mkbundle using cygwin/windows

2010-10-11 Thread Patrick Kowalzick
Dear List, I get an error running mkbundle using cygwin/windows. I installed mono-2.8, cygwin 1.7 (gcc-mingw, mingw-zlib) and set up the paths in my .bashrc. A test run looks like: $ mkbundle -z -o jpegp4d-mono.exe jpegp4d-mono-sharp.exe OS is: Windows Sources: 1 Auto-dependencies: False

Re: [Mono-dev] Reading Exif Data with System.Drawing or Gtk#

2010-09-30 Thread Patrick Kowalzick
Hello Sebastien, thanks for your answer. Am 27.09.2010 14:16, schrieb Sebastien Pouliot: >> Does anyone has a pointer for me, where to search for more information, >> or how to read Exif Data using Gtk? > > Mono (well libgdiplus) use libexif. A quick googling returned the > following link: > > h

[Mono-dev] Reading Exif Data with System.Drawing or Gtk#

2010-09-26 Thread Patrick Kowalzick
Dear List, I am reading exif-data from jpegs (mainly thumb and orientation) using System.Drawing. Something like: string orientation = null; using (FileStream fs = new FileStream(path,FileMode.Open)) using (Image img = Image.FromStream(fs,true,false)) foreach (PropertyItem pi in img.P