image
image copied to clipboard
PHP Image Processing
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()); ```   
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)
# 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
How can we resize the inserted image
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```