image icon indicating copy to clipboard operation
image copied to clipboard

PHP Image Processing

Results 153 image issues
Sort by recently updated
recently updated
newest added

This is a great library, but I'm really missing a "smart crop" feature! There's a handful of PHP libraries that do this, but it would be great to be integrated...

investigation-needed

This seems to be a GD library issue. The function [imageresolution](https://www.php.net/manual/en/function.imageresolution.php) seems to return incorrect values. So far I have only been able to observe this in Jpeg format. An...

patch-release
investigation-needed

Solution approach (draft). Premature termination of the decoder chain by “final” `DecoderException`, if it is clear that no further decoder will be successful. For example - Input is string -...

minor-release

Hello, in my use case i want to know the resulting image dimensions without generating them ahead of time. I believe "getSize()" should be documented as an API function as...

This code works when GD is selected in the config, but does not work on Imagick: ```php $mask = Image::make('image.gif') ->greyscale() ->contrast(100) ->invert(); $newImage = Image::canvas($mask->width(), $mask->height(), '#000000') ->mask($mask, false)...

```php $full_image = Image::make(storage_path('app/images_to_import/' . $product['file_name'])); $full_width = $full_image->width(); $full_image->crop($full_width, 288)->trim('bottom-right', null, 60)->save(storage_path('app/generated_images/' . $file_name . '.webp', 100, 'webp')); ``` I've tried with both GD and Imagick. It's leaving a...

I use the same code to test Image:make, some image is OK, some will display warning: ```` libpng warning: Interlace handling should be turned on when using png_read_image ```` I...

Hi, Just discovered a challenge where uploaded GIF files will be turned bit yellow after resizing. JPG and PNG are fine. Will it go under bug or is something missing...

when I use Image::make() to make a source image, the new image's size bigger than source image, but I didn't do anything on new image, just `$image = Image::make($realPath); `...

Hi Guys, When uploading large size images, the error throws as "`Image source not readable`". This issue only happens for the large images, because I noticed when I tried to...