電話に保存されている画像のガンマ補正を実行できるAndroidアプリを開発しています。アクティビティで画像の場所を取得できますが、アプリケーションでBufferedImage
クラスとImageIO
クラスを使用できません。
Eclipse IDE with ADT plugin ..で次のエラーが発生します。
ImageIO cannot be Resolved
BufferedImage cannot be Resolved
画像を処理できません。 Javaライブラリを含めることを考えていますが、Androidでこれを行う方法がわかりません
これが私がそれを機能させるために必要な関数です。
private static BufferedImage gammaCorrection(BufferedImage original, double gamma) {
int alpha, red, green, blue;
int newPixel;
double gamma_new = 1 / gamma;
int[] gamma_LUT = gamma_LUT(gamma_new);
BufferedImage gamma_cor = new BufferedImage(original.getWidth(), original.getHeight(), original.getType());
for(int i=0; i<original.getWidth(); i++) {
for(int j=0; j<original.getHeight(); j++) {
// Get pixels by R, G, B
alpha = new Color(original.getRGB(i, j)).getAlpha();
red = new Color(original.getRGB(i, j)).getRed();
green = new Color(original.getRGB(i, j)).getGreen();
blue = new Color(original.getRGB(i, j)).getBlue();
red = gamma_LUT[red];
green = gamma_LUT[green];
blue = gamma_LUT[blue];
// Return back to original format
newPixel = colorToRGB(alpha, red, green, blue);
// Write pixels into image
gamma_cor.setRGB(i, j, newPixel);
}
}
return gamma_cor;
}
Androidは標準のJavaではなく、特定のクラスがありません。 AWTはただそこにありません
いくつかのJavaライブラリはAndroid awtのようにありません
String selectedImagePath;
ImageView img;
img = (ImageView)findViewById(R.id.ImageView1);
Bitmap yourSelectedImage = BitmapFactory.decodeFile(selectedImagePath);
img.setImageBitmap(yourSelectedImage);
あなたが作ることができるよりも複数の画像の場合
ArrayList<Bitmap> aList = new ArrayList<Bitmap> ();
aList.add(yourbitmap);
上記のようなimageviewsでforループを使用して設定するよりも。 AndroidはBufferedImageクラスを提供しないため