我已按照此视频中创建相机捕获页面的教程进行操作:http ://www.youtube.com/watch?v=nF4eqzVcsic
所以我现在的代码是这样的:
protected void onCamera_CaptureButtonAction(Component c, ActionEvent event) {
String i = Capture.capturePhoto();
if (i != null) {
try {
Image img = Image.createImage(i).scaledHeight(500);
findCameraLabel().setIcon(img);
} catch (Exception ex) {
}
}
}
我查看了 CameraDemo 应用程序,但似乎找不到任何正在保存的文件。
我基本上只是希望将拍摄的任何照片保存在 src 文件夹中。
任何帮助将不胜感激。阿里