예제 #1
0
파일: Emboss.cs 프로젝트: akbardwi/ShareUP
 public override Image Apply(Image img)
 {
     using (img)
     {
         return(ConvolutionMatrixManager.Emboss().Apply(img));
     }
 }
예제 #2
0
파일: Emboss.cs 프로젝트: McoreD/ShareX
 public override Bitmap Apply(Bitmap bmp)
 {
     using (bmp)
     {
         return(ConvolutionMatrixManager.Emboss().Apply(bmp));
     }
 }