I am using the following line of code:

Code:
pic1.Picture = LoadPicture("C:\test\OUTPUT.BMP")
...This works good. But now the image's height I'm loading is too high. The important part of the picture is then partially or entirely invisible in my picturebox (too low).

I don't want to change the dimension of the picturebox, and I don't want to edit the images.

Would there be a way to load the picture with an offset setting? I tried to play with LoadPicture parameters but it didn't seem to help.

Thanks for any solution.