C# 클래스 System.Windows.Media.Imaging.WriteableBitmapMediaLibraryExtensions

WriteableBitmap extension for WP7 media library
파일 보기 프로젝트 열기: disbitski/DoodlePad

공개 메소드들

메소드 설명
SaveToMediaLibrary ( this bitmap, string name ) : void

Saves the WriteableBitmap encoded as JPEG to the Media library using the best quality of 100.

SaveToMediaLibrary ( this bitmap, string name, int quality ) : void

Saves the WriteableBitmap encoded as JPEG to the Media library.

메소드 상세

SaveToMediaLibrary() 공개 정적인 메소드

Saves the WriteableBitmap encoded as JPEG to the Media library using the best quality of 100.
public static SaveToMediaLibrary ( this bitmap, string name ) : void
bitmap this The WriteableBitmap to save.
name string The name of the destination file.
리턴 void

SaveToMediaLibrary() 공개 정적인 메소드

Saves the WriteableBitmap encoded as JPEG to the Media library.
public static SaveToMediaLibrary ( this bitmap, string name, int quality ) : void
bitmap this The WriteableBitmap to save.
name string The name of the destination file.
quality int The quality for JPEG encoding in the range 0-100, where 100 is best quality size.
리턴 void