NetImageLibrary icon indicating copy to clipboard operation
NetImageLibrary copied to clipboard

How to assign KalikoImage to PictureBox.Image

Open richardwarriner opened this issue 8 years ago • 1 comments

What is the most efficient way to get the contents of KalikoImage into a PictureBox.Image?

Many thanks

richardwarriner avatar Dec 17 '16 17:12 richardwarriner

The easiest and most efficient way is to call the GetAsBitmap() function on the KalikoImage instance and pass the result to PictureBox.Image: pictureBox.Image = kalikoImage.GetAsBitmap();

fschultz avatar Dec 20 '16 15:12 fschultz