Stopwatch demo (VEXcode)

yes, very simple. You need the update to 1.0.6, that fixed a small bug in the png library, then all you need is

/*----------------------------------------------------------------------------*/
/*                                                                            */
/*    Module:       main.cpp                                                  */
/*    Author:       james                                                     */
/*    Created:      Fri Mar 22 2019                                           */
/*    Description:  V5 project                                                */
/*                                                                            */
/*----------------------------------------------------------------------------*/
#include "vex.h"

using namespace vex;

// A global instance of vex::brain used for printing to the V5 brain screen
vex::brain       Brain;

// define you global instances of motors and other devices here


int main() {   
    Brain.Screen.drawImageFromFile( "V5-Brain-small.png", 0, 0 );
    
    while(1) {
        // Allow other tasks to run
        this_thread::sleep_for(10);
    }
}

to be able to display this image from SD Card (as long as you give it the name V5-Brain-small.png)
V5-Brain-small