我一直在尝试获取以下 Android 等效代码:
private BufferedImage user_space(BufferedImage image)
{
BufferedImage new_img = new BufferedImage(image.getWidth(), image.getHeight(), BufferedImage.TYPE_3BYTE_BGR);
Graphics2D graphics = new_img.createGraphics();
graphics.drawRenderedImage(image, null);
graphics.dispose();
return new_img;
}
我想要一个相当于Graphics2D的android。我已经搜索了一段时间,发现 android 中的 Canvas 可以执行与 Graphics2D 类在这里执行的一些类似的任务,但主要问题是我没有得到与正在执行的整个过程的 android 等效代码。