Top "Picturebox" questions

The PictureBox is a control in the Windows Forms system that provides a way to display an image.

How to save PictureBox.Image to file?

I use the following to write jpgImage to a PictureBox.Image. var jpgImage = new Byte[jpgImageSize]; ... pictureBox.Image = new Bitmap(…

c# bitmap picturebox
Print images c#.net

I have an image in a PictureBox, and I want to print it. No formatting, no nothing, just print it. …

c# image printing picturebox
How do I draw a circle and line in the picturebox?

How do I draw a circle and line in the picturebox?

c# picturebox
How to get the position of a Click?

I'm currently making a game where the player will click on one of his units (which are pictureboxes) and a …

c# click position picturebox
How to save a picturebox control as a jpeg file after it's edited

I have a PictureBox on my Windows Forms application. I load a picture in it and I have enabled the …

c# .net picturebox
C#: Simple and functional way to zoom picturebox images with scroll bars

Is there a simple and functional way to zoom an image in a picturebox including scroll bars? At the moment, …

c# winforms image picturebox zooming
How can I get scrollbars on Picturebox

I have PictureBox picture. I use: picture.Size = bmp.Size; picture.Image = bmp; Let's say there are two integers maxWidth …

c# winforms scroll scrollbar picturebox
How to load image from SQL Server into picture box?

I've tried a lot to find that how can I load an image from SQL Server to picture box but …

c# winforms sql-server-2008 picturebox
Getting the size of a Windows Form

I'm creating a Windows Forms application. How do I capture the size of the windows form? Currently I have something …

c# winforms plot picturebox
Right way to dispose Image/Bitmap and PictureBox

I am trying to develop a Windows Mobile 6 (in WF/C#) application. There is only one form and on the …

c# image graphics dispose picturebox