PHP Classes

File: src/MSD/HomeBundle/Resources/views/Home/index.html.twig

Recommend this page to a friend!
  Classes of Manolo Salsas   Online PHP Image Transform   src/MSD/HomeBundle/Resources/views/Home/index.html.twig   Download  
File: src/MSD/HomeBundle/Resources/views/Home/index.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Online PHP Image Transform
Application to do interactive image manipulation
Author: By
Last change:
Date: 4 years ago
Size: 4,286 bytes
 

Contents

Class file image Download
{# Itransformer.es is an online application to transform images Copyright (C) 2013 Manolo Salsas This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. Contact: manolez@gmail.com - http://msalsas.com #} {% extends 'MSDHomeBundle::base.html.twig' %} {% block javascripts %} {{ parent() }} {% javascripts '@MSDHomeBundle/Resources/public/js/adj_img.js' filter='yui_js' '@MSDHomeBundle/Resources/public/js/efectos_inicio.js' filter='yui_js' '../app/Resources/public/js/vendor/jquery.form.js' filter='yui_js' %} <script src="{{ asset_url }}"></script> {% endjavascripts %} {% endblock %} {% block message %} <div id="ini_mess"> <p>{% trans %}Esta web utiliza 'cookies' propias para ofrecerte una mejor experiencia y servicio. Al navegar o utilizar estos servicios, aceptas el uso de las mismas.{% endtrans %}</p> <p>{% trans %}Esta web necesita que Javascript esté habilitado en su navegador para poder funcionar correctamente.{% endtrans %}</p> <button id="buttonCookies">Aceptar</button> </div> {% endblock %} {% block sections %} <div class="articulo gradient"><article> <header> <h1>{{ 'Bienvenido a Itransformer.es'|trans|raw }}</h1> <h2>{% trans %}Adjunta una imagen para transformarla{% endtrans %}</h2> </header> <div id="form" class="gradient"> <form id="fileupload" class="form" action="{{ path('msd_home_verimagen') }}" method="post" enctype="multipart/form-data" > <input type="hidden" name="MAX_FILE_SIZE" value="3145728"> <input class="in_file" type="file" name="userfile"> </form> <div class="progress"> <div class="bar"></div > <div class="percent">0%</div > </div> <div id="status"></div> <br> </div> </article></div> {% endblock %} {% block aside %} <h3>{% trans %}Mediante esta aplicación web, podrás aplicar filtros de procesamiento de imágenes a tus propias imágenes.{% endtrans %}</h3> <h3>{% trans %}Dispones de muchos tipos de filtros, efectos y transformaciones.{% endtrans %}</h3> <h3>{% trans %}Transformaciones básicas: cambiar dimensiones, recortar, cambiar brillo, cambiar contraste y rotar.{% endtrans %}</h3> <h3>{% trans %}Filtros: convertir a grises, convertir a negativo, filtro de resaltar bordes, filtro de resaltar relieve, filtro de eliminación media, poner borroso, poner borroso (efecto Gaussiano), filtro de suavizado, filtro de pixelación, filtro de convolución y corrección gamma.{% endtrans %}</h3> <h3>{% trans %}Efectos: colorear, resaltar colores, atenuar colores, efecto lápiz fino, efecto lápiz grueso, efecto pintura, efecto Che Guevara, efecto papel arrugado, efecto antiguo, efecto fuego, efecto gotas, efecto luces, efecto colores, efecto molón y enmarcar.{% endtrans %}</h3> <h3>{% trans %}Todo ello, utilizando PHP y la librería gd.{% endtrans %}</h3> <h3>{% trans %}Poco a poco iré mejorando la aplicación y añadiendo más funcionalidades de procesamiento y transformación de imágenes.{% endtrans %}</h3> <h3>{% trans %}También hay un foro, donde puedes comentar, sugerir, ... Pero tienes que registrarte antes.{% endtrans %}</h3> <h3>{% trans %}Gracias por visitarme!!{% endtrans %}</h3> <br> <p>{% trans %}Puedes encontrar más información y ejemplos sobre procesamiento de imágenes en los siguientes enlaces{% endtrans %}: </p><br> <ul><li><a target="_blank" href="http://www.imageprocessingbasics.com">{% trans %}Procesamiento de imágenes{% endtrans %}</a></li> <li><a target="_blank" href="http://www.imageprocessingbasics.com/image-convolution-filters/">{% trans %}Filtro de convolución{% endtrans %}</a></li></ul> {% endblock %}