Before you get started with computer graphics, you may want to take a good look at the basics under each and every image. I wish someone had shared these issues with me years ago when I was starting. Below is a list is what we will cover here. I suggest you read and experience the following before going on to our other segments and lessons. Here, we will cover;
|
|
What is a pixel?
|
|
What is a pixel?
All images you see on the internet are made up of pixels. A pixel is defined as, “the smallest picture element.” You can think of a pixel as one of many little squares in your picture.
|
|
![]() |
On the right you see two images.
I’ve zoomed in on the image so that you can see the little squares that make up the image. These little squares are called pixels. Each one has a different color.
Each pixel can be one of 16,700,000 colors. This is the number of colors that the human eye can see. |
Pixels are coded with color. Each color is represented by a number. These are called RGB values. Red, Green and Blue. To come up with 16.7 million colors, RGB values use 255 numbers to assign a value.
This would mean, no red, no green, no blue. This is the absence of color, or perfect Black.
|
Example Red = 0 Green = 0 Blue = 0 |
| This would mean turn the red all the way up, turn the green all of the way up, and turn the blue all of the way up. This color would be White, the full presence of red, green and blue. | Example
|
| There are many systems that assign colors to web pages. Another numbering system would be called Hexadecimal Values.
Hexadecimal values are made up of a base 16 system. We are used to a base 10 system.
Base 10 means we have 0 , 1,2,3,4,5,6,7,8,9.
Nine is the highest value.
Hexadecimals use 16 numbers, but because there are no numbers higher than 9, this systems uses letters after running out of numbers.
Base 16 means the following values are used;
0,1,2,3,4,5,6,7,8,9, a,b,c,d,e,f
In this system, F is the highest value. It would be as strong and powerful as 9 in the base ten system. Hexadecimal values are used to assign colors to web pages and images. The values are displayed using six values. A pair of values for Red, a pair of values for Green and a pair of values for Blue. The total value would look like this;
00 00 00 or FF FF FF |
|
00 00 00 would mean, no red, no green no blue, this would be perfect Black.
|
FF FF FF would mean full red, full green, and full blue, the would represent perfect white.
|
|
|
So Who Cares About Numbers and Color Values?
Millions of graphic designers do. They must keep their colors consistent. If you look at the background color of this web page, notice that it is green. But there are about 300,000 shades of green. Which green is the color of this web page? This web page color value is 33 99 99. I use this one color for many of my web page background colors. More importantly, think of your favorite cartoon characters. They must be the same color for every show. The people that draw and animate the characters all know the color values of each character to that the character can be the same color in each episode.
Image Size. How Big is the Image?
Most of the time, an image is measured in inches, or pixels. An image may be 5 inches wide by 5 inches tall. Inches are usually used for designers that are working on images for print purposes. If an image is going into a newspaper or magazine, the designer will work in inches.
If a designer is a web site designer, they will set up the image size in pixels. For example, they may make an image 400 pixels wide and 400 pixels high.
|
|