I have this code here that will add the picturebox to a file but there is only black where the image is supposed to be.
Dim img As Image
        img = PB1.Image
        t = TBsave.Text
        Dim newBitmap As Bitmap = New Bitmap(x, y, PixelFormat.Format16bppRgb555)
        img = newBitmap
        newBitmap.Save(t, ImageFormat.Jpeg)
I have tried several things but this is as close as I can get.
Any help is appreciated in advance.