I need to display images within a tk window, but can only use these functions to do it;
from urllib.request import urlopen
from re import findall, MULTILINE, DOTALL
from webbrowser import open as webopen
from os import getcwd
from os.path import normpath
from tkinter import *
from sqlite3 import *
from datetime import datetime
I was thinking that there might be some way I can do this just through tkinter's standard functions, but have yet to find any possible way.
This or I could try and find a way to convert the image to a GIF. Note that no images can be stored on the system.
The images I need to display are either JPGs or PNGs, such as this one.
Any help is appreciated.