Home    PhotoController Online Documentation Prev Next
PhotoController
Welcome
Features
Installation
Release Notes
What's New
Requirements
Reference
Classes
Controller
Methods
Properties
FeatherBuilder
Methods
Properties
PhotoControllerException
Structure
Borders
Filters
Enumeration
AdjustType
AnchorType
CompressionType
FilterStyle
FeatherBackgroundStyle
FlipFlags
PhotoBorderStyle
PhotoFormat
Artical
Another Use with Feather
Effect with ColorAdjust
Effect with Filters
Effect with Borders
Feather Samples
Gif Compression Algorithm
Resize the uploaded image
Saving Comparison
Saving Gif
Why Using InterpolationMode
Work with ASP.NET
Write Customized Borders
License
Purchase
[Top]
PhotoController Component for .NET ImageComponent.NET Logo
Effect with ColorAdjust


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

 

2005-2007 © ImageComponent.NET. All rights reserved.

Valid HTML 4.01 Transitional