{% extends 'base.html' %} {% block title %}Photo Editor — WebTools{% endblock %} {% block content %}

Photo Editor

Adjust brightness, contrast, saturation, and sharpness of your photos.

Drag & drop an image here

or click to browse

Preview

{% set sliders = [ ('brightness', 'Brightness', 'fa-sun', 1.0), ('contrast', 'Contrast', 'fa-circle-half-stroke', 1.0), ('saturation', 'Saturation', 'fa-palette', 1.0), ('sharpness', 'Sharpness', 'fa-star', 1.0) ] %} {% for id, label, icon, default in sliders %}
{{ default }}
0.1 1.0 (original) 3.0
{% endfor %}
Processing...

Applying edits…

Upload an image and adjust the sliders to edit your photo.

Your edited image will appear here after clicking "Apply Edits".

{% endblock %} {% block scripts %} {% endblock %}