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

hello, unlike whats written it does not work on php 5 installing with composer. The last version compatible with php 5.6 is 2.5.1 It's something i can do for using...

In Laravel 8 isn't working _config/image.php_. It is still using the GD library. I have to use imagick for HEIF images. But I added this `Image::configure(array('driver' => 'imagick'));` in function...

Applies PR #792 fix to 'bottom', 'bottom-center', 'bottom-middle', 'center-bottom', 'middle-bottom' positions to fix #1030

Would be great if the package supports flexible resizing, effects etc. through url parameters. This can "almost" be done, but the image cache does not support this: In short: **Issue:...

Hey, is there a way to use PutFileAs and Intervention Image for large image files? I have the following code: ` $photo = Image::make($image)->encode('jpg', 70); $name = $image->hashName(); try {...

Hello, I used the intervention to edit the image, such as clipping, adding watermark, etc., but after doing these operations, I found that the gps information in the exif will...

Hi Am on Laravel 5.5 with image type Imagick, even I have installed libwebp, WebP in my Ubuntu 16.04. I would like to resize and change the extension of the...

``` php require_once 'vendor/autoload.php'; use Intervention\Image\ImageManagerStatic as Image; $img = Image::make($_GET['backgroundsPath'].$_GET['backgroundFile']); $img->text($_GET['text'], 335, 175, function ($font) { $font->file('../fonts/intro-black-caps-webfont.woff'); $font->size(34); $font->color("#ffffff"); $font->align('center'); $font->valign('top'); }); ``` ![2016-01-09 12 14 42](https://cloud.githubusercontent.com/assets/1662812/12215563/99d9dc60-b6ca-11e5-85dd-86b02bf766e4.png) As can...

bug

Can we have an option for utf-8 characters May be something like **$font->encode('utf-8');**. ``` $img->text('foo', 0, 0, function($font) { $font->encode('utf-8'); }); ``` Currently, it is not supporting these characters. I...

Hi, I'm using laravel 5.3 , with PHP7 and GD installed. I face this problem **with some images** : ``` NotReadableException in Decoder.php line 96: Unable to init from given...