Guest User

Untitled

a guest
Apr 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. BitmapImage bmp = new BitmapImage(new Uri(@"C:UsersadminDesktopbg.png"));
  2. WriteableBitmap wrb = new WriteableBitmap(bmp);
  3.  
  4. byte[] color = new byte[] { 255, 0, 0, 255 };
  5.  
  6. wrb.WritePixels(new Int32Rect(0, 0, 1, 1), color, 4, 0);
  7.  
  8. image.Source = wrb;
Add Comment
Please, Sign In to add comment