File size: 2,274 Bytes
0d77952
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64

import gradio as gr
from PIL import Image, ImageEnhance, ImageFilter
import numpy as np

def edit_image(image, crop, resize_width, resize_height, rotate, flip, brightness, contrast, blur):
    img = Image.fromarray(image)

    # Cropping (crop box should be in left, top, right, bottom format)
    if crop != (0, 0, img.width, img.height):
        crop_values = [int(x) for x in crop.split(",")]
        img = img.crop(crop_values)

    # Resizing
    if resize_width and resize_height:
        img = img.resize((resize_width, resize_height))

    # Rotation
    if rotate:
        img = img.rotate(rotate)

    # Flipping
    if flip == "Horizontal":
        img = img.transpose(Image.FLIP_LEFT_RIGHT)
    elif flip == "Vertical":
        img = img.transpose(Image.FLIP_TOP_BOTTOM)

    # Brightness Adjustment
    if brightness != 1:
        enhancer = ImageEnhance.Brightness(img)
        img = enhancer.enhance(brightness)

    # Contrast Adjustment
    if contrast != 1:
        enhancer = ImageEnhance.Contrast(img)
        img = enhancer.enhance(contrast)

    # Blurring
    if blur > 0:
        img = img.filter(ImageFilter.GaussianBlur(blur))

    return np.array(img)

# Define the interface
iface = gr.Interface(
    fn=edit_image,
    inputs=[
        gr.Image(type="numpy"),  # Input image without the tool argument
        gr.Textbox(label="Crop (left, top, right, bottom)", value="0, 0, 500, 500"),
        gr.Slider(minimum=10, maximum=1000, label="Resize Width", value=500),
        gr.Slider(minimum=10, maximum=1000, label="Resize Height", value=500),
        gr.Slider(minimum=-360, maximum=360, label="Rotate (degrees)", value=0),
        gr.Radio(choices=["None", "Horizontal", "Vertical"], label="Flip", value="None"),
        gr.Slider(minimum=0.1, maximum=2.0, step=0.1, label="Brightness", value=1),
        gr.Slider(minimum=0.1, maximum=2.0, step=0.1, label="Contrast", value=1),
        gr.Slider(minimum=0, maximum=10, step=1, label="Blur", value=0)
    ],
    outputs="image",
    title="Image Editor with Cropping, Resizing, Rotation, Brightness, and More",
    description="Upload an image and apply various editing features such as cropping, resizing, rotation, flipping, brightness/contrast adjustments, and blurring."
)

iface.launch()