PHP code example of laravelevetools / eveimages

1. Go to this page and download the library: Download laravelevetools/eveimages 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/ */

    

laravelevetools / eveimages example snippets


use LaraveEveTools\EveImages\Image;
//Generate a full html <img> tag
(new Image('characters', $character_id, 64))->html()
//Generate image url
(new Image('characters', $character_id, 64))->url()