C# 클래스 Sphere.Core.Utility.BitmapSaver

Saves bitmap to a filestream.
파일 보기 프로젝트 열기: Radnen/spherestudio 1 사용 예제들

공개 메소드들

메소드 설명
BitmapSaver ( int width, int height ) : System.Drawing

Creates a bitmap saver, which saves bitmaps to filestreams.

SaveToStream ( Bitmap image, BinaryWriter writer ) : void

Saves the image to a filestream.

메소드 상세

BitmapSaver() 공개 메소드

Creates a bitmap saver, which saves bitmaps to filestreams.
public BitmapSaver ( int width, int height ) : System.Drawing
width int The image width in pixels.
height int The image height in pixels.
리턴 System.Drawing

SaveToStream() 공개 메소드

Saves the image to a filestream.
public SaveToStream ( Bitmap image, BinaryWriter writer ) : void
image System.Drawing.Bitmap The image to save.
writer System.IO.BinaryWriter The System.IO.BinaryWriter to use.
리턴 void