CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 16:42:25 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=ec3f2158ca8ba528bea6e95319c78335edb7feb7405e16c63e04e085498526efa%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22hnN7NiR2Kr9di_nXpYiqaVrZIw85lTRZ%22%3B%7D; HttpOnly; Path=/
cf-ray: 98cfcf85e836741b-BLR
# tk_freakshow_zoom.py - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # tk_freakshow_zoom.py
- import tkinter as tk
- from PIL import Image, ImageTk
- import random
- WW, HH = 640, 640
- scale = 20
- root = tk.Tk()
- root.title("# tk_freakshow_zoom.py")
- canvas = tk.Canvas(root, width=WW, height=HH)
- canvas.pack()
- grid_colors = {
- (0, 0): (255, 255, 255), (0, 1): (255, 255, 0), (0, 2): (0, 255, 0),
- (1, 0): (255, 165, 0), (1, 1): (128, 128, 128), (1, 2): (0, 0, 255),
- (2, 0): (255, 0, 0), (2, 1): (128, 0, 128), (2, 2): (0, 0, 0)
- }
- small_img = Image.new('RGB', (3, 3))
- for y in range(3):
- for x in range(3):
- small_img.putpixel((x, y), grid_colors[(x, y)])
- base_img = small_img.resize((WW, HH))
- shuffle_img = small_img.resize((9, 9))
- data = list(shuffle_img.getdata())
- def rotate_image():
- random.shuffle(data)
- small_rotate = Image.new('RGB', (9, 9))
- small_rotate.putdata(data)
- return small_rotate.resize((WW, HH))
- img = base_img.copy()
- photo = ImageTk.PhotoImage(img)
- rotate_img = Image.new('RGB', img.size)
- canvas.create_image(0, 0, image=photo, anchor=tk.NW)
- i = 0
- while True:
- zoomed = img.resize((WW, HH))
- photo = ImageTk.PhotoImage(zoomed)
- canvas.create_image(0, 0, image=photo, anchor=tk.NW)
- img = img.crop((scale, scale, WW - scale, HH - scale))
- img = img.resize((WW, HH))
- i += 1
- if i > 30:
- rotate_img = rotate_image()
- i = 0
- img = Image.blend(img, rotate_img, alpha=5)
- root.update()
Advertisement
Add Comment
Please, Sign In to add comment
-
✅⭐ Make huge profits on trading ⭐⭐ S
JavaScript | 6 sec ago | 0.24 KB
-
✅⭐ Make $2500 in 15 minutes ✅ NEVER SEEN BEFO...
JavaScript | 7 sec ago | 0.24 KB
-
⭐⭐⭐MAKE $1000 INSTANTLY⭐⭐
Java | 13 sec ago | 0.10 KB
-
⭐✅ MAKE $2500 IN 15 MIN⭐⭐⭐ 6
JavaScript | 17 sec ago | 0.24 KB
-
⭐⭐⭐ G2A Payment Exploit ✅ NEVER SEEN BEFORE ⭐...
JavaScript | 17 sec ago | 0.24 KB
-
⭐⭐⭐Exploit 500$ in 15 Minutes⭐⭐
Java | 21 sec ago | 0.10 KB
-
⭐⭐⭐Make $15OO in 2O minutesV G⭐⭐
Java | 26 sec ago | 0.10 KB
-
⭐✅ MAKE $2500 IN 15 MIN ✅ NEVER SEEN BEFORE ⭐...
JavaScript | 27 sec ago | 0.24 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand