-
Notifications
You must be signed in to change notification settings - Fork 529
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Image creation issue, PHP7 #550
Comments
It seems to be related to GD. Working fine with ImageMagick. Will leave it open in case somebody would like to take a look at it. Thanks |
Fwiw, the gmagick extension seems to have a number of problems against php 7.0.x. (Every version available segfaults on process teardown) |
In order to inspect this issue, we'd need the PHP version, as well as the PHP code. |
Hi, I got the exact same issue on PHP 7.2. How did you manage to get this sorted @fbxcelsior ? |
If anyone is still having this issue, the way to investigate it would be to run the PHP script through valgrind, i.e. something like This type of graphical glitch is almost certainly reading from unitialized memory, which valgrind detects and gives out errors for. Then it wil probably need reporting upstream in the PHP bug tracker. |
Hi,
I am using imagine in conjunction with sonata media bundle to create custom actions for my uploaded images. Since moving to PHP7 I get a weird effect on one of my custom actions that was previously work correctly.
When creating a new image, on top of which I will be pasting another image, it seems that the background color that I set is always ignored and I get the following outcome instead of the background color being correctly displayed under the pasted image:
Did anybody encounter this before? This happens to me with v0.6.3.
Thank you in advance,
Filipe
The text was updated successfully, but these errors were encountered: