Weeks 3 and 4 Flashcards
(166 cards)
how many colours can 2 bits hold
2^2 = 4
if an image is 400 by 300 pixels, and we use 1 byte of colour for each pixel, what is the file size
400x300x1byte = 120000 or 120 kilobytes
1 kilobyte is how many bytes
1000 bytes
is an image is 400 by 50 and uses 1 byte of colour, what is the file size
2000
What is the Subtractive model for colour used for
printing - ink applied to paper
what colours does the subtractive model have
cyan, magenta and yellow
how does the ink work in a subtractive model (in terms of white
ink when applied removes the white
what is the additive model used on
monitors
how does the additive model for colour work
adds light to a black background (unlike subtractive model which removes white by adding colour to the page)
how many colours can True Colour represent
2^24 or around 16 million different colours
2^8 = 256 shades of red
2^8 green
2^8 blue
how many bytes are needed to represent true colour
3 bytes - 1 byte for each colour (rgb)
what are the two ways to represent true colour
RGB - amount of Red, amount of Green, amount of Blue>
uses DECIMAL NUMBER system
and Hexadecimal
<255, 0, 0>
all red no green or blue in rgb true colour
0 in RGB represents
no colour
255 in RGB represents
most colour allowed
<0, 255, 0>
most green rgb true colour
<100,100,100>
middle amounts of rgb - gray
<50, 0, 200>
little red, lot of blue, dark blue
<200, 0, 50>
little blue lot of red
dark red
how is hex colour represented (what digits and format)
#RRGGBB RR are the digit place holders for the amount of red, GG amount of Green, BB amount of Blue Amounts are counted in hexadecimal with these digits: 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F
09 in hex is
9
0B in hex is
11
0F in hex is
15
FF in hex is
16^115+16^015 = 255
NOT 15*15