Skip to content

Instantly share code, notes, and snippets.

@lyuden
lyuden / mathtext_tk.py
Created February 2, 2016 13:55
Example of using matplotlib LaTeX expression rendering with Tkiinter.
import tkinter as tk
from matplotlib.mathtext import math_to_image
from io import BytesIO
from PIL import ImageTk, Image
class Application(tk.Frame):
def __init__(self, master=None):
tk.Frame.__init__(self, master)
self.pack()
self.createWidgets()