Initial commit of PQS

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Cyd
2026-07-01 10:59:51 -05:00
co-authored by Claude Opus 4.8
commit 22e59d6290
185 changed files with 8930 additions and 0 deletions
+14
View File
@@ -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);
?>