MediaWiki  1.27.2
RandomImageGenerator Class Reference

RandomImageGenerator: does what it says on the tin. More...

Public Member Functions

static __construct ($options=[])
 
 getImageSpec ()
 Generate data representing an image of random size (within limits), consisting of randomly colored and sized upward pointing triangles against a random background color. More...
 
 getImageWriteMethod ($format)
 Figure out how we write images. More...
 
 getRandomColor ()
 Generate a string of random colors for ImageMagick or SVG, like "rgb(12, 37, 98)". More...
 
 writeImages ($number, $format= 'jpg', $dir=null)
 Writes random images with random filenames to disk in the directory you specify, or current working directory. More...
 
 writeImageWithApi ($spec, $format, $filename)
 Based on an image specification, write such an image to disk, using Imagick PHP extension. More...
 
 writeImageWithCommandLine ($spec, $format, $filename)
 Based on an image specification, write such an image to disk, using the command line ImageMagick program ('convert'). More...
 
 writeSvg ($spec, $format, $filename)
 Based on image specification, write a very simple SVG file to disk. More...
 

Static Public Member Functions

static shapePointsToString ($shape)
 Given array( array('x' => 10, 'y' => 20), array( 'x' => 30, y=> 5 ) ) returns "10,20 30,5" Useful for SVG and imagemagick command line arguments. More...
 

Private Member Functions

 getRandomFilenames ($number, $extension= 'jpg', $dir=null)
 Return a number of randomly-generated filenames Each filename uses two words randomly drawn from the dictionary, like elephantine_spatula.jpg. More...
 
 getRandomLines ($number_desired)
 Return N random lines from a file. More...
 
 getRandomWordPairs ($number)
 Get an array of random pairs of random words, like array( array( 'foo', 'bar' ), array( 'quux', 'baz' ) );. More...
 

Static Private Member Functions

static matrixMultiply2x2 ($matrix, $x, $y)
 Given a matrix and a pair of images, return new position. More...
 
static rotateImageSpec (&$spec, $matrix)
 Given an image specification, produce rotated version This is used when simulating a rotated image capture with Exif orientation. More...
 

Private Attributes

 $dictionaryFile
 
 $maxHeight = 800
 
 $maxWidth = 800
 
 $minHeight = 400
 
 $minWidth = 400
 
 $shapesToDraw = 5
 

Static Private Attributes

static $orientations
 Orientations: 0th row, 0th column, Exif orientation code, rotation 2x2 matrix that is opposite of orientation. More...
 

Detailed Description

RandomImageGenerator: does what it says on the tin.

Can fetch a random image, or also write a number of them to disk with random filenames.

Definition at line 30 of file RandomImageGenerator.php.

Constructor & Destructor Documentation

static RandomImageGenerator::__construct (   $options = [])

Definition at line 72 of file RandomImageGenerator.php.

References $dictionaryFile, $options, $property, and(), and as.

Member Function Documentation

RandomImageGenerator::getImageSpec ( )

Generate data representing an image of random size (within limits), consisting of randomly colored and sized upward pointing triangles against a random background color.

(This data is used in the writeImage* methods).

Returns
mixed

Definition at line 183 of file RandomImageGenerator.php.

References $shapesToDraw, and getRandomColor().

Referenced by writeImages().

RandomImageGenerator::getImageWriteMethod (   $format)

Figure out how we write images.

This is a factor of both format and the local system

Parameters
string$format(a typical extension like 'svg', 'jpg', etc.)
Exceptions
Exception
Returns
string

Definition at line 129 of file RandomImageGenerator.php.

References $wgExiv2Command, $wgImageMagickConvertCommand, $wgUseImageMagick, and global.

Referenced by writeImages().

RandomImageGenerator::getRandomColor ( )

Generate a string of random colors for ImageMagick or SVG, like "rgb(12, 37, 98)".

Returns
string

Definition at line 422 of file RandomImageGenerator.php.

Referenced by getImageSpec().

RandomImageGenerator::getRandomFilenames (   $number,
  $extension = 'jpg',
  $dir = null 
)
private

Return a number of randomly-generated filenames Each filename uses two words randomly drawn from the dictionary, like elephantine_spatula.jpg.

Parameters
int$numberNumber of filenames to generate
string$extensionOptional, defaults to 'jpg'
string$dirOptional, defaults to current working directory
Returns
array Array of filenames

Definition at line 158 of file RandomImageGenerator.php.

References $dir, as, and getRandomWordPairs().

Referenced by writeImages().

RandomImageGenerator::getRandomLines (   $number_desired)
private

Return N random lines from a file.

Will throw exception if the file could not be read or if it had fewer lines than requested.

Parameters
int$number_desiredNumber of lines desired
Exceptions
Exception
Returns
array Array of exactly n elements, drawn randomly from lines the file

Definition at line 460 of file RandomImageGenerator.php.

References $dictionaryFile, $line, and $lines.

Referenced by getRandomWordPairs().

RandomImageGenerator::getRandomWordPairs (   $number)
private

Get an array of random pairs of random words, like array( array( 'foo', 'bar' ), array( 'quux', 'baz' ) );.

Parameters
int$numberNumber of pairs
Returns
array Two-element arrays

Definition at line 438 of file RandomImageGenerator.php.

References $count, $lines, and getRandomLines().

Referenced by getRandomFilenames().

static RandomImageGenerator::matrixMultiply2x2 (   $matrix,
  $x,
  $y 
)
staticprivate

Given a matrix and a pair of images, return new position.

Parameters
array$matrix2x2 rotation matrix
int$xThe x-coordinate number
int$yThe y-coordinate number
Returns
array Transformed with properties x, y

Definition at line 373 of file RandomImageGenerator.php.

static RandomImageGenerator::rotateImageSpec ( $spec,
  $matrix 
)
staticprivate

Given an image specification, produce rotated version This is used when simulating a rotated image capture with Exif orientation.

Parameters
array$specReturned by getImageSpec
array$matrix2x2 transformation matrix
Returns
array Transformed Spec

Definition at line 334 of file RandomImageGenerator.php.

References as.

static RandomImageGenerator::shapePointsToString (   $shape)
static

Given array( array('x' => 10, 'y' => 20), array( 'x' => 30, y=> 5 ) ) returns "10,20 30,5" Useful for SVG and imagemagick command line arguments.

Parameters
array$shapeArray of arrays, each array containing x & y keys mapped to numeric values
Returns
string

Definition at line 227 of file RandomImageGenerator.php.

References $points, and as.

RandomImageGenerator::writeImages (   $number,
  $format = 'jpg',
  $dir = null 
)

Writes random images with random filenames to disk in the directory you specify, or current working directory.

Parameters
int$numberNumber of filenames to write
string$formatOptional, must be understood by ImageMagick, such as 'jpg' or 'gif'
string$dirDirectory, optional (will default to current working directory)
Returns
array Filenames we just wrote

Definition at line 111 of file RandomImageGenerator.php.

References $dir, as, getImageSpec(), getImageWriteMethod(), and getRandomFilenames().

RandomImageGenerator::writeImageWithApi (   $spec,
  $format,
  $filename 
)

Based on an image specification, write such an image to disk, using Imagick PHP extension.

Parameters
array$specSpec describing background and circles to draw
string$formatFile format to write
string$filenameFilename to write to

Definition at line 275 of file RandomImageGenerator.php.

References $image, $retval, $wgExiv2Command, as, global, print, wfEscapeShellArg(), and wfShellExec().

RandomImageGenerator::writeImageWithCommandLine (   $spec,
  $format,
  $filename 
)

Based on an image specification, write such an image to disk, using the command line ImageMagick program ('convert').

Sample command line: $ convert -size 100x60 xc:rgb(90,87,45) \ -draw 'fill rgb(12,34,56) polygon 41,39 44,57 50,57 41,39' \ -draw 'fill rgb(99,123,231) circle 59,39 56,57' \ -draw 'fill rgb(240,12,32) circle 50,21 50,3' filename.png

Parameters
array$specSpec describing background and shapes to draw
string$formatFile format to write (unused by this method but kept so it has the same signature as writeImageWithApi).
string$filenameFilename to write to
Returns
bool

Definition at line 397 of file RandomImageGenerator.php.

References $args, $command, $retval, $wgImageMagickConvertCommand, as, global, wfEscapeShellArg(), and wfShellExec().

RandomImageGenerator::writeSvg (   $spec,
  $format,
  $filename 
)

Based on image specification, write a very simple SVG file to disk.

Ignores the background spec because transparency is cool. :)

Parameters
array$specSpec describing background and shapes to draw
string$formatFile format to write (which is obviously always svg here)
string$filenameFilename to write to
Exceptions
Exception

Definition at line 246 of file RandomImageGenerator.php.

References as.

Member Data Documentation

RandomImageGenerator::$dictionaryFile
private

Definition at line 31 of file RandomImageGenerator.php.

Referenced by __construct(), and getRandomLines().

RandomImageGenerator::$maxHeight = 800
private

Definition at line 35 of file RandomImageGenerator.php.

RandomImageGenerator::$maxWidth = 800
private

Definition at line 33 of file RandomImageGenerator.php.

RandomImageGenerator::$minHeight = 400
private

Definition at line 34 of file RandomImageGenerator.php.

RandomImageGenerator::$minWidth = 400
private

Definition at line 32 of file RandomImageGenerator.php.

RandomImageGenerator::$orientations
staticprivate
Initial value:
= [
[
'0thRow' => 'top',
'0thCol' => 'left'

Orientations: 0th row, 0th column, Exif orientation code, rotation 2x2 matrix that is opposite of orientation.

N.b. we do not handle the 'flipped' orientations, which is why there is no entry for 2, 4, 5, or 7. Those seem to be rare in real images anyway (we also would need a non-symmetric shape for the images to test those, like a letter F).

Definition at line 45 of file RandomImageGenerator.php.

RandomImageGenerator::$shapesToDraw = 5
private

Definition at line 36 of file RandomImageGenerator.php.

Referenced by getImageSpec().


The documentation for this class was generated from the following file: