This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
DPF
mirror of
https://github.com/DISTRHO/DPF
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
utils/png2rgba.py: Fix for Fedora's python PIL
pull/24/head
Damien Zammit
7 years ago
parent
5ec4e3ac3b
commit
2516bf2d7b
1 changed files
with
4 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
utils/png2rgba.py
+ 4
- 1
utils/png2rgba.py
View File
@@ -16,7 +16,10 @@
# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
import os, numpy, sys
import os, numpy, sys
import Image
try:
import Image
except:
from PIL import Image
# -----------------------------------------------------
# -----------------------------------------------------
Write
Preview
Loading…
Cancel
Save