The technique of minimizing the distortion artifacts when representing a high-resolution image at a lower resolution

learn more… | top users | synonyms

27
votes
7answers
1k views

Does the Retina display eliminate the need for anti-aliasing?

With the iPhone 4, the Retina display's resolution is so high that most people cannot distinguish the pixels from one another (supposedly). If this is the case, do apps that support the Retina display ...
22
votes
0answers
344 views
+50

change strength of antialiasing in matplotlib

Is it possible to increase the antialiasing in matplotlib? I can still see some aliasing in my data, I tried several backends and it is still there. The antialiasing flag of the lines is set. Here ...
19
votes
4answers
728 views

Faking Subpixel Antialiasing on Text with Core Animation

For anyone working on a project with Core Animation layer-backed views, it's unfortunately obvious that subpixel antialiasing (text smoothing) is disabled for text not rendered on a pre-set opaque ...
16
votes
4answers
6k views

Can I turn off antialiasing on an HTML <canvas> element?

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 ...
13
votes
6answers
3k views

IE 9 does not use sub-pixel antialiasing under certain conditions

[Original title: IE 9 text renders very poorly; is there a workaround?) IE 9 is rendering the text in my application very poorly. The problem is not in my monitor's Clear Type settings, since IE 9 ...
10
votes
2answers
484 views

Anti-aliasing in R graphics under Windows (as per Mac)

is there a way to plot anti-aliased graphics from the Windows version of R? As you can see from the two versions below the Mac version of R prints graphics anti aliased.... ....whereas while the ...
9
votes
4answers
2k views

Subpixel anti-aliased text on HTML5's canvas element

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 one is a ...
8
votes
4answers
1k views

css transform, jagged edges in chrome

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. In ...
8
votes
4answers
647 views

Inconsistent anti-aliasing in WPF 3.5

I am getting strange aliasing behaviour in a WPF app using FluidKit's ElementFlow control. We are using the control in an app at work for presenting content, and when the elements of the ElementFlow ...
8
votes
3answers
5k views

How do you enable anti aliasing in arbitrary Java apps?

Many Java Apps don't use anti-aliased fonts by default, despite the capability of Swing to provide them. How can you coerce an arbitrary java application to use AA fonts? (both for applications I'm ...
7
votes
1answer
299 views

General Android semi transparent bug

I use anti aliasing to make my images more smooth. When using anti aliasing a dark border will be drawn around the images. This happens because Android uses the color black and mixes it with the ...
7
votes
2answers
5k views

Disable Cleartype (text anti-aliasing) in IE9

It's well documented (e.g. here) that IE9 ignores the OS-wide settings for font smoothing (aka anti-aliasing). Even if font-smoothing and ClearType are disabled in Windows, IE still shows ...
7
votes
2answers
1k views

Java Font Rendering

I have been attempting to enhance my GUI system written in Java to use subpixel antialiasing and have been successful, except for two remaining anomalies. This is a follow on to my other question ...
6
votes
5answers
302 views

Slow 3D rotation with antialiasing in Mathematica 7

3D surface rotation in Mathematica 7 with anti-aliasing turned off is very fast and smooth. However, turning on anti-aliasing, even at a moderate level, drastically reduces the rendered frame rate, ...
6
votes
2answers
176 views

Are there any high-quality, programmatic solutions for converting a jpeg with an opaque background to a png with a transparent background?

The common use case here is a user uploading a jpeg logo with a white/color background. It's (fairly) simple to switch the white pixels to transparent ones, but this leaves aliasing artifacts. An ...
6
votes
3answers
5k views

HTML5 Canvas and Anti-aliasing

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); ...
6
votes
3answers
2k views

@font-face alias issues on PC

Just started using this technique and am having strange results on the PC side. Virtually every browser I preview this site in on a PC makes the font look totally horsey. Example: On the Mac: On a ...
6
votes
2answers
2k views

Add shadow (recessed text effect) to Cocoa label without degrading text rendering quality

I'd like to create statusbar with text effect like in Safari or iTunes, i.e. recessed text. However, if I simply add shadow in Interface Builder using Core Animation panel, OS X's worst text ...
5
votes
2answers
142 views

