Commit 39788a01 authored by Paulo Melo's avatar Paulo Melo

Android takeScreenshot does not work properly.

parent f6353b8f
...@@ -298,19 +298,27 @@ public class InAppWebView extends WebView { ...@@ -298,19 +298,27 @@ public class InAppWebView extends WebView {
} }
public byte[] takeScreenshot() { public byte[] takeScreenshot() {
Picture picture = capturePicture(); float scale = getScale();
int height = (int) (getContentHeight() * scale + 0.5);
Bitmap b = Bitmap.createBitmap( getWidth(), Bitmap b = Bitmap.createBitmap( getWidth(),
getHeight(), Bitmap.Config.ARGB_8888); height, Bitmap.Config.ARGB_8888);
Canvas c = new Canvas(b); Canvas c = new Canvas(b);
picture.draw(c); draw(c);
int scrollOffset = (getScrollY() + getMeasuredHeight() > b.getHeight())
? b.getHeight() : getScrollY();
Bitmap resized = Bitmap.createBitmap(
b, 0, scrollOffset, b.getWidth(), getMeasuredHeight());
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
b.compress(Bitmap.CompressFormat.PNG, 100, byteArrayOutputStream); resized.compress(Bitmap.CompressFormat.PNG, 100, byteArrayOutputStream);
try { try {
byteArrayOutputStream.close(); byteArrayOutputStream.close();
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); e.printStackTrace();
} }
resized.recycle();
return byteArrayOutputStream.toByteArray(); return byteArrayOutputStream.toByteArray();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment