Download the PHP package didweb/resize without Composer

On this page you can find all versions of the php package didweb/resize. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package resize

Resize

Re-dimensionar imagenes

Bundle para redimensionar imágenes a dos tamaños "grande" y "pequeño"

Los tamaños y el director de destino son configurables con parametros desde el app/config.yml

Instalación

Instalación mediante composer, poner en el archivo composer.json ...

En el archivo app/AppKernel.php poner poner...

Dentro de app/config/config.yml poner la siguiente linea dentro de imports ...

Configurar

Para configurar se ponen los siguientes parametros dentro de app/config/config.yml ...

Detalles de configuración

En los parametros colocados en app/config/config.yml se especificán el ancho y alto tanto de la imagen tamaño grande como el tamaño pequeño, asi como el directorio del destino de las imágenes.

Los parametros img_ancho_p y img_alto_p hacen referencia al ancho y alto del tamaño pequeño en pixeles.

Los parametros img_ancho_g y img_alto_g hacen referencia al ancho y alto del tamaño grande en pixeles.

El parametro img_directorio se ha de especificar el destino de las imágenes modifica "fotos" por el nombre de carpeta que quieras.

Configurar directorio

Crear un directorio en este caso hemos puesto "fotos" y dentro de él se crean 2 directorios más, uno llamado p y otro g, son los directorios finales de las imágenes. En p se almacenaran las imágenes de tamaño pequeño y en g las de tamaño grande.

Ejemplo de uso

Dentro del código en el lugar que quieras realizar la subida de archivo colocar esto ...

Subir Imagen:

... donde $nombreArchivo es el nombre de archivo qu queremos poner y $entity->getFile() es el archivo subido mediante el formulario.

Modificar nombre de imagen:

... donde $nombreViejo es el nombre que tenia antes la imagen y $nombreNuevo es el nombre nuevo de la imagen.

Ejemplo completo para subir una imagen:

Dentro de tu controlador ....

...un ejemplo de entidad Imagen ....


All versions of resize with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package didweb/resize contains the following files

Loading the files please wait ....