방법: 축소판 이미지 만들기
업데이트: 2007년 11월
축소판 이미지는 이미지를 축소한 버전입니다. Image 개체의 GetThumbnailImage 메서드를 호출하여 축소판 이미지를 만들 수 있습니다.
예제
다음 예제에서는 Compass.bmp 파일에서 Image 개체를 만듭니다. 원래 이미지의 너비는 640픽셀이고 높이는 479픽셀입니다. 이 코드에서는 너비와 높이가 100 픽셀인 축소판 이미지를 만듭니다.
아래 그림에 축소판 이미지가 나와 있습니다.
Dim image As New Bitmap("Compass.bmp")
Dim pThumbnail As Image = image.GetThumbnailImage(100, 100, Nothing, _
New IntPtr())
e.Graphics.DrawImage( _
pThumbnail, _
10, _
10, _
pThumbnail.Width, _
pThumbnail.Height)
Image image = new Bitmap("Compass.bmp");
Image pThumbnail = image.GetThumbnailImage(100, 100, null, new
IntPtr());
e.Graphics.DrawImage(
pThumbnail,
10,
10,
pThumbnail.Width,
pThumbnail.Height);
코드 컴파일
앞의 예제는 Windows Forms에서 사용해야 하며 Paint 이벤트 처리기의 매개 변수인 PaintEventArgs e를 필요로 합니다.