-
Notifications
You must be signed in to change notification settings - Fork 7
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
Would it be possible to adjust the anti-aliasing level for the display ? #23
Comments
Hi -- there is no such thing as a "level of antialiasing" or at least not really. For individual images, In that case, I should also provide it for Regarding antialiasing the display, it is more delicate. In Java2D, antialias is on or off (no levels), and it comes accompanied by options (quality of sampling, resizing, etc.) which sometimes have levels, sometimes have not. So basically, setting So the only (cheap but fast) solution is to implement the image operators above. What do you think ? |
Implemented for antialiased, blurred and sharpened
Yes, it seems to be a good solution to add a parameter indicating how many times to apply the mask. |
I think it's safe to say that the main request has been answered and the point I raised is secondary and will be done in next release |
Is your request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
I wanted to apply anti-aliasing on all the images displayed. First, I used the function antialiased(). However, there is no parameter in the function to adjust the level of anti-aliasing, so the function has to be applied several time for the desired level of aliasing which is impractical and can quickly become unreadable. In the same way, in the default rendering properties settings, it is not possible to adjust the level of anti-aliasing.
Describe the improvement you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: