PHP code example of makechtec / image-converter

1. Go to this page and download the library: Download makechtec/image-converter library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

makechtec / image-converter example snippets


      use MakechTec\ImageConverter\Converter\Webp;

    $webpConverter = new Webp();

    $imgFile = $webpConverter->convertFromToFile('original.png', 'destination.webp'); // devuelve ImgFile

    // Mostrar la imagen en el navegador
    $imgFile->displayInBrowser();

## Otras formas de conversión ##

Para convertir el contenido del archivo y colocar el resultado en un archivo recien creado.

    $webpConverter->convertFromFile($rawContentString, 'destination.webp'); // devuelve ImgFile

Para convertir una cadena y leer una cadena ya convertida

    $imgFile->convertRaw($rawContentString);  // devuelve String

## Mostrar el resultado en HTML ##

El convertidor devuelve una instancia de __MakechTec\ImageConverter\ImgFile__ que contiene métodos 
que ayudan a mostrar el contenido.

Para obtener el atributo src para un img de html use __srcForHTML()__.

    <img src = " echo( $imgFile->srcForHTML() );