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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
|
import { toBase64 } from '../../internal/base64';
import { ModuleBase } from '../../internal/module-base';
import type { SexType } from '../person';
/**
* Module to generate images.
*
* ### Overview
*
* For a random image, use [`url()`](https://fakerjs.dev/api/image.html#url). This will not return the image directly but a URL pointing to an image from one of two demo image providers "Picsum" and "LoremFlickr". You can request an image specifically from one of two providers using [`urlLoremFlickr()`](https://fakerjs.dev/api/image.html#urlloremflickr) or [`urlPicsumPhotos()`](https://fakerjs.dev/api/image.html#urlpicsumphotos).
*
* For a random placeholder image containing only solid color and text, use [`dataUri()`](https://fakerjs.dev/api/image.html#datauri) (returns a SVG string).
*
* For a random user avatar image, use [`avatar()`](https://fakerjs.dev/api/image.html#avatar), or [`personPortrait()`](https://fakerjs.dev/api/image.html#personportrait) which has more control over the size and sex of the person.
*
* If you need more control over the content of the images, you can pass a `category` parameter e.g. `'cat'` or `'nature'` to [`urlLoremFlickr()`](https://fakerjs.dev/api/image.html#urlloremflickr) or simply use [`faker.helpers.arrayElement()`](https://fakerjs.dev/api/helpers.html#arrayelement) with your own array of image URLs.
*/
export class ImageModule extends ModuleBase {
/**
* Generates a random avatar image url.
*
* @remark This method sometimes generates a random string representing an URL from GitHub by using a random user ID. Faker is not responsible for the content of the image or the service providing it.
*
* @example
* faker.image.avatar()
* // 'https://avatars.githubusercontent.com/u/97165289'
*
* @since 2.0.1
*/
avatar(): string {
// Add new avatar providers here, when adding a new one.
const avatarMethod = this.faker.helpers.arrayElement([
this.personPortrait,
this.avatarGitHub,
]);
return avatarMethod();
}
/**
* Generates a random avatar from GitHub.
*
* @remark This method generates a random string representing an URL from GitHub by using a random user ID. Faker is not responsible for the content of the image or the service providing it.
*
* @example
* faker.image.avatarGitHub()
* // 'https://avatars.githubusercontent.com/u/97165289'
*
* @since 8.0.0
*/
avatarGitHub(): string {
return `https://avatars.githubusercontent.com/u/${this.faker.number.int(
100000000
)}`;
}
/**
* Generates a random square portrait (avatar) of a person.
* These are static images of fictional people created by an AI, Stable Diffusion 3.
* The image URLs are served via the JSDelivr CDN and subject to their [terms of use](https://www.jsdelivr.com/terms).
*
* @param options Options for generating an AI avatar.
* @param options.sex The sex of the person for the avatar. Can be `'female'` or `'male'`. If not provided, defaults to a random selection.
* @param options.size The size of the image. Can be `512`, `256`, `128`, `64` or `32`. If not provided, defaults to `512`.
*
* @example
* faker.image.personPortrait() // 'https://cdn.jsdelivr.net/gh/faker-js/assets-person-portrait/female/512/57.jpg'
* faker.image.personPortrait({ sex: 'male', size: '128' }) // 'https://cdn.jsdelivr.net/gh/faker-js/assets-person-portrait/male/128/27.jpg'
*
* @since 9.5.0
*/
personPortrait(
options: {
/**
* The sex of the person for the avatar.
* Can be `'female'` or `'male'`.
*
* @default faker.person.sexType()
*/
sex?: SexType;
/**
* The size of the image.
* Can be `512`, `256`, `128`, `64` or `32`.
*
* @default 512
*/
size?: 512 | 256 | 128 | 64 | 32;
} = {}
): string {
const { sex = this.faker.person.sexType(), size = 512 } = options;
const baseURL =
'https://cdn.jsdelivr.net/gh/faker-js/assets-person-portrait';
return `${baseURL}/${sex}/${size}/${this.faker.number.int({ min: 0, max: 99 })}.jpg`;
}
/**
* Generates a random image url.
*
* @remark This method generates a random string representing an URL from loremflickr. Faker is not responsible for the content of the image or the service providing it.
*
* @param options Options for generating a URL for an image.
* @param options.width The width of the image. Defaults to a random integer between `1` and `3999`.
* @param options.height The height of the image. Defaults to a random integer between `1` and `3999`.
*
* @example
* faker.image.url() // 'https://loremflickr.com/640/480?lock=1234'
*
* @since 8.0.0
*/
url(
options: {
/**
* The width of the image.
*
* @default faker.number.int({ min: 1, max: 3999 })
*/
width?: number;
/**
* The height of the image.
*
* @default faker.number.int({ min: 1, max: 3999 })
*/
height?: number;
} = {}
): string {
const {
width = this.faker.number.int({ min: 1, max: 3999 }),
height = this.faker.number.int({ min: 1, max: 3999 }),
} = options;
const urlMethod = this.faker.helpers.arrayElement([
this.urlLoremFlickr,
({ width, height }: { width?: number; height?: number }) =>
this.urlPicsumPhotos({ width, height, grayscale: false, blur: 0 }),
]);
return urlMethod({ width, height });
}
/**
* Generates a random image url provided via https://loremflickr.com.
*
* @remark This method generates a random string representing an URL from loremflickr. Faker is not responsible for the content of the image or the service providing it.
*
* @param options Options for generating a URL for an image.
* @param options.width The width of the image. Defaults to a random integer between `1` and `3999`.
* @param options.height The height of the image. Defaults to a random integer between `1` and `3999`.
* @param options.category Category to use for the image.
*
* @example
* faker.image.urlLoremFlickr() // 'https://loremflickr.com/640/480?lock=1234'
* faker.image.urlLoremFlickr({ width: 128 }) // 'https://loremflickr.com/128/480?lock=1234'
* faker.image.urlLoremFlickr({ height: 128 }) // 'https://loremflickr.com/640/128?lock=1234'
* faker.image.urlLoremFlickr({ category: 'nature' }) // 'https://loremflickr.com/640/480/nature?lock=1234'
*
* @since 8.0.0
*/
urlLoremFlickr(
options: {
/**
* The width of the image.
*
* @default faker.number.int({ min: 1, max: 3999 })
*/
width?: number;
/**
* The height of the image.
*
* @default faker.number.int({ min: 1, max: 3999 })
*/
height?: number;
/**
* Category to use for the image.
*/
category?: string;
} = {}
): string {
const {
width = this.faker.number.int({ min: 1, max: 3999 }),
height = this.faker.number.int({ min: 1, max: 3999 }),
category,
} = options;
return `https://loremflickr.com/${width}/${height}${
category == null ? '' : `/${category}`
}?lock=${this.faker.number.int()}`;
}
/**
* Generates a random image url provided via https://picsum.photos.
*
* @remark This method generates a random string representing an URL from picsum.photos. Faker is not responsible for the content of the image or the service providing it.
*
* @param options Options for generating a URL for an image.
* @param options.width The width of the image. Defaults to a random integer between `1` and `3999`.
* @param options.height The height of the image. Defaults to a random integer between `1` and `3999`.
* @param options.grayscale Whether the image should be grayscale. Defaults to a random boolean value.
* @param options.blur Whether the image should be blurred. `0` disables the blur. Defaults to a random integer between `0` and `10`.
*
* @example
* faker.image.urlPicsumPhotos() // 'https://picsum.photos/seed/NWbJM2B/640/480'
* faker.image.urlPicsumPhotos({ width: 128 }) // 'https://picsum.photos/seed/NWbJM2B/128/480'
* faker.image.urlPicsumPhotos({ height: 128 }) // 'https://picsum.photos/seed/NWbJM2B/640/128'
* faker.image.urlPicsumPhotos({ grayscale: true }) // 'https://picsum.photos/seed/NWbJM2B/640/480?grayscale'
* faker.image.urlPicsumPhotos({ blur: 4 }) // 'https://picsum.photos/seed/NWbJM2B/640/480?blur=4'
* faker.image.urlPicsumPhotos({ blur: 4, grayscale: true }) // 'https://picsum.photos/seed/NWbJM2B/640/480?grayscale&blur=4'
*
* @since 8.0.0
*/
urlPicsumPhotos(
options: {
/**
* The width of the image.
*
* @default faker.number.int({ min: 1, max: 3999 })
*/
width?: number;
/**
* The height of the image.
*
* @default faker.number.int({ min: 1, max: 3999 })
*/
height?: number;
/**
* Whether the image should be grayscale.
*
* @default faker.datatype.boolean()
*/
grayscale?: boolean;
/**
* Whether the image should be blurred. `0` disables the blur.
*
* @default faker.number.int({ max: 10 })
*/
blur?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
} = {}
): string {
const {
width = this.faker.number.int({ min: 1, max: 3999 }),
height = this.faker.number.int({ min: 1, max: 3999 }),
grayscale = this.faker.datatype.boolean(),
blur = this.faker.number.int({ max: 10 }),
} = options;
let url = `https://picsum.photos/seed/${this.faker.string.alphanumeric({
length: { min: 5, max: 10 },
})}/${width}/${height}`;
const hasValidBlur = typeof blur === 'number' && blur >= 1 && blur <= 10;
if (grayscale || hasValidBlur) {
url += '?';
if (grayscale) {
url += `grayscale`;
}
if (grayscale && hasValidBlur) {
url += '&';
}
if (hasValidBlur) {
url += `blur=${blur}`;
}
}
return url;
}
/**
* Generates a random data uri containing an URL-encoded SVG image or a Base64-encoded SVG image.
*
* @param options Options for generating a data uri.
* @param options.width The width of the image. Defaults to a random integer between `1` and `3999`.
* @param options.height The height of the image. Defaults to a random integer between `1` and `3999`.
* @param options.color The color of the image. Must be a color supported by svg. Defaults to a random color.
* @param options.type The type of the image. Defaults to a random type.
*
* @example
* faker.image.dataUri() // 'data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http...'
* faker.image.dataUri({ type: 'svg-base64' }) // 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3...'
*
* @since 4.0.0
*/
dataUri(
options: {
/**
* The width of the image.
*
* @default faker.number.int({ min: 1, max: 3999 })
*/
width?: number;
/**
* The height of the image.
*
* @default faker.number.int({ min: 1, max: 3999 })
*/
height?: number;
/**
* The color of the image. Must be a color supported by svg.
*
* @default faker.color.rgb()
*/
color?: string;
/**
* The type of the image to return. Consisting of
* the file extension and the used encoding.
*
* @default faker.helpers.arrayElement(['svg-uri', 'svg-base64'])
*/
type?: 'svg-uri' | 'svg-base64';
} = {}
): string {
const {
width = this.faker.number.int({ min: 1, max: 3999 }),
height = this.faker.number.int({ min: 1, max: 3999 }),
color = this.faker.color.rgb(),
type = this.faker.helpers.arrayElement(['svg-uri', 'svg-base64']),
} = options;
const svgString = `<svg xmlns="http://www.w3.org/2000/svg" version="1.1" baseProfile="full" width="${width}" height="${height}"><rect width="100%" height="100%" fill="${color}"/><text x="${
width / 2
}" y="${
height / 2
}" font-size="20" alignment-baseline="middle" text-anchor="middle" fill="white">${width}x${height}</text></svg>`;
return type === 'svg-uri'
? `data:image/svg+xml;charset=UTF-8,${encodeURIComponent(svgString)}`
: `data:image/svg+xml;base64,${toBase64(svgString)}`;
}
}
|