BitmapCodecInfo 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이미징 코덱에 대한 정보를 제공합니다.
public ref class BitmapCodecInfo abstract
public abstract class BitmapCodecInfo
type BitmapCodecInfo = class
Public MustInherit Class BitmapCodecInfo
- 상속
-
BitmapCodecInfo
예제
다음 예제에서는 검색 하는 방법에 설명 합니다 Author 의 속성을 지정 BitmapEncoder합니다.
FileStream stream = new FileStream("empty.tif", FileMode.Create);
TiffBitmapEncoder encoder = new TiffBitmapEncoder();
TextBlock myTextBlock = new TextBlock();
myTextBlock.Text = "Codec Author is: " + encoder.CodecInfo.Author.ToString();
encoder.Frames.Add(BitmapFrame.Create(image));
MessageBox.Show(myPalette.Colors.Count.ToString());
encoder.Save(stream);
Dim stream As New FileStream("empty.tif", FileMode.Create)
Dim encoder As New TiffBitmapEncoder()
Dim myTextBlock As New TextBlock()
myTextBlock.Text = "Codec Author is: " + encoder.CodecInfo.Author.ToString()
encoder.Frames.Add(BitmapFrame.Create(image))
MessageBox.Show(myPalette.Colors.Count.ToString())
encoder.Save(stream)
설명
A BitmapCodecInfo 는 속성 또는 CodecInfo 속성을 사용하여 WPF(Windows Presentation Foundation)의 각 코덱에 CodecInfo 대해 가져올 수 있습니다.
생성자
BitmapCodecInfo() |
BitmapCodecInfo의 새 인스턴스를 초기화합니다. |
속성
Author |
코덱의 작성자를 식별하는 값을 가져옵니다. |
ContainerFormat |
코덱의 컨테이너 형식을 식별하는 값을 가져옵니다. |
DeviceManufacturer |
코덱의 디바이스 제조업체를 식별하는 값을 가져옵니다. |
DeviceModels |
코덱의 디바이스 모델을 식별하는 값을 가져옵니다. |
FileExtensions |
코덱과 연결된 파일 확장명을 식별하는 값을 가져옵니다. |
FriendlyName |
코덱의 이름을 나타내는 값을 가져옵니다. |
MimeTypes |
코덱과 연결된 MIME(다목적 인터넷 메일 확장)를 식별하는 값을 가져옵니다. |
SpecificationVersion |
코덱의 사양 버전을 식별하는 값을 가져옵니다. |
SupportsAnimation |
코덱에서 애니메이션을 지원하는지 여부를 나타내는 값을 가져옵니다. |
SupportsLossless |
코덱이 이미지의 무손실을 지원하는지 여부를 나타내는 값을 가져옵니다. |
SupportsMultipleFrames |
코덱에서 여러 프레임을 지원하는지 여부를 식별하는 값을 가져옵니다. |
Version |
코덱의 버전을 식별하는 값을 가져옵니다. |
메서드
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다. (다음에서 상속됨 Object) |