|
This article is going to demonstrate the color adjust effects
Here is the source photo

The sample code initialize the objects firstly below
|
[Visual Basic]
Dim objPC As New angGoGo.PhotoController.Controller(
"source.jpg" )
Dim image As Image
|
| |
|
[C#]
Controller objPC = new Controller("source.jpg")
Image image;
|
Here is the photo adjusted by Color.Yellow

|
image = objPC.ColorAdjust ( Color.Yellow
)
|
Here is the photo adjusted by Color.Red

|
image = objPC.ColorAdjust ( Color.Red )
|
Here is the photo after GrayScale

|
image = objPC.ColorAdjust ( AdjustType.GrayScale
)
|
Here is the photo after Grey, Grey adjust will be a little darker than
GrayScale

|
image = objPC.ColorAdjust ( AdjustType.Grey
)
|
Here is the photo after Invert

|
image = objPC.ColorAdjust ( AdjustType.Invert
)
|
Here is the photo after Sepia

|
image = objPC.ColorAdjust ( AdjustType.Sepia
)
|
Here is the photo after BlackWhite

|