develop

c# binary text to image

파드파드 2024. 9. 20. 15:49
반응형

Q. binary text 를 다시 이미지로 바꾸고 싶다.

 

참고.  image to binary text

https://simplain.tistory.com/482

 

c# image to binary

Q. 이미지 파일을 바이너리 텍스트로 변환 하고 싶다.richTextBox에 보이게 하고, 텍스트 파일도 만들고 싶다. 참고.  binary to imagehttps://simplain.tistory.com/481 c# binary text to imageprivate void btnTxtToImg_Click

simplain.tistory.com

 

1.

        private void btnTxtToImg_Click(object sender, EventArgs e)
        {
            string base64String = rTxtBinayText.Text;

            try
            {
                byte[] imgBytes = Convert.FromBase64String(base64String);

                using (MemoryStream ms = new MemoryStream(imgBytes))
                {
                    using (Image img = Image.FromStream(ms))
                    {
                        img.Save(txtFullFileName.Text, ImageFormat.Png);
                    }
                }

                MessageBox.Show("Success!");
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }

 

 

2. End

반응형