I m drawing in a bitmap like..

bitmap[i] = new Bitmap(60, 60);  
Graphics g = new Graphics(bitmap[i]);
g.setColor(Color.BLACK);
g.drawLine(....);

Now how to set Anti-Aliasing on before g.drawLine()?

link|improve this question

24% accept rate
feedback

1 Answer

up vote 2 down vote accepted

For antialiasing mode use public void setDrawingStyle(int drawStyle, boolean on)

For lines use

graphics.setDrawingStyle(Graphics.DRAWSTYLE_AALINES, true);
graphics.drawLine(x1, y1, x2, y2);
graphics.setDrawingStyle(Graphics.DRAWSTYLE_AALINES, false);

For poligons use

graphics.setDrawingStyle(Graphics.DRAWSTYLE_AAPOLYGONS, true);
graphics.drawRect(x, y, width, height);
graphics.setDrawingStyle(Graphics.DRAWSTYLE_AAPOLYGONS, false);
link|improve this answer
Thanks.. I cant see its effect in Simulator. I will test it on Storm. – Shreyas Aug 31 '09 at 6:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.