투명화1 이미지 투명도 변경(Change Opacity) 이미지의 투명도를 변경하는 로직 private Bitmap ChangeOpacity(Image imgData, float fOpacityvalue) { // imgData : 투명화 처리할 이미지 데이터 // fOpacityvalue : 투명도 // 이미지 데이터를 기반으로 Bitmap 생성 Bitmap bmpTmp = new Bitmap(imgData.Width, imgData.Height); Graphics gp = Graphics.FromImage(bmpTmp); ColorMatrix clrMatrix = new ColorMatrix(); // 투명도 설정 clrMatrix.Matrix33 = fOpacityvalue; ImageAttributes imgAttribute = new ImageAttr.. 2020. 12. 3. 이전 1 다음 728x90