다음을 통해 공유


BitmapMetadata.Location 속성

정의

이미지에 연결된 메타데이터의 기본 위치를 식별하는 값을 가져옵니다.

public:
 property System::String ^ Location { System::String ^ get(); };
public string Location { [System.Security.SecurityCritical] get; }
public string Location { get; }
[<get: System.Security.SecurityCritical>]
member this.Location : string
member this.Location : string
Public ReadOnly Property Location As String

속성 값

String

이미지 메타데이터의 기본 위치입니다.

특성

예제

다음 코드 예제에서는 개체의 BitmapMetadata 다양한 속성을 읽고 해당 값을 문자열로 MessageBox 보내는 방법을 보여 줍니다.

FileStream stream4 = new FileStream("image3.tif", FileMode.Create);
BitmapMetadata myBitmapMetadata2 = new BitmapMetadata("tiff");
TiffBitmapEncoder encoder4 = new TiffBitmapEncoder();
MessageBox.Show(myBitmapMetadata2.IsFixedSize.ToString());
MessageBox.Show(myBitmapMetadata2.IsReadOnly.ToString());
MessageBox.Show(myBitmapMetadata2.Format.ToString());
MessageBox.Show(myBitmapMetadata2.Location.ToString());
encoder4.Frames = decoder2.Frames;
encoder4.Save(stream4);
stream4.Close();
Dim stream4 As New FileStream("image3.tif", FileMode.Create)
Dim myBitmapMetadata2 As New BitmapMetadata("tiff")
Dim encoder4 As New TiffBitmapEncoder()
MessageBox.Show(myBitmapMetadata2.IsFixedSize.ToString())
MessageBox.Show(myBitmapMetadata2.IsReadOnly.ToString())
MessageBox.Show(myBitmapMetadata2.Format.ToString())
MessageBox.Show(myBitmapMetadata2.Location.ToString())
encoder4.Frames = decoder2.Frames
encoder4.Save(stream4)
stream4.Close()

적용 대상

추가 정보