Initial commit of PQS
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
$per = imagecreate(325,12);
|
||||
$background = imagecolorallocate($per, 0x00, 0x00, 0x00);
|
||||
$foreground = imagecolorallocate($per, 0x00, 0x00, 0x00);
|
||||
$border = imagecolorallocate($per, 0x00, 0x00, 0x00);
|
||||
if ($_GET['per'] > 0)
|
||||
{
|
||||
$grad = imagecreatefrompng("../images/grad.png");
|
||||
$per2 = imagecopy($per, $grad, 1, 1, 0, 0, ($_GET['per'] * 3.23), 10);
|
||||
imagerectangle($per, 0, 0, 324, 11, $border);
|
||||
}
|
||||
header("Content-type: image/png");
|
||||
imagepng($per, NULL, 5);
|
||||
?>
|
||||
Reference in New Issue
Block a user