You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can also just pass along the initials, and it will use those. Should you just include a first name, it will use the first two letters of it.
67
67
68
+
69
+
### Example usage in a webpage
70
+
To display the image generated by the InitialAvatarGenerator library directly on a webpage, you can utilize PHP headers to output the image as a stream or generate a temporary file and display it using an ```<img>``` tag.
71
+
72
+
To output the image as a stream, you can create a separate PHP endpoint (like avatar.php) that generates the avatar image and streams it as a PNG. Then, you use the URL of this endpoint as the src of an ```<img>``` tag on your webpage.
73
+
74
+
An example endpoint file (**avatar.php**) is below:
75
+
76
+
```php
77
+
<?php
78
+
require 'vendor/autoload.php';
79
+
80
+
use LasseRafn\InitialAvatarGenerator\InitialAvatar;
81
+
82
+
header('Content-Type: image/png'); // Set the content type to PNG
0 commit comments