#---------------------------------------------------------------------- # First program to show JES graphics functions # # Copyright (C) February 16, 2018 -- Dr. William T. Verts #---------------------------------------------------------------------- Filename = pickAFile() # Get the name of a graphics file from the user print Filename # Print the text path to the file's name Canvas = makePicture(Filename) # Convert the file into an internal image show(Canvas) # Show the image on screen