Skip to content

Commit 3b6faef

Browse files
committed
docs:add webpage usage example
1 parent 149fb4e commit 3b6faef

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

README.md

+49
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,55 @@ return $image->stream('png', 100);
6565
````
6666
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.
6767

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
83+
84+
$avatar = new InitialAvatar();
85+
$name = isset($_GET['name']) ? $_GET['name'] : 'Default User';
86+
87+
// Generate the image
88+
$image = $avatar->name($name)->generate();
89+
90+
// Stream the image directly to the output
91+
echo $image->stream('png', 100);
92+
exit;
93+
94+
```
95+
96+
In the HTML file, you can reference the snippet below:
97+
98+
```html
99+
<!DOCTYPE html>
100+
<html lang="en">
101+
<head>
102+
<meta charset="UTF-8">
103+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
104+
<title>Avatar Example</title>
105+
</head>
106+
<body>
107+
<h1>User Avatar</h1>
108+
<!-- Use the PHP endpoint as the image source -->
109+
<img src="avatar.php?name=John Doe" alt="Avatar for John Doe" width="100" height="100">
110+
111+
<img src="avatar.php?name=Jane Smith" alt="Avatar for Jane Smith" width="100" height="100">
112+
</body>
113+
</html>
114+
115+
```
116+
68117
## SVG generation
69118
````php
70119
$avatar = new LasseRafn\InitialAvatarGenerator\InitialAvatar();

0 commit comments

Comments
 (0)