9 lines
581 B
PHP
9 lines
581 B
PHP
<?php
|
|
header('Content-Type: application/json');
|
|
$text = $_GET['text'] ?? $_POST['text'] ?? 'WEVAL';
|
|
$color = $_GET['color'] ?? '#4d84ff';
|
|
$name = 'gen-'.date('Ymd-His').'.svg';
|
|
$svg = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" rx="20" fill="#0f172a"/><text x="200" y="110" text-anchor="middle" font-family="sans-serif" font-size="48" font-weight="bold" fill="'.$color.'">'.$text.'</text></svg>';
|
|
file_put_contents("/var/www/html/generated/$name", $svg);
|
|
echo json_encode(['ok'=>true,'image'=>"/generated/$name",'format'=>'SVG']);
|