summaryrefslogtreecommitdiffstats
path: root/core/views/prospect.py
diff options
context:
space:
mode:
Diffstat (limited to 'core/views/prospect.py')
-rw-r--r--core/views/prospect.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/core/views/prospect.py b/core/views/prospect.py
index aaefc11..4b30f5d 100644
--- a/core/views/prospect.py
+++ b/core/views/prospect.py
@@ -1,10 +1,8 @@
import os
import string
import re
-#import settings
import urllib.parse
# from pathlib import Path
-from PIL import Image, ImageDraw, ImageFont
from django.http import HttpResponse
from django.shortcuts import render
@@ -18,7 +16,7 @@ from troggle.parsers.survex import MapLocations
''' Generates the prospecting guide document.
Also produces the overlay of points on top of a prospecting_image map - to be deleted.
-I have tried to make this work with the version of PIL we have installed but something is missing still.
+Not working with recent PIL aka Pillow image package - removed.
'''
AREANAMES = [
@@ -143,7 +141,7 @@ for FONT in [
TEXTSIZE = 16
CIRCLESIZE =8
LINEWIDTH = 2
-myFont = ImageFont.truetype(FONT, TEXTSIZE)
+#myFont = ImageFont.truetype(FONT, TEXTSIZE) # disabled as not importing PIL
#print(f' - myFont {myFont} {FONT} {TEXTSIZE}')
def mungecoord(x, y, mapcode, img):