type Color
r::Uint8
g::Uint8
b::Uint8
end
type Image
pic::Array{Color,2}
Image(w::Int, h::Int) = Image(Array(Color, w, h))