public Picture createCompatible() { return(Picture.Create(width, height, color)); }
public Picture(Picture other) : this(other.width, other.height, other.data, other.color, other.crop) { }
public bool compatible(Picture src) { return(src.color == color && src.width == width && src.height == height); }