본문 바로가기
Programing/vb.net

비쥬얼베이직(비주얼베이직)visual basic,vb.net 강좌-이미지 보기,저장,OpenFileDialog,SaveFileDialog

by 고니의 경제주식 2017. 1. 17.
반응형


 이미지를 보고 저장할수 있는 프로그램입니다.

PictureBox  1개와 버튼2개, OpenFileDialog, SaveFileDialog로 디자인 합니다.

PictureBox SizeMode 는 밑에 설정과 같이 해야 전체적으로 이미지가 다 보입니다.

Public Class Form1


    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

        OpenFileDialog1.ShowDialog()


        If OpenFileDialog1.FileName > "" Then

'

            PictureBox1.ImageLocation = OpenFileDialog1.FileName


        End If

    End Sub


    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click

        SaveFileDialog1.ShowDialog()


        If SaveFileDialog1.FileName > "" Then


            PictureBox1.Image.Save(SaveFileDialog1.FileName)


        End If

    End Sub

End Class


반응형