您好我正在使用处理3.0 与 ketai库,我正在尝试保存图片但由于某种原因它无效。每个按钮都有自己的监听器,以便识别它是否被按下。相机正常打开,但按下保存按钮时没有任何反应。处理控制台中显示错误消息。控制台中显示的消息是:
无法创建保存照片的目录:/ storage / emulated / 0 / Pictures / testing6
testing6 是我正在处理的.pde文件。此外,我正在Android模拟器上测试应用程序,而不是在Android设备上。我希望能够保存图像并创建包含图像的文件夹。例如,一个文件夹将有动物照片,其他文件夹将具有风景等。创建任意数量的文件夹和照片。我在Ketai库和GitHub上看到了文档,但我找不到解决方案。
import ketai.camera.*;
import java.lang.String.*;
KetaiCamera camera;
void setup()
{
camera = new KetaiCamera(this,width,height/2,15);
// 0: back camera; 1: front camera
camera.setCameraID(0);
}
void draw()
{
image(camera, width/2, height/2, width, height);
drawUI();
}
void drawUI()
{
fill(255);
stroke(0);
orientation(LANDSCAPE);
//here there is a for loop to create the buttons when the camera open
//there are many buttons in other pages that is why we start from 28.
for(int i = 28; i <= 31; i++)
{
buttons[i].draw(color(0,128),textColor);
}
}
void onCameraPreviewEvent()
{
camera.read();
}
void onSavePhotoEvent(String filename)
{
camera.addToMediaLibrary(filename);
}
//mousePressed is a build-in function and I check which button was pressed.
//each button has on click listener.
void mousePressed()
{
if(buttons[28].isPressed()) //button Start, PAGE CAMERA
{
if (camera.isStarted())
{
camera.stop();
}
else
{
if (!camera.start())
{
println("Failed to start camera.");
}
}
}//end of if statement for the START button
else if(buttons[29].isPressed()) //button Save, PAGE CAMERA
{
if(camera.isStarted())
{
camera.savePhoto("test.png");
}
}//end of else if for the SAVE button
else if(buttons[30].isPressed()) //button Flash, PAGE CAMERA
{
if (camera.isFlashEnabled())
{
camera.disableFlash();
}
else
{
camera.enableFlash();
}
}//end of else if statement for the Flash button
else if(buttons[31].isPressed()) //button Exit, PAGE CAMERA
{
camera.stop();
}//end of else if statement for the Exit button
}//end of mousePressed function
答案 0 :(得分:0)
较新的Android版本要求用户在运行时(而不是在安装过程中)获得访问敏感资源的权限。因此,您需要在调用KetaiCamera::savePhoto()
之前,在 之前提示用户授予您的应用程序写入文件系统的权限。
来自Processing for Android documentation:
void setup() {
requestPermission("android.permission.WRITE_EXTERNAL_STORAGE", "checkPermission");
}
void checkPermission(boolean wasPermissionGranted){
if (wasPermissionGranted)
println("Hooray! I can now write to the local file system!");
else
println("Oh no! I was not granted write permission =(");
}