Browse Source

Fix code sample [skip ci]

Former-commit-id: cbc733ee9c569812e938c257dcbd3a37f99df75b
Former-commit-id: f183fbb304bb931fbc271a66ba2170d68da166f8
Former-commit-id: d03e7311c8beaee5e6928a58a9afa679d8a14ae2
pull/1/head
James Jackson-South 10 years ago
committed by GitHub
parent
commit
b1f2a26990
  1. 2
      README.md

2
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:

Loading…
Cancel
Save