LoremPixel.php
1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
namespace FakerPress\Provider\Image;
use Faker\Provider\Base;
/**
* Provides images from Lorem Pixel
*
* @since 0.3.2
*/
class LoremPixel extends Base {
/**
* Generate an URL for an image from LoremPixel
*
* @since 0.3.2
* @since 0.4.9 On this version we started to accept Array or Int in the Second Param
*
* @param array|int $width A range for the images that will be generated, if a int is passed
* we use that value always.
* @param float|array|int $height Image height, int for fixed size, array for randomized and
* float to use a ratio
*
* @return string Return the URL for Lorem Pixel
*/
public function lorempixel( $width = [ 200, 640 ], $height = 1.25 ) {
if ( is_array( $width ) ){
$width = call_user_func_array( [ $this->generator, 'numberBetween' ], $width );
}
// Makes sure we have an Int
$width = absint( $width );
// Check For float (ratio)
if ( is_float( $height ) ) {
$height = floor( $width / floatval( $height ) );
} elseif ( is_array( $height ) ) {
$height = call_user_func_array( [ $this->generator, 'numberBetween' ], $height );
}
$categories = [
'abstract',
'animals',
'business',
'cats',
'city',
'food',
'nightlife',
'fashion',
'people',
'nature',
'sports',
'technics',
'transport',
];
/**
* Allow developers to filter the Categories, only one will be selected.
*
* @since 0.4.9
*
* @param array $categories The set of categories that can be used from LoremPixel
* @param self $provider An instance of the Provider
*/
$categories = (array) apply_filters( 'fakerpress.provider.image.lorempixel.categories', $categories, $this );
$url = "http://lorempixel.com/{$width}/{$height}/" . $this->generator->randomElement( $categories );
return $url;
}
}