From dea0bfc65dfb89587b42045075cf51d43462a1ea Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Sun, 11 Sep 2016 09:54:43 +1000 Subject: [PATCH 1/3] Boost dl link [skip ci] Former-commit-id: 9b5d037ba38962fa7f59548b34462a046e1514de Former-commit-id: 778b4055296a7b4f66b81c3a56c868d0e5a986f5 Former-commit-id: f94335455d5756b7df15d79aaa0303f5bd19a8fd --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 171be566e3..b5e3ea4979 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. From b1f2a26990659dcfda0c29fa83bc8679018f6450 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Mon, 12 Sep 2016 10:24:05 +1000 Subject: [PATCH 2/3] Fix code sample [skip ci] Former-commit-id: cbc733ee9c569812e938c257dcbd3a37f99df75b Former-commit-id: f183fbb304bb931fbc271a66ba2170d68da166f8 Former-commit-id: d03e7311c8beaee5e6928a58a9afa679d8a14ae2 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b5e3ea4979..c8196c8a5d 100644 --- a/README.md +++ b/README.md @@ -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: From 643fbd7a001ff84fb77ef49135de501cc6339902 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Tue, 13 Sep 2016 18:04:06 +1000 Subject: [PATCH 3/3] A little more cleanup [skip ci] Former-commit-id: ccf6f406bcc7b8211a8c39b500040225ccb01f1a Former-commit-id: fb72a3de8a3acc7e9aa2e22f3d39ca0ac8b78973 Former-commit-id: 42eabe6a4fd7bc09b63d3e295910f733d5422467 --- .../Formats/Jpg/JpegDecoderCore.cs.REMOVED.git-id | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageProcessorCore/Formats/Jpg/JpegDecoderCore.cs.REMOVED.git-id b/src/ImageProcessorCore/Formats/Jpg/JpegDecoderCore.cs.REMOVED.git-id index c81ba3bfcc..68ae59b3d0 100644 --- a/src/ImageProcessorCore/Formats/Jpg/JpegDecoderCore.cs.REMOVED.git-id +++ b/src/ImageProcessorCore/Formats/Jpg/JpegDecoderCore.cs.REMOVED.git-id @@ -1 +1 @@ -76fed06f465ff04c1c98dbe7709b70a378c6e732 \ No newline at end of file +9713ed3ce6357c4e6bb6831289b4f1bc6e6034c9 \ No newline at end of file