public PetsciiImage(ColorMap foreground, PetsciiMap content)
 {
     Foreground = foreground;
     Content    = content;
 }
 public PetsciiImage(C64Palette palette)
 {
     Foreground = new ColorMap(palette, C64Color.LightBlue);
     Content    = new PetsciiMap();
 }