Create a new method:
public Picture frame(int frameSize, Color frameColor)
This method will create and return a new picture object. The new picture object will contain the original picture inside a frame. The thickness of the frame is given by the parameter frameSize. The color of the frame is given by the parameter frameColor. The new picture object will be larger than the original because of the frame.
How to write this method?