保存屏幕截图并在 Facebook 上分享
Posted
技术标签:
【中文标题】保存屏幕截图并在 Facebook 上分享【英文标题】:Save screenshot and share on Facebook 【发布时间】:2015-04-08 16:22:55 【问题描述】:我希望用户点击一个按钮,如果屏幕截图,然后开始分享到 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 图像保存到某个存储中,但我不知道在哪里。 有人有想法吗?
【问题讨论】:
【参考方案1】:首先,你截图:
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();
【讨论】:
那是 Libgdx 代码吗?因为我在 BitmapFactory 上得到“BitmapFactory 无法解析为类型”?否则,很好的解释! 代码开头需要写import android.graphics.BitmapFactory;
您使用了SharePhoto
,这是 Android 特定代码 AFAIK(所以我认为您可以简单地编写 Android 代码)。看看这个网站如何添加Android代码:rotatingcanvas.com/writing-android-specific-code-in-libgdx以上是关于保存屏幕截图并在 Facebook 上分享的主要内容,如果未能解决你的问题,请参考以下文章
从 wp8 应用程序在 facebook 上分享消息时出现权限屏幕