Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a good .NET library for reading RAW files?

Tags:

.net

We're writing a .NET-based app to read images including RAW files. Is there a good library we can use? Perhaps a wrapper around dcraw or libraw? License-wise, LGPL is fine but GPL wouldn't be.

like image 432
Simon Avatar asked Oct 15 '22 17:10

Simon


2 Answers

There isn't yet, but there might be soon, based on the information in the question I asked here, which is more aimed at extending the support to all GDI+ applications.

Pretty much all other options I've come across involve wrapping dcraw (there's example code for a plugin for Paint.Net)

EDIT: Probably should also mention the obvious (well it is now I've found out about it); Windows Imaging Components is supported by at least Canon have a downlaodable codec for it, which will give you support in a WPF application

EDIT2: It doesn't have to be a WPF application itself, just needs v3+ of the Framework to pull in the System.Windows.Media.Imaging namespace fro BitmapFrame/etc.

like image 92
Rowland Shaw Avatar answered Oct 20 '22 19:10

Rowland Shaw


The ImageMagick library, which can read almost every image format, has a .NET wrapper which you could use.

like image 38
codymanix Avatar answered Oct 20 '22 18:10

codymanix