C# 클래스 ImageEngine, getputs

Summary description for ImageEngine
파일 보기 프로젝트 열기: vatsal/getputs 1 사용 예제들

공개 메소드들

메소드 설명
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

메소드 상세

ByteArrayToImage() 공개 메소드

public ByteArrayToImage ( byte byteArrayIn ) : Image
byteArrayIn byte
리턴 System.Drawing.Image

CreateThumbnail() 공개 메소드

public CreateThumbnail ( byte byteArrayIn ) : Bitmap
byteArrayIn byte
리턴 Bitmap

CreateThumbnail() 공개 메소드

public CreateThumbnail ( byte byteArrayIn, int lnWidth, int lnHeight ) : Bitmap
byteArrayIn byte
lnWidth int
lnHeight int
리턴 Bitmap

CreateThumbnail() 공개 메소드

public CreateThumbnail ( string lcFilename, int lnWidth, int lnHeight ) : Bitmap
lcFilename string
lnWidth int
lnHeight int
리턴 Bitmap

ImageEngine() 공개 메소드

public ImageEngine ( ) : System
리턴 System

LoadIconLocation() 공개 메소드

Load the Image for the given Tag.
public LoadIconLocation ( string tag ) : string
tag string
리턴 string

LoadSpriteIcon() 공개 메소드

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.
리턴 string

LoadSpriteStaticIcon() 공개 메소드

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.
리턴 string

LoadStaticIconLocation() 공개 메소드

Load the Static Icon Image for the given iconName.
public LoadStaticIconLocation ( string iconName ) : string
iconName string The input iconName.
리턴 string

ScaleBitmap() 공개 메소드

public ScaleBitmap ( Bitmap Bitmap, int scaleWidth, int scaleHeight ) : Bitmap
Bitmap Bitmap
scaleWidth int
scaleHeight int
리턴 Bitmap