我需要从 libGDX 游戏中导出图像,并使其出现在 iPad 上的默认照片应用程序中。
目前,我这样做:
Pixmap image = getScreenshot();
FileHandle file;
String filename = "diplom_" + game.player.getID() + ".png";
if(Gdx.files.isExternalStorageAvailable())
file = Gdx.files.external(filename);
else
file = Gdx.files.local(filename);
PixmapIO.writePNG(file, image);
pixmap.dispose();
但是屏幕截图没有出现在任何地方。如何让它出现在照片应用程序中?