Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
GAMBAS 0.37 KB | None | 0 0
  1.   PictureBox1.Picture = Picture.Load(FileChooser1.SelectedPath)
  2.  
  3.   PictureBox2.Picture = NULL
  4.   PictureBox2.Picture = NEW Picture(64, 64, TRUE)
  5.  
  6.  
  7.           Draw.Begin(PictureBox2.Picture)
  8.             Draw.Image(PictureBox1.Picture.Image, 0, 0, 256, 256, 0, 0, 256, 256)
  9.           Draw.End()    
  10.  
  11.        
  12.           PictureBox1.Refresh
  13.           PictureBox2.Refresh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement