Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
4 changed files with 3 additions and 3 deletions
Showing only changes of commit 962bb32f96 - Show all commits

Binary file not shown.

Binary file not shown.

View File

@ -311,8 +311,8 @@ function createPlaceholderImage (string $path, int $width = 200, int $height = 2
{
$img = ImageBuilder::new($width, $height)
->enableAlphaBlending(TRUE)
->addBackgroundColor(255, 255, 255, 127)
->addCenteredText($text, 64, 64, 64, 1);
->addBackgroundColor(255, 255, 255)
->addCenteredText($text, 64, 64, 64);
$path = rtrim($path, '/');

View File

@ -22,5 +22,5 @@ use RuntimeException;
* Exception for bad configuration
*/
class ImageCreationException extends RuntimeException {
}