File indexing completed on 2025-02-23 05:32:07
0001 <?php 0002 require_once './../vendor/autoload.php'; 0003 0004 use YoHang88\LetterAvatar\LetterAvatar; 0005 0006 $avatar = new LetterAvatar('Max Mustermann', 'circle', 64); 0007 ?> 0008 0009 <!doctype html> 0010 <html> 0011 <head> 0012 <meta charset="UTF-8"> 0013 <meta name="viewport" 0014 content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> 0015 <meta http-equiv="X-UA-Compatible" content="ie=edge"> 0016 <title>Example</title> 0017 </head> 0018 <body> 0019 <img src="<?php echo $avatar;?>" alt=""> 0020 </body> 0021 </html>