Image.GetPropertyItem(Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 속성 항목을 이 Image에서 가져옵니다.
public:
System::Drawing::Imaging::PropertyItem ^ GetPropertyItem(int propid);
public System.Drawing.Imaging.PropertyItem GetPropertyItem (int propid);
public System.Drawing.Imaging.PropertyItem? GetPropertyItem (int propid);
member this.GetPropertyItem : int -> System.Drawing.Imaging.PropertyItem
Public Function GetPropertyItem (propid As Integer) As PropertyItem
매개 변수
- propid
- Int32
가져올 속성 항목의 ID입니다.
반환
이 메서드가 가져오는 PropertyItem입니다.
예외
이 이미지의 이미지 형식이 속성 항목을 지원하지 않는 경우
예제
다음 코드 예제를 사용 GetPropertyItem 하는 방법을 보여 줍니다는 및 SetPropertyItem 메서드. 이 예제에서는 ID 값 전달을 호출 GetPropertyItem 합니다. ID 값 목록은 를 참조Id하세요. 이 예제는 Windows Forms 사용하도록 설계되었습니다. 이 예제를 실행하려면 폼에 붙여넣고 메서드를 호출 DemonstratePropertyItem
하여 폼의 Paint 이벤트를 처리하고 를 로 PaintEventArgs전달 e
합니다.
private:
void DemonstratePropertyItem( PaintEventArgs^ e )
{
// Create two images.
Image^ image1 = Image::FromFile( "c:\\FakePhoto1.jpg" );
Image^ image2 = Image::FromFile( "c:\\FakePhoto2.jpg" );
// Get a PropertyItem from image1.
PropertyItem^ propItem = image1->GetPropertyItem( 20624 );
// Change the ID of the PropertyItem.
propItem->Id = 20625;
// Set the PropertyItem for image2.
image2->SetPropertyItem( propItem );
// Draw the image.
e->Graphics->DrawImage( image2, 20.0F, 20.0F );
}
private void DemonstratePropertyItem(PaintEventArgs e)
{
// Create two images.
Image image1 = Image.FromFile("c:\\FakePhoto1.jpg");
Image image2 = Image.FromFile("c:\\FakePhoto2.jpg");
// Get a PropertyItem from image1.
PropertyItem propItem = image1.GetPropertyItem(20624);
// Change the ID of the PropertyItem.
propItem.Id = 20625;
// Set the PropertyItem for image2.
image2.SetPropertyItem(propItem);
// Draw the image.
e.Graphics.DrawImage(image2, 20.0F, 20.0F);
}
Private Sub DemonstratePropertyItem(ByVal e As PaintEventArgs)
' Create two images.
Dim image1 As Image = Image.FromFile("c:\FakePhoto1.jpg")
Dim image2 As Image = Image.FromFile("c:\FakePhoto2.jpg")
' Get a PropertyItem from image1.
Dim propItem As PropertyItem = image1.GetPropertyItem(20624)
' Change the ID of the PropertyItem.
propItem.Id = 20625
' Set the PropertyItem for image2.
image2.SetPropertyItem(propItem)
' Draw the image.
e.Graphics.DrawImage(image2, 20.0F, 20.0F)
End Sub
설명
속성 항목 ID 목록 및 자세한 내용에 대한 링크는 를 참조하세요 Id.
클래스에 공용 생성자가 없으므로 속성 항목을 PropertyItem 설정하기 어렵습니다. 이 제한을 해결하는 한 가지 방법은 속성 값을 검색 PropertyItems 하거나 속성 항목이 이미 있는 의 메서드를 Image 호출 GetPropertyItem 하여 를 가져오는 PropertyItem 것입니다. 그런 다음 의 PropertyItem 필드를 설정하고 에 전달할 SetPropertyItem수 있습니다.
적용 대상
.NET