A .Net library to wrap the functionality of Raw Therapee.
Create a simple wrapper around this excellent program to allow .Net programs to easily convert RAW image files (like Nikon NEF).
- Install Raw Therapee
- Add a reference to NRawTherapee in your project.json
- Bring down the packages for your project via
dnu restore
using NRawTherapee;
namespace Test
{
public class Example
{
public void Convert(string file)
{
var rt = new RawTherapee(new Options());
var result = rt.Convert(file);
}
}
}
- View the tests for more examples
- You also might want to check out NMagickWand which can then help working with the generated file from NRawTherapee!
I'm happy to accept pull requests. By submitting a pull request, you must be the original author of code, and must not be breaking any laws or contracts.
Otherwise, if you have comments, questions, or complaints, please file issues to this project on the github repo.
I hope to make many improvements to the library as time permits.
- Add tests
- Investigate options to bundle Raw Therapee
NRawTherapee is licensed under the MIT license. See LICENSE.md for more information.
- Raw Therapee: http://rawtherapee.com/