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

The getBoxSize() function of \Intervention\Image\Gd\Font has the following behaviour which seems to be unwanted. Problem: $text = 'Jörg'; $font = new \Intervention\Image\Gd\Font($text); $font->file(public_path('fonts/montserrat-v14-latin-700.ttf')); $font->valign('top'); $box = $font->getBoxSize(); dump($font->getText()); // internal...

Inpect the error return empty page, here is my code: ``` $img = Image::make(public_path($name)) ->resize(320, 240) ->save('/assets/', $file->getClientOriginalName()); ``` ![image](https://user-images.githubusercontent.com/16028996/36145277-d7b53188-10eb-11e8-91a1-e0d3673f7a13.png) ![image](https://user-images.githubusercontent.com/16028996/36145300-eb304d6a-10eb-11e8-8aff-3fa4ba73a930.png) ![image](https://user-images.githubusercontent.com/16028996/36145388-278ae81a-10ec-11e8-9d95-9ec0787475f4.png)

Hello, similar to https://github.com/Intervention/image/issues/168 i have the same problem i am using the latest version of image intervention. The code i am using: ``` $image = Image::make($img_path); $image->orientate(); if ($image->width()...

Please add **`vips`** for driver. It takes less RAM. [Stack Overflow](https://stackoverflow.com/questions/63671182/resize-the-image-using-php-vips-library) [PECL](https://pecl.php.net/package/vips)

minor-release

# New Method Introduction `dpi` helps to update image density supported only for imagick driver It throws exception if called over other driver ### Usage ```php $path = "/home/user/hello.jpg"; $image...

$img = Image::make('public/foo.jpg'); $img->limitColors(255, '#ff9900'); $img->limitColors(255, '#cccccc'); $img->save('public/bar.jpg'); not worrking double limitColors

I've just noticed that using the `encode` method increases the file size significantly if you try to encode a JPG to JPG. Example: ```php $image = $this->image->make($originalJpgImage); $imageJpgEncoded = (string)$image->encode('jpg',100);...

I have opened an issue for the same reason on imagecache repository, sorry for the duplicated, but i don't know which place is the correct one. The issue is: #https://github.com/Intervention/imagecache/issues/96...

What about using pattern Fluent? Have ```return $this```: ```\Intervention\Image\AbstractFont::file``` Didnt have: ```\Intervention\Image\AbstractShape::background```