We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Running
hsetroot -add "#FF0000" -add "#0000FF" -gradient 0 -write gradient.jpeg
on a 5120x2160 monitor yields an image of a solid red:
It appears that for a sufficiently large resolution, gradient commands produce a solid of the first color added.
The text was updated successfully, but these errors were encountered:
Seeing the same thing, unfortunately this seems to be an imlib2 issue...
imlib_image_fill_color_range_rectangle(1000, 1000, 4096, 1000, 0);
renders a perfectly valid gradient, but
imlib_image_fill_color_range_rectangle(1000, 1000, 4097, 1000, 0);
renders only one color.
So, if any dimension is larger than 4096 it won't work :(.
Trying to figure out if this is something fixed in newer imlib, or if we need to split this into smaller gradients.
Sorry, something went wrong.
No branches or pull requests
Running
on a 5120x2160 monitor yields an image of a solid red:
It appears that for a sufficiently large resolution, gradient commands produce a solid of the first color added.
The text was updated successfully, but these errors were encountered: