Hey,
If i'm trying to construct an new bitmap with follow parameters in the constructor (18200, 7400) (WxH) it works fine.
example:
Dim n As New Bitmap(18200, 7400)
n.Save("test2.bmp")
n.Dispose()
But if i'm trying to construct a new bitmap with these parameters given thru the properties of an other image (bitmap.width, bitmap.height) it doesn't work anymore.
example:
Dim n As New Bitmap(18200, 7400)
n.Save("test2.bmp")
n.Dispose()
Dim b As New Bitmap("test2.bmp")
Dim t As New Bitmap(b.Width, b.Height)
You'll see that he gives now an error on the line were t is created. Errormessage: Invalid paramter used.
Does anybody now's how this is comming and how i can resolve it.
Thanks Tsjelle