zxing.dll 파일을 이용해서 간단히 QR 코드 만드는 방법을 포스팅을 해 보겠습니다 우선 dll 파일을 참조합니다 해당 파일을 프로젝트 폴더에 넣으시고 프로젝트 참조에서 zxing.dll 파일을 참조합니다 이후 아래와 같이 코드를 작성하시면 쉽게 QR코드 생성이 가능합니다 using ZXing; using ZXing.QrCode; public void MakeQRCode(string strCode, PictureBox picturebox) { IBarcodeWriter writer = new BarcodeWriter(); writer.Format = BarcodeFormat.QR_CODE; writer.Options.Width = picturebox.Width; writer.Options.Heigh..