psn / faker-image-provider
An image provider for the fakerPHP library.
v1.0.2
2024-06-22 17:37 UTC
Requires
- php: >=8.2
- ext-imagick: *
- fakerphp/faker: ^1.23
Requires (Dev)
- pestphp/pest: ^2.34
- spatie/temporary-directory: ^2.2
- xrdebug/php: ^2.0
- xrdebug/xrdebug: ^2.0
This package is auto-updated.
Last update: 2025-03-22 19:14:24 UTC
README
FakerPHP Image Provider
A custom image provider for the FakerPHP library.
The package uses LOREM PICSUM to generate url's and images.
Installation
composer require psn/faker-image-provider
Usage
-
add provider
$faker = Faker\Factory::create(); $faker->addProvider(new Psn\FakerImageProvider\Image($faker));
-
generate url's
// signature Image::imageUrl(int $witdth = 640, int $height = 480): string
// https://picsum.photos/640/480 $url = $faker->imageUrl(); // https://picsum.photos/1280/720 $url = $faker->imageUrl(width: 1280, height: 720);
-
generate images
// signature Image::image( int $width = 640, int $height = 480, ?string $directory = null, ?string $extension = null ): string
// /tmp/faker_img_6672b731a5760.jpg $path = $faker->image(); // /home/user/test/faker_img_6672b731a5760.jpg $path = $faker->image(directory: '~/test'); // /tmp/faker_img_6672b731a5760.heic $path = $faker->image(extension: 'heic');