Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.
/ NRawTherapee Public archive

.Net wrapper for the powerful Raw Therapee raw conversion tool.

License

Notifications You must be signed in to change notification settings

AerisG222/NRawTherapee

Repository files navigation

MIT licensed NuGet Travis Coverity Scan

NRawTherapee

A .Net library to wrap the functionality of Raw Therapee.

Motivation

Create a simple wrapper around this excellent program to allow .Net programs to easily convert RAW image files (like Nikon NEF).

Using

  • 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!

Contributing

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.

Todo

I hope to make many improvements to the library as time permits.

  • Add tests
  • Investigate options to bundle Raw Therapee

License

NRawTherapee is licensed under the MIT license. See LICENSE.md for more information.

Reference

About

.Net wrapper for the powerful Raw Therapee raw conversion tool.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages