50 'counterRotation' => [ [ 1, 0 ], [ 0, 1 ] ]
56 'counterRotation' => [ [ -1, 0 ], [ 0, -1 ] ]
62 'counterRotation' => [ [ 0, 1 ], [ 1, 0 ] ]
68 'counterRotation' => [ [ 0, -1 ], [ -1, 0 ] ]
73 foreach ( [
'dictionaryFile',
'minWidth',
'minHeight',
74 'maxWidth',
'maxHeight',
'shapesToDraw' ]
as $property
82 if ( !isset( $this->dictionaryFile ) ) {
85 '/usr/share/dict/words',
87 __DIR__ .
'/words.txt'
96 if ( !isset( $this->dictionaryFile ) ) {
97 throw new Exception(
"RandomImageGenerator: dictionary file not "
98 .
"found or not specified properly" );
114 foreach ( $filenames
as $filename ) {
115 $this->{$imageWriteMethod}( $this->
getImageSpec(), $format, $filename );
131 if ( $format ===
'svg' ) {
137 return 'writeImageWithApi';
142 return 'writeImageWithCommandLine';
145 throw new Exception(
"RandomImageGenerator: could not find a suitable "
146 .
"method to write images in '$format' format" );
159 if ( is_null(
$dir ) ) {
164 $basename = $pair[0] .
'_' . $pair[1];
165 if ( !is_null( $extension ) ) {
166 $basename .=
'.' . $extension;
168 $basename = preg_replace(
'/\s+/',
'', $basename );
169 $filenames[] =
"$dir/$basename";
186 $spec[
'width'] = mt_rand( $this->minWidth, $this->maxWidth );
187 $spec[
'height'] = mt_rand( $this->minHeight, $this->maxHeight );
190 $diagonalLength = sqrt( pow( $spec[
'width'], 2 ) + pow( $spec[
'height'], 2 ) );
194 $radius = mt_rand( 0, $diagonalLength / 4 );
195 if ( $radius == 0 ) {
198 $originX = mt_rand( -1 * $radius, $spec[
'width'] + $radius );
199 $originY = mt_rand( -1 * $radius, $spec[
'height'] + $radius );
200 $angle = mt_rand( 0, ( 3.141592 / 2 ) * $radius ) / $radius;
201 $legDeltaX = round( $radius * sin( $angle ) );
202 $legDeltaY = round( $radius * cos( $angle ) );
207 [
'x' => $originX,
'y' => $originY - $radius ],
208 [
'x' => $originX + $legDeltaX,
'y' => $originY + $legDeltaY ],
209 [
'x' => $originX - $legDeltaX,
'y' => $originY + $legDeltaY ],
210 [
'x' => $originX,
'y' => $originY - $radius ]
215 $spec[
'draws'] = $draws;
229 foreach ( $shape
as $point ) {
230 $points[] = $point[
'x'] .
',' . $point[
'y'];
233 return implode(
" ",
$points );
246 public function writeSvg( $spec, $format, $filename ) {
247 $svg =
new SimpleXmlElement(
'<svg/>' );
248 $svg->addAttribute(
'xmlns',
'http://www.w3.org/2000/svg' );
249 $svg->addAttribute(
'version',
'1.1' );
250 $svg->addAttribute(
'width', $spec[
'width'] );
251 $svg->addAttribute(
'height', $spec[
'height'] );
252 $g = $svg->addChild(
'g' );
253 foreach ( $spec[
'draws']
as $drawSpec ) {
254 $shape = $g->addChild(
'polygon' );
255 $shape->addAttribute(
'fill', $drawSpec[
'fill'] );
256 $shape->addAttribute(
'points', self::shapePointsToString( $drawSpec[
'shape'] ) );
259 $fh = fopen( $filename,
'w' );
261 throw new Exception(
"couldn't open $filename for writing" );
263 fwrite( $fh, $svg->asXML() );
264 if ( !fclose( $fh ) ) {
265 throw new Exception(
"couldn't close $filename" );
286 $orientation = self::$orientations[0];
287 if ( $format ==
'jpg' ) {
288 $orientation = self::$orientations[array_rand( self::$orientations )];
292 $image->newImage( $spec[
'width'], $spec[
'height'],
new ImagickPixel( $spec[
'fill'] ) );
294 foreach ( $spec[
'draws']
as $drawSpec ) {
295 $draw =
new ImagickDraw();
296 $draw->setFillColor( $drawSpec[
'fill'] );
297 $draw->polygon( $drawSpec[
'shape'] );
298 $image->drawImage( $draw );
301 $image->setImageFormat( $format );
306 $image->writeImage( $filename );
315 .
wfEscapeShellArg(
"set Exif.Image.Orientation " . $orientation[
'exifCode'] )
322 print
"Error with $cmd: $retval, $err\n";
339 if ( $dims[
'x'] < 0 ) {
340 $correctionX = abs( $dims[
'x'] );
342 if ( $dims[
'y'] < 0 ) {
343 $correctionY = abs( $dims[
'y'] );
345 $tSpec[
'width'] = abs( $dims[
'x'] );
346 $tSpec[
'height'] = abs( $dims[
'y'] );
347 $tSpec[
'fill'] = $spec[
'fill'];
348 $tSpec[
'draws'] = [];
349 foreach ( $spec[
'draws']
as $draw ) {
351 'fill' => $draw[
'fill'],
354 foreach ( $draw[
'shape']
as $point ) {
356 $tPoint[
'x'] += $correctionX;
357 $tPoint[
'y'] += $correctionY;
358 $tDraw[
'shape'][] = $tPoint;
360 $tSpec[
'draws'][] = $tDraw;
375 'x' => $x * $matrix[0][0] + $y * $matrix[0][1],
376 'y' => $x * $matrix[1][0] + $y * $matrix[1][1]
402 foreach ( $spec[
'draws']
as $draw ) {
403 $fill = $draw[
'fill'];
405 $drawCommand =
"fill $fill polygon $polygon";
424 for ( $i = 0; $i <= 2; $i++ ) {
425 $components[] = mt_rand( 0, 255 );
428 return 'rgb(' . implode(
', ', $components ) .
')';
443 for ( $i = 0; $i < $count; $i += 2 ) {
465 for ( $i = 0; $i < $number_desired; $i++ ) {
474 $fh = fopen( $filepath,
"r" );
476 throw new Exception(
"couldn't open $filepath" );
479 $max_index = $number_desired - 1;
480 while ( !feof( $fh ) ) {
481 $line = fgets( $fh );
482 if (
$line !==
false ) {
485 if ( mt_rand( 0, $line_number ) <= $max_index ) {
491 if ( $line_number < $number_desired ) {
492 throw new Exception(
"not enough lines in $filepath" );