Search results for query: *

  1. Peanutman

    How to Convert bitmap to black/white?

    waw, thanks a lot. It's exactly what i wanted, and even more :) Thanks for the ubercustomizeable code :p Reinout,
  2. Peanutman

    How to Convert bitmap to black/white?

    Cool! Thank you extremely much. The invert/grayscale subs work great. I just have one question though. I understand the picture is displayed with that colormatrix applied to it. But what do the numbers in that matrix represent? That I don't fully understand. And would be possible to convert...
  3. Peanutman

    How to Convert bitmap to black/white?

    I have a bitmap loaded into memory by using the following code: Data = Clipboard.GetDataObject() If Data.GetDataPresent(GetType(System.Drawing.Bitmap)) Then bmap = CType(Data.GetData(GetType(System.Drawing.Bitmap)), Image) Dim g As Graphics = Graphics.FromImage(bmap) Endif I would like...
Back
Top