如何在Photoshop for Java中进行校正,类似的校正曲线

时间:2012-09-20 04:40:34

标签: java android image-processing

如何在Java(Android)中对曲线进行颜色校正?是否有使用标准库的可能性,特别是OpenGL?有人可以帮助我从哪里开始?

1 个答案:

答案 0 :(得分:0)

Android文档:AntiAliasing smooths out the edges of what is being drawn, but is has no impact on the interior of the shape...

Paint paint = new Paint();
paint.setAntiAlias(true);
canvas.drawCircle(center_x, center_y, radius, paint);

希望这有帮助!