Rank: Member Groups: Member
Joined: 2/24/2006 Posts: 1 Points: 0
|
Hi! Is it possible to extend Graphics Mill.NET with further image formats? Is there something like a plugin API for this purpose? I'm checking if Graphics Mill fits our needs and it is looking good, so far. We need support for a rather esoteric image format, so I'm looking for a way to integrate it as easy as possible in the Graphics Mill framework.
Maybe there is already a HowTo or an article regarding this issue, so a link would help.
Thanks!
|
Rank: Advanced Member Groups: Administration
, Member
Joined: 8/3/2003 Posts: 586 Points: 588
|
Hello, Could you describe your task more detailed? What formats do you want to support? Which information do you want to get from media formats? Now we are releasing new version of Graphics Mill for .NET 3.5 which has add-on for AVI video support. This add-on allows working with AVI files - read, write, recompress, work with audio, etc. If you want to implement custom format reader yourself, it is possible to do it via Graphics Mill for .NET. To do it you should implement the following interfaces: - Aurigma.GraphicsMill.Codecs,IFormaReader (if you want to read image data from files),
- Aurigma.GraphicsMill.Codecs,IFormatWriter (if you want to write image data to files),
- Aurigma.GraphicsMill.Codecs,IFrame,
- Aurigma.GraphicsMill.Codecs,IEncoderOptions,
- Aurigma.GraphicsMill.IAddonModule.
Sincerely yours, Dmitry Sevostyanov.
|