My code:
Dim bmp_ As New Bitmap(width, height)
' here is for-loop to fill up bitmap ( bmp_.SetPixel(x, y, Color.White) )
bmp_.Save("D:\test.bmp", ImageFormat.Bmp)
That is working correctly for small files, but if i try this:
Dim bmp_ As New Bitmap(30000, 30000)
..then, i got ArgumentException on that line.
Question: Is there any way, how to create so big bmp file ?
thanks
EDIT: What if bitmap is 1000000 x 1000000 ? Is possible to create BMP file on harddisk and append data sequentially?