C# Class GimSharp.GimTexture

Afficher le fichier Open project: nickworonekin/puyotools Class Usage Examples

Méthodes publiques

Méthode Description
GimTexture ( Stream source ) : System

Open a GIM texture from a stream.

GimTexture ( Stream source, int length ) : System

Open a GIM texture from a stream.

GimTexture ( byte source ) : System

Open a GIM texture from a byte array.

GimTexture ( byte source, int offset, int length ) : System

Open a GIM texture from a byte array.

GimTexture ( string file ) : System

Open a GIM texture from a file.

Is ( Stream source ) : bool

Determines if this is a GIM texture.

Is ( Stream source, int length ) : bool

Determines if this is a GIM texture.

Is ( byte source ) : bool

Determines if this is a GIM texture.

Is ( byte source, int offset, int length ) : bool

Determines if this is a GIM texture.

Is ( string file ) : bool

Determines if this is a GIM texture.

Save ( Stream destination ) : void

Saves the decoded texture to the specified stream.

Save ( string file ) : void

Saves the decoded texture to the specified file.

ToArray ( ) : byte[]

Returns the decoded texture as an array containg raw 32-bit ARGB data.

ToBitmap ( ) : Bitmap

Returns the decoded texture as a bitmap.

ToStream ( ) : MemoryStream

Returns the decoded texture as a stream containg a PNG.

Private Methods

Méthode Description
DecodeTexture ( ) : byte[]
Initalize ( ) : void

Method Details

GimTexture() public méthode

Open a GIM texture from a stream.
public GimTexture ( Stream source ) : System
source Stream Stream that contains the texture data.
Résultat System

GimTexture() public méthode

Open a GIM texture from a stream.
public GimTexture ( Stream source, int length ) : System
source Stream Stream that contains the texture data.
length int Number of bytes to read.
Résultat System

GimTexture() public méthode

Open a GIM texture from a byte array.
public GimTexture ( byte source ) : System
source byte Byte array that contains the texture data.
Résultat System

GimTexture() public méthode

Open a GIM texture from a byte array.
public GimTexture ( byte source, int offset, int length ) : System
source byte Byte array that contains the texture data.
offset int Offset of the texture in the array.
length int Number of bytes to read.
Résultat System

GimTexture() public méthode

Open a GIM texture from a file.
public GimTexture ( string file ) : System
file string Filename of the file that contains the texture data.
Résultat System

Is() public static méthode

Determines if this is a GIM texture.
public static Is ( Stream source ) : bool
source Stream The stream to read from. The stream position is not changed.
Résultat bool

Is() public static méthode

Determines if this is a GIM texture.
public static Is ( Stream source, int length ) : bool
source Stream The stream to read from. The stream position is not changed.
length int Number of bytes to read.
Résultat bool

Is() public static méthode

Determines if this is a GIM texture.
public static Is ( byte source ) : bool
source byte Byte array containing the data.
Résultat bool

Is() public static méthode

Determines if this is a GIM texture.
public static Is ( byte source, int offset, int length ) : bool
source byte Byte array containing the data.
offset int The offset in the byte array to start at.
length int Length of the data (in bytes).
Résultat bool

Is() public static méthode

Determines if this is a GIM texture.
public static Is ( string file ) : bool
file string Filename of the file that contains the data.
Résultat bool

Save() public méthode

Saves the decoded texture to the specified stream.
public Save ( Stream destination ) : void
destination Stream The stream to save the texture to.
Résultat void

Save() public méthode

Saves the decoded texture to the specified file.
public Save ( string file ) : void
file string Name of the file to save the data to.
Résultat void

ToArray() public méthode

Returns the decoded texture as an array containg raw 32-bit ARGB data.
public ToArray ( ) : byte[]
Résultat byte[]

ToBitmap() public méthode

Returns the decoded texture as a bitmap.
public ToBitmap ( ) : Bitmap
Résultat System.Drawing.Bitmap

ToStream() public méthode

Returns the decoded texture as a stream containg a PNG.
public ToStream ( ) : MemoryStream
Résultat System.IO.MemoryStream