Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -215,8 +215,7 @@ def blur_im(img,bounds):
|
|
215 |
text = "New Text"
|
216 |
|
217 |
#font = ImageFont.truetype(fontpath, 32)
|
218 |
-
|
219 |
-
im = PIL.Image.open(im)
|
220 |
draw = ImageDraw.Draw(im)
|
221 |
draw.text((x+5, y+5),text, font = None)
|
222 |
#img_tamil = np.array(img_pil)
|
|
|
215 |
text = "New Text"
|
216 |
|
217 |
#font = ImageFont.truetype(fontpath, 32)
|
218 |
+
im = Image.fromarray(im)
|
|
|
219 |
draw = ImageDraw.Draw(im)
|
220 |
draw.text((x+5, y+5),text, font = None)
|
221 |
#img_tamil = np.array(img_pil)
|