Update app.py
Browse files
app.py
CHANGED
|
@@ -702,6 +702,7 @@ def server(input, output, session):
|
|
| 702 |
ax_watermark.set_frame_on(False) # Optional: Hide border
|
| 703 |
|
| 704 |
img = Image.open('tj stats circle-01_new.jpg')
|
|
|
|
| 705 |
# Display the image
|
| 706 |
ax_watermark.imshow(img, extent=[0, 1, 0, 1], origin='upper',zorder=-1, alpha=0.06)
|
| 707 |
|
|
|
|
| 702 |
ax_watermark.set_frame_on(False) # Optional: Hide border
|
| 703 |
|
| 704 |
img = Image.open('tj stats circle-01_new.jpg')
|
| 705 |
+
img = img.convert("LA")
|
| 706 |
# Display the image
|
| 707 |
ax_watermark.imshow(img, extent=[0, 1, 0, 1], origin='upper',zorder=-1, alpha=0.06)
|
| 708 |
|