QPainter::rotate disables antialiasing of drawn text

I use QPainter::setRenderHint(QPainter::Antialiasing, true) to tell Qt that I want it to antialias any drawing I do (in this case, text drawn with drawText()). This works fine and the text looks ...
5
votes
1answer
262 views

HTML5 Canvas avoid any subpixel rendering

As seen here. I have been having a few issues with sub pixel precision in the canvas. Now I'm having even more. I'm trying to render hard edged isometric squares as shown in the image in the link I ...
5
votes
6answers
509 views

Is there a technical reason why canvas's drawImage() doesn't do sub-pixel rendering / antialiasing?

Ttl;dr: I need to move an image VERY slowly in canvas without obvious pixel by pixel movement. I need some sort of anti-aliasing. Recently I was tasked with animating some "cloud" drawings ...
5
votes
3answers
638 views

Xcode 4 - AppleAntiAliasingThreshold doesn't work, so how to disable antialiasing?

Nor does AppleSmoothFontsSizeThreshold. This used to work prior to Xcode 4. How to disable the antialiasing, short of the global application setting in System Preferences.
5
votes
1answer
458 views

Big text in Android

I am trying to resize text in android to make it bigger using; Paint paint = new Paint(); paint.setTextSize(30); canvas.drawText("Text goes here" , x, y,paint); However the text gets pixelated. is ...
5
votes
2answers
421 views

Why isn't text anti-aliasing working, while using a SWT GC to draw text?

Right now my goal is to have anti-aliased text on my Labels. If my research was correct, SWT Labels do not natively support anti-aliasing on text, so my current workaround attempt is to create an ...
5
votes
1answer
2k views

MacVim: Turn off anti-aliased fonts with advanced rendering enabled

With MacVim, I use the Monaco font at size 10, which under the standard MacVim config is NOT anti-aliased. When I turned on Advanced Rendering in MacVim preferences (advanced tab), Monaco 10pt is now ...
5
votes
2answers
240 views

Antialiasing and gamma compensation

The luminence of pixels on a computer screen is not usually linearly related to the digital RGB triplet values of a pixel. The nonlinear response of early CRTs required a compensating nonlinear ...
5
votes
2answers
708 views

Java Font Rendering (Redux) - Must general AA really be turned off for subpixel AA?

I have been attempting to enhance my GUI system written in Java to use subpixel antialiasing and have been successful, except for one remaining anomaly. This is a follow on to my other question from ...
5
votes
3answers
962 views

How can I inherit the system's anti-alias setting for painting text to off-screen images like swing does?

When I run my swing GUI applications under Java 6, they automatically use my configured sub-pixel anti-alias settings for all fonts. The result is much improved over standard AA options. But when I ...
4
votes
4answers
571 views

Java Text on Image

I am loading an image in bufferedimage and then writing some text on it .After I add text it makes image blurry and text distorted. I have TEXT ANTIALIASING ON . It can be seen as attached.
4
votes
2answers
176 views

connecting multiple anti-aliased lines together

I implemented/copied the wu line algorithm from pseudo-code on wiki-pedia and other places. When drawing a sine wave it breaks down at the point where the line changes from y dominant to x dominant ...
4
votes
2answers
242 views

Java text-antialiasing: how to debug when not working?

I'm working on a fairly big Swing-based app (JPanels, JLabels, etc) and I have to find out why text-antialiasing (on JLabels etc) is not working. As you may know, antialiasing normally works ...
4
votes
2answers
1k views

What is the performance impact of using multisampled anti-aliasing on iOS?

I've been experimenting with using multisampling to do full-scene anti-aliasing on the iPhone and iPad on iOS 4. The general mechanism uses Apple's APPLE_framebuffer_multisample extension ...
4
votes
3answers
198 views

Computing “average” of two colors

This is only marginally programming related - has much more to do w/ colors and their representation. I am working on a very low level app. I have an array of bytes in memory. Those are characters. ...
4
votes
2answers
1k views

Anti-aliasing in OpenGL

I just started with OpenGL programming and I am building a clock application. I want it to look something simple like this: http://i.stack.imgur.com/E73ap.jpg However, my application looks very ...
4
votes
2answers
669 views

