antialiasing Questions
2
Solved
I am using a bar chart to plot query frequencies, but I consistently see uneven spacing between the bars. These look like they should be related to to the ticks, but they're in different positions
...
Protrusion asked 20/11, 2019 at 21:2
7
Solved
I used to draw lines (given some start and end points) at pygame like this: pygame.draw.line(window, color_L1, X0, X1, 2), where 2 was defining the thickness of the line.
As, anti-aliasing is not ...
Immediacy asked 1/6, 2015 at 16:1
7
Solved
Please have a look at the following example:
http://jsfiddle.net/MLGr4/47/
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
img = new Image();
img.onload = func...
Monkhmer asked 25/7, 2013 at 14:51
5
Solved
This is how I draw Bitmap on Canvas in my Android app:
canvas.save();
canvas.scale(scale, scale, x, y);
canvas.drawBitmap(bitmap, x, y, null);
canvas.restore();
However the Bitmap is not scaled ...
Rooke asked 27/11, 2010 at 21:48
13
Solved
I've been using CSS3 transform to rotate images and textboxes with borders in my website.
The problem is that the border look jagged in Chrome, like a (low-resolution) game without Anti-Aliasing. ...
Elect asked 27/6, 2011 at 11:17
3
Solved
I have a set of anti-aliased greyscale PNG images. I need to know how to programatically revert the anti-aliasing effect and get sharp edges again.
I'm using GDI+ but I am less interested in code. ...
Whig asked 23/7, 2014 at 23:40
16
Solved
I'm playing around with the <canvas> element, drawing lines and such.
I've noticed that my diagonal lines are antialiased. I'd prefer the jaggy look for what I'm doing - is there any way of ...
Moorefield asked 12/10, 2008 at 9:7
6
I am trying to code a simple circle timer in Python using Pygame.
At the moment it looks like this:
As you can see, the blue line is very wavy and has white dots in it. I am achieving this blue ...
Chaumont asked 1/7, 2016 at 10:31
2
I was working fine with Android Emulator (on Manjaro Linux) a few weeks ago, but after updating software The GUI of Android Emulator is not rendering or anti-aliasing is not working anymore. My app...
Wrestle asked 25/10, 2021 at 19:51
5
Solved
The normal font-weight in Sublime Text was always bold.
Now it is really thin and i cant work with that. Can I change it back to what it was before ?
I have not changed anything, it just chan...
Profanity asked 28/9, 2013 at 12:31
6
Solved
I am new to three.js and have starting working with it a lot recently. I really enjoy it and I have created some incredible things. However, I'm unsure why but when setting antialiasing to true I s...
Medor asked 20/6, 2013 at 22:16
3
Solved
Is there a way to implement antialiasing in LibGDX?
My lines are very pixilated.
Brassica asked 13/3, 2016 at 10:45
7
Solved
I want to use a pixel font on the web. I'm including it using @font-face however all the browsers are applying anti-aliasing to the font. I can't seem to find a CSS rule to disable this, can anyone...
Disarray asked 18/11, 2009 at 0:3
6
Solved
I'm a bit confused with the way the canvas element anti-aliases text and am hoping you all can help.
In the following screenshot the top "Quick Brown Fox" is an H1 element and the bottom ...
Jeremiahjeremias asked 29/12, 2010 at 1:50
9
Solved
How to turn on the anti-aliasing on an canvas.
The following code doesn't draw a smooth line:
var context = mainCanv.getContext("2d");
if (context) {
context.moveTo(0,0);
context.lineTo(1...
Unperforated asked 23/11, 2010 at 21:22
1
Solved
I made an ImageView in JavaFX and load a pixel art into it. And I scaled up, but I can't clearly see the pixels of the art. The problem should be the anti-aliasing. So I need to see clearly t...
Mayan asked 4/9, 2021 at 11:32
1
Solved
I have a pixel art font (in a ttf file), I've found it's native resolution to be 8 pixels (CTX.font = '8px mainfont';)
When I do fillText, the font is coming out perfect in firefox, but blurry in c...
Laughing asked 16/7, 2021 at 23:45
3
Solved
Can I draw with anti-aliasing on canvas?
I need my circles and line have smooth edges.
Gigantean asked 5/5, 2012 at 19:20
1
Solved
I turned on antialias and applied the drop shadow filter to a circle instantiated based on the Graphics class.However, after applying drop shadows, circular antialias does not appear to work. I wan...
Subway asked 4/7, 2019 at 15:48
2
Solved
I am having trouble with anti-aliased text in IntelliJ IDEA. That thing for some reason ships with its own version of OpenJDK 8. Anyway... sub-pixel aliasing is acceptable with dark-on-bright text:...
Disprize asked 29/3, 2017 at 12:35
3
The lines drawn on a Tkinter.Canvas are not smooth. How can they be made smooth?
Here's what I tried:
from Tkinter import *
root = Tk()
cv = Canvas(root,bg = 'white')
rt1 = cv.create_rectangl...
Garnet asked 15/9, 2012 at 9:24
2
Solved
I have a few 256x256 images I am using with Image controls in a WPF application. Although they are all 256x256, I changed some of the controls to 64x64, etc. When I resize it down (using fill as my...
Estey asked 23/1, 2013 at 22:27
1
Solved
I wrote a program to draw some string on an image. I use graphics.DrawString() but as you can see in this post, it has some problems.
TextRenderer.DrawText() solved that problem but the rendered te...
Ac asked 21/9, 2020 at 7:11
6
Solved
Is there a good way to create crisp, clear, LARGE font in webpages? I need to create a tag cloud effect on my homepage with different font sizes and colours.
I've got it set up in HTML/CSS but on ...
Excommunication asked 19/3, 2009 at 10:15
2
Solved
I'm using Pygame to draw some things. The problem is that they have a lot of aliased edges:
I want to make them softer, like this:
My idea so far was to draw the shape in double size, and t...
Centreboard asked 25/5, 2014 at 7:10
1 Next >
© 2022 - 2024 — McMap. All rights reserved.