image
image copied to clipboard
PHP Image Processing
Hey, is it somehow possible to add a "border" around an image? This is currently my attempt: ``` $image = Image::make(public_path($img)); $canvas_image = $image; $image->resize(1024, 1024, function ($constraint) { $constraint->aspectRatio();...
Hi dears, I've added two new commands: - **edge** to enhance edges within the image - **blackThreshold** to force all pixels below the threshold parameter into black
``` / create an image $img = Image::make('public/foo.jpg'); // backup status $img->backup(); // reset image (return to backup state) $img->reset(); ``` throwing an error, i am using version 2.5.1 ```...
Hi When inserting a watermark into my image it removes all color of said watermark Package version: 2.7.0 ``` $watermark = Image::make(public_path('img/watermark.png'))->resize( 100, 100 ); // $image is an url,...
I've created webp image using image/intervention. It's working perfectly on my local server but it's not working in the live server(ubuntu 160.04). But when I try to open that image...
Resubmit of #905, that has been closed by OP. Full props @LucienCorreia for finding out that this very helpful code was missing.
ERROR: E_WARNING exif_read_data(example.png): File not supported in Intervention/image/src/Intervention/Image/Commands/ExifCommand.php While trying to use ` $image->orientate()`; it throws `exif_read_data` error. ` ERROR: 20210913-164246: E_WARNING exif_read_data(example.png): File not supported in intervention/image/src/Intervention/Image/Commands/ExifCommand.php `
It would be good to have method call to strip metadata. Of course this would be Driver specific but Imagick (and Vips) support this option, GD could support if you...
I have created a code that should be quite good at reproducing the performance issue ``` private static function createMultipleImages(UploadedFile &$uploadedFile, string $outputFormat='webp') { $filename = 'myOutputImage'; for($i = 1;...
Hi, I am getting images from remote address and save them in local. Everything works fine. I have allow_url_fopen enabled and I can access the url which is `http`. The...