C# 클래스 ImageProcessor.Imaging.Formats.PngFormat

Provides the necessary information to support png images.
상속: FormatBase, IQuantizableImageFormat
파일 보기 프로젝트 열기: JimBobSquarePants/ImageProcessor 1 사용 예제들

공개 메소드들

메소드 설명
Save ( Stream stream, Image image, long bitDepth ) : Image

Saves the current image to the specified output stream.

Save ( string path, Image image, long bitDepth ) : Image

Saves the current image to the specified file path.

비공개 메소드들

메소드 설명
WuQuantizer ( ) : System.Drawing

메소드 상세

Save() 공개 메소드

Saves the current image to the specified output stream.
public Save ( Stream stream, Image image, long bitDepth ) : Image
stream System.IO.Stream /// The to save the image information to. ///
image System.Drawing.Image /// The to save. ///
bitDepth long /// The color depth in number of bits per pixel to save the image with. ///
리턴 System.Drawing.Image

Save() 공개 메소드

Saves the current image to the specified file path.
public Save ( string path, Image image, long bitDepth ) : Image
path string The path to save the image to.
image System.Drawing.Image /// The to save. ///
bitDepth long /// The color depth in number of bits per pixel to save the image with. ///
리턴 System.Drawing.Image