Browse Source

Fix issue links on readme.

Former-commit-id: a21745821192ec08c14b6ec50f209d008617e42b
Former-commit-id: d84a73ba541c7621460e2c97aae952fb7e2f54df
Former-commit-id: ef32ac856e590be47cbe234076246aec0cb79610
af/merge-core
James Jackson-South 10 years ago
parent
commit
00a65396e4
  1. 20
      README.md
  2. 3
      tests/ImageProcessor.Tests/Processors/Samplers/SamplerTests.cs

20
README.md

@ -45,7 +45,7 @@ git clone https://github.com/JimBobSquarePants/ImageProcessor
- [x] bmp (More bmp format saving support required, 24bit just now) - [x] bmp (More bmp format saving support required, 24bit just now)
- [x] png (Need updating for saving indexed support) - [x] png (Need updating for saving indexed support)
- [x] gif - [x] gif
- Basic color structs with implicit operators. Vector backed. #260 - Basic color structs with implicit operators. Vector backed. [#260](https://github.com/JimBobSquarePants/ImageProcessor/issues/260)
- [x] Color - Float based, premultiplied alpha, No limit to r, g, b, a values allowing for a fuller color range. - [x] Color - Float based, premultiplied alpha, No limit to r, g, b, a values allowing for a fuller color range.
- [x] BGRA32 - [x] BGRA32
- [ ] CIE Lab - [ ] CIE Lab
@ -67,7 +67,7 @@ git clone https://github.com/JimBobSquarePants/ImageProcessor
- [x] Lanczos5 - [x] Lanczos5
- [x] Lanczos8 - [x] Lanczos8
- [x] MitchelNetravali - [x] MitchelNetravali
- [ ] Nearest Neighbour #257 - [x] Nearest Neighbour
- [x] Robidoux - [x] Robidoux
- [x] Robidoux Sharp - [x] Robidoux Sharp
- [x] Robidoux Soft - [x] Robidoux Soft
@ -79,8 +79,8 @@ git clone https://github.com/JimBobSquarePants/ImageProcessor
- [ ] Elliptical Crop - [ ] Elliptical Crop
- [x] Entropy Crop - [x] Entropy Crop
- Rotation - Rotation
- [ ] Flip (90, 270, FlipType etc. Need help) #261 - [ ] Flip (90, 270, FlipType etc. Need help) [#261](https://github.com/JimBobSquarePants/ImageProcessor/issues/261)
- [ ] Rotate by angle (Need help) #258 - [] Rotate by angle (Need help with Paeth approach) [#258](https://github.com/JimBobSquarePants/ImageProcessor/issues/258)
- ColorMatrix operations (Uses Matrix4x4) - ColorMatrix operations (Uses Matrix4x4)
- [x] BlackWhite - [x] BlackWhite
- [x] Greyscale BT709 - [x] Greyscale BT709
@ -102,7 +102,7 @@ git clone https://github.com/JimBobSquarePants/ImageProcessor
- Blurring/ Sharpening - Blurring/ Sharpening
- [x] Gaussian blur - [x] Gaussian blur
- [x] Gaussian sharpening - [x] Gaussian sharpening
- [ ] Box Blur #263 - [ ] Box Blur [#263](https://github.com/JimBobSquarePants/ImageProcessor/issues/263)
- Filters - Filters
- [x] Alpha - [x] Alpha
- [x] Contrast - [x] Contrast
@ -111,17 +111,17 @@ git clone https://github.com/JimBobSquarePants/ImageProcessor
- [x] Brightness - [x] Brightness
- [x] Pixelate - [x] Pixelate
- [x] Saturation - [x] Saturation
- [ ] Hue #262 - [ ] Hue [#262](https://github.com/JimBobSquarePants/ImageProcessor/issues/262)
- [x] Blend - [x] Blend
- [ ] Mask - [ ] Mask
- Effects - Effects
- [ ] Pattern brushes (Need help) #264 - [ ] Pattern brushes (Need help) [#264](https://github.com/JimBobSquarePants/ImageProcessor/issues/264)
- [ ] Elliptical brushes (Need help) #264 - [ ] Elliptical brushes (Need help) [#264](https://github.com/JimBobSquarePants/ImageProcessor/issues/264)
- [ ] Gradient brush (vignette? Need help) #264 - [ ] Gradient brush (vignette? Need help) [#264](https://github.com/JimBobSquarePants/ImageProcessor/issues/264)
- Other stuff I haven't thought of. - Other stuff I haven't thought of.
###What might never happen ###What might never happen
- Exif manipulation - There's a lot of quirks in parsing EXIF and I'd need a ton of help to get it all coded. - Exif manipulation - There's a lot of quirks in parsing EXIF and I'd need a ton of help to get it all coded. [#78](https://github.com/JimBobSquarePants/ImageProcessor/issues/78)
- Font support (Depends on new System.Text stuff) I don't know where to start coding this so if you have any pointers please chip in. - Font support (Depends on new System.Text stuff) I don't know where to start coding this so if you have any pointers please chip in.
###API Changes ###API Changes

3
tests/ImageProcessor.Tests/Processors/Samplers/SamplerTests.cs

@ -1,5 +1,4 @@
 namespace ImageProcessor.Tests
namespace ImageProcessor.Tests
{ {
using System.Diagnostics; using System.Diagnostics;
using System.IO; using System.IO;

Loading…
Cancel
Save