Your task for this lab is to write a java program that
Reads a .txt file representing an image.
Prints out the image to command line.
Flip the image from left to right.
Prints out the flipped image.
For example:
Your program should work for image of ANY SIZE and SHAPE.
Think about what corner cases your program needs to handle to avoid crashing, i.e. getting an unhandled exception during runtime.
Find the starter code below.
Two versions are included, try the version with no hints if you'd like a challenge!