Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Forms Picturebox to show a solid color instead of an image

Tags:

c#

windows

image

Im making a little app to display the pictures of guests as they scan their cards. But i want to to display blank green or red (green if the guest exists without a photo and red if they dont exist)

But i cant figure out how to create a blank colour image.

Bitmap bmRed = new Bitmap(imgbox.Width, imgbox.Height, PixelFormat.Format24bppRgb);
imgbox.Image = bmRed;

Thats the code i have at the moment and it just makes the box black. imgbox is a PictureBox

like image 822
dkarzon Avatar asked Nov 27 '09 05:11

dkarzon


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Is C language easy?

Compared to other languages—like Java, PHP, or C#—C is a relatively simple language to learn for anyone just starting to learn computer programming because of its limited number of keywords.


2 Answers

Don't use an image - set the BackColor property of the PictureBox:

imgBox.BackColor = Color.Red;
like image 164
Jay Riggs Avatar answered Oct 07 '22 17:10

Jay Riggs


To prevent null pointer exception, create a blank bmp

myPicBox.Image = new Bitmap(myPicBox.Width, myPicBox.Height);
Graphics graphics = Graphics.FromImage(myPicBox.Image);

Brush brush = new SolidBrush(Color.Gray);

graphics.FillRectangle(brush, new System.Drawing.Rectangle(0, 0, myPicBox.Width, myPicBox.Height));
like image 32
Michael_S_ Avatar answered Oct 07 '22 17:10

Michael_S_