diff --git a/README.md b/README.md index 171be566e3..c8196c8a5d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ **ImageProcessorCore** is a new cross-platform 2D graphics API designed to allow the processing of images without the use of `System.Drawing`. -> **ImageProcessorCore is still in early stages (alpha) but progress has been pretty quick. As such, please do not use on production environments until the library reaches release candidate status.** +> **ImageProcessorCore is still in early stages (alpha) but progress has been pretty quick. As such, please do not use on production environments until the library reaches release candidate status. Pre-release downloads are available from the [MyGet package repository](https://www.myget.org/gallery/imageprocessor).** > For the older `ImageFactory` based API that uses `System.Drawing` please check out the [Framework](https://github.com/JimBobSquarePants/ImageProcessor/tree/Framework) branch. @@ -180,7 +180,7 @@ using (FileStream output = File.OpenWrite("bar.jpg")) Individual processors can be initialised and apply processing against images. This allows nesting which brings the potential for powerful combinations of processing methods: ```csharp -new Brightness(50).Apply(sourceImage, targetImage, sourceImage.Bounds); +new BrightnessProcessor(50).Apply(sourceImage, sourceImage.Bounds); ``` Setting individual pixel values is perfomed as follows: diff --git a/src/ImageProcessorCore/Formats/Jpg/JpegDecoderCore.cs.REMOVED.git-id b/src/ImageProcessorCore/Formats/Jpg/JpegDecoderCore.cs.REMOVED.git-id index 523c9d073e..922e9cccc4 100644 --- a/src/ImageProcessorCore/Formats/Jpg/JpegDecoderCore.cs.REMOVED.git-id +++ b/src/ImageProcessorCore/Formats/Jpg/JpegDecoderCore.cs.REMOVED.git-id @@ -1 +1 @@ -18ba33702f55471f2064a0757b41734924775738 \ No newline at end of file +efdc36c9d84d1fd42bf3b1e722946bccef95db1c \ No newline at end of file