Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
6k views

How to draw a smooth/dithered gradient on a canvas in Android

Several answers mention to use GradientDrawable.setDither(true) to draw smooth gradients in Android. That has no effect in my code. Any idea what I have to change to get a well looking gradient in my ...
4
votes
3answers
1k views

Floyd–Steinberg dithering alternatives for pixel shader

I know that Floyd–Steinberg dithering algorithm can't be implemented with pixel shader, because that algorithm is strictly sequential. But maybe there exist some higly parallel dithering algorithm ...
4
votes
2answers
665 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
3answers
834 views

Fastest dithering / halftoning library in C

I'm developing a custom thin-client server that serves rendered webpages to its clients. Server is running on multicore Linux box, with Webkit providing the html rendering engine. The only problem is ...
3
votes
3answers
124 views

Best quality dithering library in C

I'm developing a texture atlas packer to use with OpenGL, and I'm currently looking for an open-source (it's better if it's a library, but an open-source software would be good as well!) solution that ...
2
votes
2answers
810 views

Dithering gouraud-shaded vertex-colored polygons to remove banding

I'm using OpenGL ES on a low-resolution, embedded device. I've applied a vertical color gradient, using vertex coloring, to a large polygon serving as a backdrop to my rendered scene. I can see clear ...
1
vote
3answers
124 views

OpenGL gradient banding on Android

I've got a live wallpaper out on the market which uses OpenGL to render some basic shapes and a flat plane. The simple lighting creates a gradient effect across the plane, which looks fine on most ...
1
vote
1answer
107 views

How can I tweak this function to allow dithering?

I wrote the function below. It switches out one color for another. The pictures going in are css sprites with various colors and a white background. So.. sprite 1 might by blue and sprite 2 might be ...
1
vote
3answers
929 views

Bayer Ordered Dithering

I'm updating a plugin for Paint.net which i made some months ago, it's called Simulate Color Depth and it reduces the number of colors in the image to the chosen BPP and for a long time it have had ...
1
vote
1answer
1k views

Android view dithering

As you can see from the screenshot below, the "titlebar" is getting these ugly banding lines across the areas with text that extend the entire width of the screen. It's even more noticeable on a real ...
1
vote
1answer
423 views

How to avoid dithering with Graphics.DrawImage?

I want to draw one picture over another and dump it to HttpResponse. My code looks like this: //file name points to a gif image System.Drawing.Image originalImage = ...
0
votes
0answers
55 views

ImageMagick - What is dithering, why does it do it automatically, how can I stop it?

I'm using a version of imagemagick that's been ported to objective-c for iPhone use. I'm using it to make an animated gif from a bunch of relatively high quality UIImages. After adding a bunch of ...
0
votes
1answer
53 views

How can you load a matrix in from a file in octave?

I loaded an 8bit grayscale image into octave with imread, then I saved it in ascii format and got a giant list of all of it's values. Then I dithered it with a 2x2 matrix in Java and printed out a ...
0
votes
1answer
72 views

Dithering child elements' dimensions to fill a parent element

Say I have a parent div with width 500px. It has 13 child elements that should fill its width. If I give each child element a width of 500 / 13 = 38.46... pixels, the browser will floor the pixel ...
0
votes
1answer
252 views

NinePatchDrawable make ugly gradient

Still actual. I try to decodeResource with Bitmap.Config.ARGB_8888 and dither=true (without it gradient seems ugly) and make 9-patch of this. But I can't understand why it not working. ...
0
votes
1answer
150 views

dithering vs ordered dithering

I understand how dithering works etc, but what is the differance between dithering vs ordered dithering? Also can anyone point me to some good resources?
0
votes
2answers
213 views

Android : Bitmap appearance is not looking good, dithering is not working

I want to use coverflow view in my app. To get the reflection image part i have used the following code - http://www.androidsnippets.com/create-image-with-reflection I have seen lot of ...
0
votes
1answer
486 views

Dithering in text using PIL and truetype fonts

Consider the following code: from PIL import Image, ImageDraw, ImageFont def addText(img, lTxt): FONT_SIZE = 10 INTERLINE_DISTANCE = FONT_SIZE + 1 font = ...