Image Resize Aliasing in WPF v4 but not under v3.5

I am using WPF for an image resizing pipeline which has been working beautifully under .NET v3.5. I just upgraded the project to target v4.0 and now all of my resized images are heavily aliased. None ...
4
votes
6answers
2k views

Antialias font-face embedded text in Windows?

Is there any way to make the fonts render as anti aliased in Windows, when using font-face embedding? http://code.google.com/webfonts looks much better on Ubuntu/Mac, as compared to Windows 7 (tried ...
4
votes
2answers
387 views

Reducing moire when downsampling halftone comic images

How can I reduce moire effects when downsampling halftone comic book images during live zoom on an iPhone or iPad? I am writing a comic book viewer. It would be nice to provide higher resolution ...
4
votes
3answers
875 views

Anti-aliased text in X11

I'm experimenting with Xlib to gain a deeper understanding of how Linux GUI programs work. I've written a simple program that display "Hello, world" in a window, but it looks rather anachronistic ...
4
votes
4answers
1k views

Problem embedding font and displaying it correctly in Flash

I'm looking for the right textfield parameters or work-around for my latest problem here dealing with Flash fonts & text fields. I have a textFormat and textField generation some text using the ...
4
votes
1answer
440 views

Why do my Windows Forms strings look so ugly when anti-aliased?

I'm rendering some strings manually on top of a GraphicsBox, because you can't have a Label with a treansparent backdrop. No matter which rendering mode I try though, I can't get the strings to look ...
4
votes
4answers
7k views

Anti-aliased font in HTML page

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 the ...
4
votes
3answers
1k views

Is there a secret trick to force antialiasing inside Viewport3D in Windows XP?

Under Windows XP WPF true 3D content (wich is usually displayed using the Viewport3D control) looks extremely ugly because it is by default not antialiased as the rest of the WPF graphics are. ...
3
votes
1answer
186 views

iOs: Aliasing with OpenGL but not with Cocos2D?

I am new to opengl programming, but I am doing something very basic, and the difference of quality between a custom opengl code and cocos2d is huge! I am trying just to load an image and continuously ...
3
votes
1answer
726 views

Examples for using Nvidia FXAA (shader antialiasing) in XNA 4.0 winforms?

I'm using this example project's XNA 4.0 form control in an application I'm writing: http://creators.xna.com/en-US/sample/winforms_series1 If you are unfamiliar with FXAA, check out the creator's ...
3
votes
2answers
173 views

Antialiased bezier curve with GDI / Winforms - c# .net

I'm trying to paint a bezier curve in a sample Winforms application. I'm calculating the bezier points, and then painting using DrawImage to draw a custom image brush on each point. However I'm not ...
3
votes
3answers
259 views

How can I make my JLabel's text, using a custom font, antialiased?

I'm trying to create a SWING application using Java 1.6 and I have a JLabel that uses a custom font from a .ttf file. I thought 1.6 had anti-aliasing on by default, but my text is pretty pixelized. ...
3
votes
1answer
436 views

Webkit + jQuery + SuperBGImage: full-browser images not anti-aliasing

This image best illustrates the problem: I'm customizing a WordPress theme that uses SuperBGImage. In Safari 5.1 and Chrome 13, when resizing the browser window, images aren't anti-aliased smoothly ...
3
votes
1answer
427 views

Anti-aliasing in Android 2.2 stock browser

Is the anti-aliasing during scrolling still implemented in the stock browser of Android 2.2? If yes, how can it be turned off programmatically?
3
votes
1answer
73 views

Anti-Alias versus Hi-Density Screen? [closed]

Conceptual question, just out of curiosity: What is less taxing on the graphics processor: Anti-aliasing (2x? 4x? Higher?) on a typical desktop machine (around 120-150dpi) or to drive a hi-density ...
3
votes
2answers
117 views

poor image quality in windows forms app (no AA)

I have a Windows Forms app where I created a UserControl that consists of two Buttons and one Label. The Buttons have an png with transparent Background assigned. If I look at the UserControl in the ...

1 2 3 4 5