Guest User

Untitled

a guest
Jan 20th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. static void BitmapTest(Args _args)
  2. {
  3. Bitmap image1 = [1,2,3];
  4. Bitmap image2 = [7,8,9];
  5. Container storeImg;
  6. ;
  7. storeImg += image1;
  8. storeImg += image2;
  9. print conlen(storeImg);
  10. pause;
  11. }
  12.  
  13. static void BitmapTest(Args _args)
  14. {
  15. BinData b = new BinData();
  16. Bitmap image1 = b.getData();
  17. Bitmap image2 = b.getData();
  18. Container storeImg;
  19. ;
  20. storeImg += image1;
  21. storeImg += image2;
  22. image2 = conpeek(storeImg,1);
  23. pause;
  24. }
  25.  
  26. storeImg += [image1];
  27. storeImg += [image2];
Add Comment
Please, Sign In to add comment