我目前对图片有疑问:
1)我无法将图像保存到存储,因为不支持将图像直接存储到存储中。我希望用户能够用相机拍照,然后创建的照片必须保存在某处,所以我可以稍后再检索它。
你可以告诉我怎么样 a)保存图像 b)如何检索它我在Stackoverflow中找到了Shai制作的这段代码,其他用户也询问了如何将图像保存到存储。
InputStream stream = FileSystemStorage.getInstance().openInputStream(i);
OutputStream out = Storage.getInstance().createOutputStream("MyImage");
Util.copy(stream, out);
Util.cleanup(stream);
Util.cleanup(out);
但我不明白。如何从中获取“图像”对象?那里的“图像”对象究竟是如何存储的?你能在这里给我一个完整的例子吗?这对我的应用来说非常重要。
2)
这个问题可能很简单,但我找不到答案。我想重新调整拍摄的相机照片并在其周围制作圆形遮罩。我试过这个:
Image capturedImage = Image.createImage(Capture.capturePhoto());
int width = capturedImage.getWidth();
int hight = capturedImage.getHeight();
Image rounded = Image.createImage(width, capturedImage.getHeight(), 0xff000000);
Graphics gr = rounded.getGraphics();
gr.setColor(0xffffff);
gr.fillArc(0, 0, width, hight, 0, 360);
Object mask = rounded.createMask();
Image ImagePreview = capturedImage.applyMask(mask);
但它没有成功,ImagePreview甚至都没有显示出来。无论如何,这个预览都是原始大小的,之后如何将其大小调整为用户的小预览?
提前谢谢。
修改
我已尝试以下方法保存图片:
Image capturedImage = Image.createImage(Capture.capturePhoto());
String imageFile = FileSystemStorage.getInstance().getAppHomePath() + "test.png";
try(OutputStream os = FileSystemStorage.getInstance().openOutputStream(imageFile)) {
ImageIO.getImageIO().save(capturedImage, os, ImageIO.FORMAT_PNG, 1);
} catch(IOException err) {
Log.e(err);
}
songList.setImage(imageFile);
稍后检索它我尝试了:
if(songList.getImage() != null){
try {
Image img = Image.createImage(Storage.getInstance().createInputStream(songList.getImage()));
Label test = new Label();
test.setIcon(img);
listCont.add(test);
} catch(Exception ex){
Dialog.show("Error", "Error during image loading: " + ex, "OK", null);
}
}
但是我收到一个错误,他找不到该文件。 (设备模拟器)。我做错了吗?
答案 0 :(得分:2)
以下是为有困难的人存储和加载图像的完整工作示例:
保存图片:
String filePath = Capture.capturePhoto();
if (filePath != null) {
try {
String pathToBeStored = FileSystemStorage.getInstance().getAppHomePath() + System.currentTimeMillis() + ".jpg");
Image img = Image.createImage(filePath);
OutputStream os = FileSystemStorage.getInstance().openOutputStream(pathToBeStored );
ImageIO.getImageIO().save(img, os, ImageIO.FORMAT_JPEG, 0.9f);
os.close();
}
catch (Exception e) {
e.printStackTrace();
}
}
载入图片:
if(pathToImage != null){
try {
Image img = Image.createImage(FileSystemStorage.getInstance().openInputStream(pathToImage));
} catch(Exception ex){
Dialog.show("Error", "Error during image loading: " + ex, "OK", null);
}
}
答案 1 :(得分:1)
使用:
Image img = Image.createImage(Storgage.getInstance().createInputStream("ImageName"));
图像预览是一个图像而不是一个组件,因此除非您将图像放置在某种类型的组件中以显示它,否则您将看不到任何内容。