cliffordvickrey / dogs-playing-poker
Generates 6.6 quadrillion paintings of Dogs Playing Poker
0.1.0
2019-11-11 03:52 UTC
Requires
- php: >=7.2
- ext-imagick: *
Requires (Dev)
- phpstan/phpstan: ^0.11.16
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2024-12-11 15:44:06 UTC
README
Ever look at Cassius Marcellus Coolidge's seminal chef d'oeuvre Dogs Playing Poker and think, "this is okay, but wouldn't it be nice if I could see the painting with any of 6.6 quadrillion possible card combinations?" No? Too bad! This library generates any one of 6,622,345,729,233,223,680 possible hand variations of dogs playing poker.
Online at https://www.cliffordvickrey.com/dogs-playing-poker/example
Installation
Run the following to install this library:
$ composer require cliffordvickrey/dogs-playing-poker
Requirements
- 64-bit build of PHP 7.2 or above
- Imagick extension installed and enabled
Usage
// build the generator $generator = Cliffordvickrey\DogsPlayingPoker\DogsPlayingPokerGenerator::build(); // generate a painting at random ... $painting = $generator->generate(); // ... or a specific ID for the same painting every time $painting = $generator->generate(1); // get the painting as a blob ... $blob = $dogsPlayingPoker->getDogsAsBlob(); // ... or as a stream $stream = fopen('php://temp', 'w'); $painting->writeDogsToResource($stream);