我希望用户点击一个按钮,屏幕上会截取屏幕截图,然后开始共享流程进入Facebook。
这是我拍摄和处理屏幕截图的方式:
private void saveScreenshot() {
try{
FileHandle fh;
do{
fh = new FileHandle(Gdx.files.getLocalStoragePath() + "stoneIMG" + counter++ + ".png");
}while(fh.exists());
Pixmap pixmap = getScreenshot(0, 0, Gdx.graphics.getWidth(), Gdx.graphics.getHeight(), false);
PixmapIO.writePNG(fh, pixmap);
pixmap.dispose();
System.out.println(fh.toString());
Gdx.app.exit();
} catch(Exception e) {
}
}
private Pixmap getScreenshot(int x, int y, int w, int h, boolean yDown){
final Pixmap pixmap = ScreenUtils.getFrameBufferPixmap(x, y, w, h);
if(yDown) {
ByteBuffer pixels = pixmap.getPixels();
int numBytes = w * h * 4;
byte[] lines = new byte[numBytes];
int numBytesPerLine = w * 4;
for (int i = 0; i < h; i++) {
pixels.position((h - i - 1) * numBytesPerLine);
pixels.get(lines, i * numBytesPerLine, numBytesPerLine);
}
pixels.clear();
pixels.put(lines);
}
return pixmap;
}
然后:
SharePhoto photo = new SharePhoto.Builder()
.setBitmap(image);
.build();
SharePhotoContent content = new SharePhotoContent.Builder()
.addPhoto(photo)
.build();
分享。但我无法弄清楚如何连接这两者。我的意思是屏幕截图将PNG图像保存到某个存储空间,但我不知道在哪里。 谁有想法?
答案 0 :(得分:0)
首先,您截取屏幕截图:
saveScreenshot();
文件路径为Gdx.files.getLocalStoragePath() + "stoneIMG" + counter + ".png"
(查看FileHandle
对象)。要将文件加载到Bitmap
,您可以使用以下代码:
String filePath = Gdx.files.getLocalStoragePath() + "stoneIMG" + counter + ".png";
BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
Bitmap bitmap = BitmapFactory.decodeFile(filePath, options);
然后您可以使用以下方式发送:
SharePhoto photo = new SharePhoto.Builder()
.setBitmap(bitmap);
.build();
SharePhotoContent content = new SharePhotoContent.Builder()
.addPhoto(photo)
.build();