Extensión:EditImage

From mediawiki.org
This page is a translated version of the page Extension:EditImage and the translation is 41% complete.
Manual de extensiones de MediaWiki
EditImage
Estado de lanzamiento: sin mantenimiento
Implementación Interfaz de usuario, Página especial
Descripción Make bitmap images (i.e., JPGs and PNGs) "editable" through the browser.
Autor(es) Benjamin Mako Hilldiscusión
Última versión 0.1 (2008-08-11)
MediaWiki
Licencia GNU Licencia Pública general 3.0
Descarga Latest Version (tar.gz) Browseable Git Repository
README
ChangeLog
Ejemplo http://wiki.mako.cc

EditImage attempts to make images more wiki by making them modifiable. Using a combination of javascript interfaces and ImageMagick image manipulation backend, EditImage provides simple image editing functionality to every users within a browser. Users of wikis using the EditImage extension can do simple manipulation

Funcionalidades

Currently, the released version of EditImage allows the following types of editing:

  • Cropping

Adding new features and modes is a great way to contribute to this extension and can in some cases can be very easy. Please go ahead and try and then contact the maintainer for inclusion of your feature in a new version of this plugin!

Requirements

To install EditImage on your wiki, you must have ImageMagick installed.

Para utilizarlo, solo necesitas un navegador. No requiere Java, Centellea, o software adicional.

Instalación

Copy the following files from the browseable Bazaar repository into $IP/extensions/EditImage:

EditImage.i18n.php
EditImage.js
EditImage.php
EditImage_body.php
cropper.css
cropper.js
lib/
    builder.js
    dragdrop.js
    prototype.js
    scriptaculous.js

Añadir esta línea al final de LocalSettings.php :

require_once($IP.'/extensions/EditImage/EditImage.php');

Detalles de implementación

Cropping functionality in EditImage is built using David Spurr's JavaScript Cropping UI which is distributed under the BSD license.

Otros detalles

This page replaces the older Extension:Cropper page, which did not seem to have code available.