C# Class ImageEngine, getputs

Summary description for ImageEngine
Afficher le fichier Open project: vatsal/getputs Class Usage Examples

Méthodes publiques

Méthode Description
ByteArrayToImage ( byte byteArrayIn ) : Image
CreateThumbnail ( byte byteArrayIn ) : Bitmap
CreateThumbnail ( byte byteArrayIn, int lnWidth, int lnHeight ) : Bitmap
CreateThumbnail ( string lcFilename, int lnWidth, int lnHeight ) : Bitmap
ImageEngine ( ) : System
LoadIconLocation ( string tag ) : string

Load the Image for the given Tag.

LoadSpriteIcon ( string tag ) : string

Load Icons from Icon Sprite (Uses sprite.css) for loading Icons. This method is quicker as compared to using the LoadIconLocation() Method of ImageEngine.cs.

LoadSpriteStaticIcon ( string tag ) : string

Load Icons from Icon Sprite (Uses sprite.css) for loading Icons. This method is quicker as compared to using the LoadStaticIconLocation() Method of ImageEngine.cs.

LoadStaticIconLocation ( string iconName ) : string

Load the Static Icon Image for the given iconName.

ScaleBitmap ( Bitmap Bitmap, int scaleWidth, int scaleHeight ) : Bitmap

Method Details

ByteArrayToImage() public méthode

public ByteArrayToImage ( byte byteArrayIn ) : Image
byteArrayIn byte
Résultat System.Drawing.Image

CreateThumbnail() public méthode

public CreateThumbnail ( byte byteArrayIn ) : Bitmap
byteArrayIn byte
Résultat Bitmap

CreateThumbnail() public méthode

public CreateThumbnail ( byte byteArrayIn, int lnWidth, int lnHeight ) : Bitmap
byteArrayIn byte
lnWidth int
lnHeight int
Résultat Bitmap

CreateThumbnail() public méthode

public CreateThumbnail ( string lcFilename, int lnWidth, int lnHeight ) : Bitmap
lcFilename string
lnWidth int
lnHeight int
Résultat Bitmap

ImageEngine() public méthode

public ImageEngine ( ) : System
Résultat System

LoadIconLocation() public méthode

Load the Image for the given Tag.
public LoadIconLocation ( string tag ) : string
tag string
Résultat string

LoadSpriteIcon() public méthode

Load Icons from Icon Sprite (Uses sprite.css) for loading Icons. This method is quicker as compared to using the LoadIconLocation() Method of ImageEngine.cs.
public LoadSpriteIcon ( string tag ) : string
tag string The input Category.
Résultat string

LoadSpriteStaticIcon() public méthode

Load Icons from Icon Sprite (Uses sprite.css) for loading Icons. This method is quicker as compared to using the LoadStaticIconLocation() Method of ImageEngine.cs.
public LoadSpriteStaticIcon ( string tag ) : string
tag string The input tag.
Résultat string

LoadStaticIconLocation() public méthode

Load the Static Icon Image for the given iconName.
public LoadStaticIconLocation ( string iconName ) : string
iconName string The input iconName.
Résultat string

ScaleBitmap() public méthode

public ScaleBitmap ( Bitmap Bitmap, int scaleWidth, int scaleHeight ) : Bitmap
Bitmap Bitmap
scaleWidth int
scaleHeight int
Résultat Bitmap