C# 클래스 ARCed.Scintilla.XpmConverter

Converts Bitmap images to XPM data for use with ARCed.Scintilla. Warning: images with more than (around) 50 colors will generate incorrect XPM The XpmConverter class was based on code from flashdevelop.
파일 보기 프로젝트 열기: borisblizzard/arcreator

공개 프로퍼티들

프로퍼티 타입 설명
DefaultTransparentColor string

공개 메소드들

메소드 설명
ConvertToXPM ( ImageList imageList ) : List

Cicles an _srcTexture list object to convert contained images into xpm at the same time we add converted images into an arraylist that lets us to retrieve images later. Uses the DefaultTransparentColor.

ConvertToXPM ( ImageList imageList, string transparentColor ) : List

Cicles an _srcTexture list object to convert contained images into xpm at the same time we add converted images into an arraylist that lets us to retrieve images later

ConvertToXPM ( Bitmap bmp ) : string

Converts Bitmap images to XPM data for use with ARCed.Scintilla. Warning: images with more than (around) 50 colors will generate incorrect XPM. Uses the DefaultTransparentColor.

ConvertToXPM ( Bitmap bmp, string transparentColor ) : string

Converts Bitmap images to XPM data for use with ARCed.Scintilla. Warning: images with more than (around) 50 colors will generate incorrect XPM tColor: specified transparent color in format: "#00FF00".

메소드 상세

ConvertToXPM() 공개 정적인 메소드

Cicles an _srcTexture list object to convert contained images into xpm at the same time we add converted images into an arraylist that lets us to retrieve images later. Uses the DefaultTransparentColor.
public static ConvertToXPM ( ImageList imageList ) : List
imageList System.Windows.Forms.ImageList The _srcTexture list to transform.
리턴 List

ConvertToXPM() 공개 정적인 메소드

Cicles an _srcTexture list object to convert contained images into xpm at the same time we add converted images into an arraylist that lets us to retrieve images later
public static ConvertToXPM ( ImageList imageList, string transparentColor ) : List
imageList System.Windows.Forms.ImageList The _srcTexture list to transform.
transparentColor string The overriding transparent Color
리턴 List

ConvertToXPM() 공개 정적인 메소드

Converts Bitmap images to XPM data for use with ARCed.Scintilla. Warning: images with more than (around) 50 colors will generate incorrect XPM. Uses the DefaultTransparentColor.
public static ConvertToXPM ( Bitmap bmp ) : string
bmp System.Drawing.Bitmap The _srcTexture to transform.
리턴 string

ConvertToXPM() 공개 정적인 메소드

Converts Bitmap images to XPM data for use with ARCed.Scintilla. Warning: images with more than (around) 50 colors will generate incorrect XPM tColor: specified transparent color in format: "#00FF00".
public static ConvertToXPM ( Bitmap bmp, string transparentColor ) : string
bmp System.Drawing.Bitmap The _srcTexture to transform.
transparentColor string The overriding transparent Color
리턴 string

프로퍼티 상세

DefaultTransparentColor 공개적으로 정적으로 프로퍼티

The default transparent Color
public static string DefaultTransparentColor
리턴 string