image-to-ascii / app.py
Deniel Dimitrov
Update app.py
86cfa7a
raw
history blame
1.24 kB
from PIL import Image
import gradio as gr
def convert_to_ascii(image, text_size):
width, height = image.size
aspect_ratio = height / width
new_width = int(text_size)
new_height = int(aspect_ratio * text_size * 0.5)
resized_image = image.resize((new_width, new_height))
grayscale_image = resized_image.convert('L')
ascii_chars = 'β–ˆ@&%#*β–‘+=-:,.\/|][}{)(Β΄β€›β€˜ ' # add more characters if you want
ascii_image = ''
for y in range(new_height):
for x in range(new_width):
pixel_value = grayscale_image.getpixel((x, y))
if pixel_value == 255:
ascii_image += ' '
else:
ascii_image += ascii_chars[int(pixel_value / 255 * (len(ascii_chars) - 1))]
ascii_image += '\n'
return ascii_image
def image_to_ascii(img):
image = Image.open(img.name)
text_size = int(img_size)
ascii_art = convert_to_ascii(image, text_size)
return ascii_art
iface = gr.Interface(
fn=image_to_ascii,
inputs=gr.inputs.Image(label="Upload Image"),
outputs=gr.outputs.Textbox(label="ASCII Art"),
title="Image to ASCII Art",
description="Upload an image and convert it to ASCII art."
)
iface.launch()