I'm using the ink picture control and I'm having trouble getting my code to work. The inkpicture control is used for tablet pcs when the user draws inside the control. I just want to be able to save it to a jpeg. I've been stuck on this for days :)
Dim inkBounds As Rectangle
With inkBounds
.X = 0
.Y = 0
.Width = InkPicture1.Width
.Height = InkPicture1.Height
End With
Dim img As Image
img.Save(IO.Directory.GetCurrentDirectory() & "\test_out.jpg", System.Drawing.Imaging.ImageFormat.Jpeg)