Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

image: Switch from PIL to Pillow #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/animate.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

import sys, os, commands, re, glob
from Tkinter import *
from ImageTk import PhotoImage
from PIL import ImageTk

# Class definition

Expand Down
2 changes: 1 addition & 1 deletion src/gl.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
from math import sin,cos,sqrt,pi,acos
from OpenGL.Tk import *
from OpenGL.GLUT import *
import Image
from PIL import Image
from vizinfo import vizinfo

# Class definition
Expand Down
2 changes: 1 addition & 1 deletion src/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
from math import *
from Tkinter import *
import Pmw
import Image,ImageTk
from PIL import Image,ImageTk

try: from DEFAULTS import PIZZA_CONVERT
except: PIZZA_CONVERT = "convert"
Expand Down