sterlingy Active Member Licensed User Longtime User Mar 22, 2013 #1 What's the difference between Bitmap.Initialize and Bitmap.InitializeMutable? -Sterling Last edited: Mar 22, 2013
Erel B4X founder Staff member Licensed User Longtime User Mar 24, 2013 #2 Bitmap.Initialize loads an image file to memory. You cannot modify (draw on) this bitmap. Bitmap.InitializeMutable creates a bitmap which you can draw on by calling Canvas.Initialize2. Upvote 0
Bitmap.Initialize loads an image file to memory. You cannot modify (draw on) this bitmap. Bitmap.InitializeMutable creates a bitmap which you can draw on by calling Canvas.Initialize2.