0

تاپیک جامع نکات در سی شارپ

 
siryahya
siryahya
کاربر طلایی1
تاریخ عضویت : اسفند 1389 
تعداد پست ها : 158652
محل سکونت : ▂▃▄▅▆▇█Tabriz█▇▆▅▄▃▂

پاسخ به:تاپیک جامع نکات در سی شارپ
سه شنبه 22 اردیبهشت 1394  2:02 AM

Arrow سیاه و سفید کردن عکس با کد نویسی
توسط متد زیر می توانید هر عکسی را به حالت سیاه و سفید در بیارید
 
کد:
public Image GrayScaleImage(Graphics graph, Image img, int left, int top)
       {
                      
           ColorMatrix colorMix = new ColorMatrix();           
           colorMix.Matrix00 = 1 / 3f;
           colorMix.Matrix01 = 1 / 3f;
           colorMix.Matrix02 = 1 / 3f;
           colorMix.Matrix10 = 1 / 3f;
           colorMix.Matrix11 = 1 / 3f;
           colorMix.Matrix12 = 1 / 3f;
           colorMix.Matrix20 = 1 / 3f;
           colorMix.Matrix21 = 1 / 3f;
           colorMix.Matrix22 = 1 / 3f;
 
           ImageAttributes imgAttrib = new ImageAttributes();
           imgAttrib.SetColorMatrix(colorMix);
 
 
           graph.DrawImage(img, new Rectangle(left, top, img.Width,
                img.Height), 0, 0, img.Width, img.Height,
                GraphicsUnit.Pixel, imgAttrib);
           Bitmap bmp = new Bitmap(img);
           return bmp;
 
 
       }

 

ترکی زبان قربون صدقه رفتنه داریم که: گوزلرین گیله‌سین قاداسین آلیم که یعنی درد و بلای مردمک چشات به جونم …!.

تشکرات از این پست
دسترسی سریع به انجمن ها