| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | private function contentToBase64(string $content): string |
||
| 8 | { |
||
| 9 | $imageData = file_get_contents($content); |
||
| 10 | $imageInfo = getimagesizefromstring($imageData); |
||
| 11 | $mimeType = $imageInfo['mime'] ?? 'image/png'; |
||
| 12 | |||
| 13 | $base64 = base64_encode($imageData); |
||
| 14 | |||
| 15 | return "data:$mimeType;base64,$base64"; |
||
| 16 | } |
||
| 17 | } |
||
| 18 |