ar_JO
1 year ago
ar_SA
1 year ago
at_AT
1 year ago
bg_BG
1 year ago
bn_BD
1 year ago
cs_CZ
1 year ago
da_DK
1 year ago
de_AT
1 year ago
de_CH
1 year ago
de_DE
1 year ago
el_CY
1 year ago
el_GR
1 year ago
en_AU
1 year ago
en_CA
1 year ago
en_GB
1 year ago
en_HK
1 year ago
en_IN
1 year ago
en_NG
1 year ago
en_NZ
1 year ago
en_PH
1 year ago
en_SG
1 year ago
en_UG
1 year ago
en_US
1 year ago
en_ZA
1 year ago
es_AR
1 year ago
es_ES
1 year ago
es_PE
1 year ago
es_VE
1 year ago
et_EE
1 year ago
fa_IR
1 year ago
fi_FI
1 year ago
fr_BE
1 year ago
fr_CA
1 year ago
fr_CH
1 year ago
fr_FR
1 year ago
he_IL
1 year ago
hr_HR
1 year ago
hu_HU
1 year ago
hy_AM
1 year ago
id_ID
1 year ago
is_IS
1 year ago
it_CH
1 year ago
it_IT
1 year ago
ja_JP
1 year ago
ka_GE
1 year ago
kk_KZ
1 year ago
ko_KR
1 year ago
lt_LT
1 year ago
lv_LV
1 year ago
me_ME
1 year ago
mn_MN
1 year ago
ms_MY
1 year ago
nb_NO
1 year ago
ne_NP
1 year ago
nl_BE
1 year ago
nl_NL
1 year ago
pl_PL
1 year ago
pt_BR
1 year ago
pt_PT
1 year ago
ro_MD
1 year ago
ro_RO
1 year ago
ru_RU
1 year ago
sk_SK
1 year ago
sl_SI
1 year ago
sr_Cyrl_RS
1 year ago
sr_Latn_RS
1 year ago
sr_RS
1 year ago
sv_SE
1 year ago
th_TH
1 year ago
tr_TR
1 year ago
uk_UA
1 year ago
vi_VN
1 year ago
zh_CN
1 year ago
zh_TW
1 year ago
Address.php
1 year ago
Barcode.php
1 year ago
Base.php
1 year ago
Biased.php
1 year ago
Color.php
1 year ago
Company.php
1 year ago
DateTime.php
1 year ago
File.php
1 year ago
HtmlLorem.php
1 year ago
Image.php
1 year ago
Internet.php
1 year ago
Lorem.php
1 year ago
Miscellaneous.php
1 year ago
Payment.php
1 year ago
Person.php
1 year ago
PhoneNumber.php
1 year ago
Text.php
1 year ago
UserAgent.php
1 year ago
Uuid.php
1 year ago
Image.php
106 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider; |
| 4 | |
| 5 | /** |
| 6 | * Depends on image generation from http://lorempixel.com/ |
| 7 | */ |
| 8 | class Image extends Base |
| 9 | { |
| 10 | protected static $categories = array( |
| 11 | 'abstract', 'animals', 'business', 'cats', 'city', 'food', 'nightlife', |
| 12 | 'fashion', 'people', 'nature', 'sports', 'technics', 'transport' |
| 13 | ); |
| 14 | |
| 15 | /** |
| 16 | * Generate the URL that will return a random image |
| 17 | * |
| 18 | * Set randomize to false to remove the random GET parameter at the end of the url. |
| 19 | * |
| 20 | * @example 'http://lorempixel.com/640/480/?12345' |
| 21 | * |
| 22 | * @param integer $width |
| 23 | * @param integer $height |
| 24 | * @param string|null $category |
| 25 | * @param bool $randomize |
| 26 | * @param string|null $word |
| 27 | * @param bool $gray |
| 28 | * |
| 29 | * @return string |
| 30 | */ |
| 31 | public static function imageUrl($width = 640, $height = 480, $category = null, $randomize = true, $word = null, $gray = false) |
| 32 | { |
| 33 | $baseUrl = "https://lorempixel.com/"; |
| 34 | $url = "{$width}/{$height}/"; |
| 35 | |
| 36 | if ($gray) { |
| 37 | $url = "gray/" . $url; |
| 38 | } |
| 39 | |
| 40 | if ($category) { |
| 41 | if (!in_array($category, static::$categories)) { |
| 42 | throw new \InvalidArgumentException(sprintf('Unknown image category "%s"', $category)); |
| 43 | } |
| 44 | $url .= "{$category}/"; |
| 45 | if ($word) { |
| 46 | $url .= "{$word}/"; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | if ($randomize) { |
| 51 | $url .= '?' . static::randomNumber(5, true); |
| 52 | } |
| 53 | |
| 54 | return $baseUrl . $url; |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Download a remote random image to disk and return its location |
| 59 | * |
| 60 | * Requires curl, or allow_url_fopen to be on in php.ini. |
| 61 | * |
| 62 | * @example '/path/to/dir/13b73edae8443990be1aa8f1a483bc27.jpg' |
| 63 | */ |
| 64 | public static function image($dir = null, $width = 640, $height = 480, $category = null, $fullPath = true, $randomize = true, $word = null, $gray = false) |
| 65 | { |
| 66 | $dir = is_null($dir) ? sys_get_temp_dir() : $dir; // GNU/Linux / OS X / Windows compatible |
| 67 | // Validate directory path |
| 68 | if (!is_dir($dir) || !is_writable($dir)) { |
| 69 | throw new \InvalidArgumentException(sprintf('Cannot write to directory "%s"', $dir)); |
| 70 | } |
| 71 | |
| 72 | // Generate a random filename. Use the server address so that a file |
| 73 | // generated at the same time on a different server won't have a collision. |
| 74 | $name = md5(uniqid(empty($_SERVER['SERVER_ADDR']) ? '' : $_SERVER['SERVER_ADDR'], true)); |
| 75 | $filename = $name .'.jpg'; |
| 76 | $filepath = $dir . DIRECTORY_SEPARATOR . $filename; |
| 77 | |
| 78 | $url = static::imageUrl($width, $height, $category, $randomize, $word, $gray); |
| 79 | |
| 80 | // save file |
| 81 | if (function_exists('curl_exec')) { |
| 82 | // use cURL |
| 83 | $fp = fopen($filepath, 'w'); |
| 84 | $ch = curl_init($url); |
| 85 | curl_setopt($ch, CURLOPT_FILE, $fp); |
| 86 | $success = curl_exec($ch) && curl_getinfo($ch, CURLINFO_HTTP_CODE) === 200; |
| 87 | fclose($fp); |
| 88 | curl_close($ch); |
| 89 | |
| 90 | if (!$success) { |
| 91 | unlink($filepath); |
| 92 | |
| 93 | // could not contact the distant URL or HTTP error - fail silently. |
| 94 | return false; |
| 95 | } |
| 96 | } elseif (ini_get('allow_url_fopen')) { |
| 97 | // use remote fopen() via copy() |
| 98 | $success = copy($url, $filepath); |
| 99 | } else { |
| 100 | return new \RuntimeException('The image formatter downloads an image from a remote HTTP server. Therefore, it requires that PHP can request remote hosts, either via cURL or fopen()'); |
| 101 | } |
| 102 | |
| 103 | return $fullPath ? $filepath : $filename; |
| 104 | } |
| 105 | } |
| 106 |