通過ijetty獲取android設(shè)備的截圖

需求:對(duì)于無顯示設(shè)備的android設(shè)備勃救,如何獲取到當(dāng)前設(shè)備畫面

條件:首先在android設(shè)備中搭建一個(gè)web服務(wù)器宏榕,可以參考基于前面介紹的ijetty服務(wù)器

實(shí)現(xiàn):

方法1:

參考系統(tǒng)hide代碼,android.view.Surface.java

 public boolean takeScreenShot(String imagePath){
     
             if(imagePath.equals("" )){
                      imagePath = Environment.getExternalStorageDirectory()+File. separator+"Screenshot.png" ;
             }
                     
          Bitmap mScreenBitmap;
          WindowManager mWindowManager;
          DisplayMetrics mDisplayMetrics;
          Display mDisplay;
                  
          mWindowManager = (WindowManager) mcontext.getSystemService(Context.WINDOW_SERVICE);
          mDisplay = mWindowManager.getDefaultDisplay();
          mDisplayMetrics = new DisplayMetrics();
          mDisplay.getRealMetrics(mDisplayMetrics);
                                 
          float[] dims = {mDisplayMetrics.widthPixels , mDisplayMetrics.heightPixels };
          mScreenBitmap = Surface. screenshot((int) dims[0], ( int) dims[1]);
                     
          if (mScreenBitmap == null) {  
                 return false ;
          }
                  
       try {
          FileOutputStream out = new FileOutputStream(imagePath);
          mScreenBitmap.compress(Bitmap.CompressFormat. PNG, 100, out);
             
        } catch (Exception e) {
                                
          return false ;
        }       
                            
       return true ;
}

我們要利用web服務(wù)器把圖像傳出來碱鳞,可以拿到上面代碼中的outputStream桑李,然后拷貝到HttpServletResponse的輸出流中。
這個(gè)screenshot函數(shù)還需要一些其他數(shù)據(jù)窿给,例如display贵白,metrics,dims等崩泡,我們參考Surface類中的實(shí)現(xiàn)戒洼,得出的可用類代碼如下:

public class ScreenshotNative {

    private Context mContext;
    private WindowManager mWindowManager;
    private Display mDisplay;
    private DisplayMetrics mDisplayMetrics;
    private Matrix mDisplayMatrix;

    private Bitmap mScreenBitmap;

    private static final Object sLock = new Object();

    public ScreenshotNative(Context context) {
        mContext = context;

        mDisplayMatrix = new Matrix();
        mWindowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
        mDisplay = mWindowManager.getDefaultDisplay();
        mDisplayMetrics = new DisplayMetrics();
        mDisplay.getRealMetrics(mDisplayMetrics);
    }

    private float getDegreesForRotation(int value) {
        switch (value) {
            case Surface.ROTATION_90:
                return 360f - 90f;
            case Surface.ROTATION_180:
                return 360f - 180f;
            case Surface.ROTATION_270:
                return 360f - 270f;
        }
        return 0f;
    }

    public void takeScreenshot(OutputStream out) throws IOException {
        // We need to orient the screenshot correctly (and the Surface api seems to take screenshots
        // only in the natural orientation of the device :!)
        //
        mDisplay.getRealMetrics(mDisplayMetrics);
        float[] dims = {mDisplayMetrics.widthPixels, mDisplayMetrics.heightPixels};
        float degrees = getDegreesForRotation(mDisplay.getRotation());
        boolean requiresRotation = (degrees > 0);
        if (requiresRotation) {
            // Get the dimensions of the device in its native orientation
            mDisplayMatrix.reset();
            mDisplayMatrix.preRotate(-degrees);
            mDisplayMatrix.mapPoints(dims);
            dims[0] = Math.abs(dims[0]);
            dims[1] = Math.abs(dims[1]);
        }

        Log.d("takeScreenshot", "takeScreenshot, dims, w-h: " + dims[0] + "-" + dims[1] + "; " +
                "dm w-h: " + mDisplayMetrics.widthPixels + mDisplayMetrics.heightPixels +
                "Thread=" + Thread.currentThread().getName());
        // Take the screenshot
        synchronized (sLock) {
            mScreenBitmap = SurfaceControl.screenshot((int) dims[0], (int) dims[1]);

            if (mScreenBitmap == null) {
                throw new IOException("Bitmap is null after taking native screenshot!");

            }

            if (requiresRotation) {
                // Rotate the screenshot to the current orientation
                Bitmap ss = Bitmap.createBitmap(mDisplayMetrics.widthPixels,
                        mDisplayMetrics.heightPixels, Bitmap.Config.ARGB_8888);
                Canvas c = new Canvas(ss);
                c.translate(ss.getWidth() / 2, ss.getHeight() / 2);
                c.rotate(degrees);
                c.translate(-dims[0] / 2, -dims[1] / 2);
                c.drawBitmap(mScreenBitmap, 0, 0, null);
                c.setBitmap(null);
                // Recycle the previous bitmap
                mScreenBitmap.recycle();
                mScreenBitmap = ss;
            }

            // Optimizations
            mScreenBitmap.setHasAlpha(false);
            mScreenBitmap.prepareToDraw();

            mScreenBitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
            Log.d("takeScreenshot","Thread=" + Thread.currentThread().getName());
            mScreenBitmap.recycle();
            // Clear any references to the bitmap
            mScreenBitmap = null;
        }

    }
}

使用方法如下:

    private void screenshotNative(HttpServletResponse response){
        try {
            ServletOutputStream outputStream = response.getOutputStream();
            new ScreenshotNative(mContext).takeScreenshot(outputStream);
            outputStream.flush();
            outputStream.close();

        } catch (IOException e) {
            e.printStackTrace();
        }
    }

這樣在GET請(qǐng)求就能拿到對(duì)應(yīng)的流了 然后存在本地即可。

方法2:

使用screencap工具

public void takeScreenShot(){ 
   String mSavedPath = "/sdcard/" + "screenshot.png" ; 
   try {                     
          Process p = Runtime. getRuntime().exec("screencap -p " + mSavedPath); 
          p.waitFor();
    } catch (Exception e) { 
          e.printStackTrace();
}

代碼執(zhí)行后允华,再把文件拷到servlet的輸出流中就好了圈浇。screencap只支持png格式的存儲(chǔ)。

以上兩種方法都需要添加權(quán)限:

<uses-permission android:name="android.permission.READ_FRAME_BUFFER"/>

并使用system uid

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末靴寂,一起剝皮案震驚了整個(gè)濱河市磷蜀,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌百炬,老刑警劉巖褐隆,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異剖踊,居然都是意外死亡庶弃,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門德澈,熙熙樓的掌柜王于貴愁眉苦臉地迎上來歇攻,“玉大人,你說我怎么就攤上這事梆造〗墒兀” “怎么了?”我有些...
    開封第一講書人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵镇辉,是天一觀的道長(zhǎng)屡穗。 經(jīng)常有香客問我,道長(zhǎng)忽肛,這世上最難降的妖魔是什么村砂? 我笑而不...
    開封第一講書人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮屹逛,結(jié)果婚禮上础废,老公的妹妹穿的比我還像新娘汛骂。我一直安慰自己,他們只是感情好色迂,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開白布香缺。 她就那樣靜靜地躺著手销,像睡著了一般歇僧。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上锋拖,一...
    開封第一講書人閱讀 49,144評(píng)論 1 285
  • 那天诈悍,我揣著相機(jī)與錄音,去河邊找鬼兽埃。 笑死侥钳,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的柄错。 我是一名探鬼主播舷夺,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼售貌!你這毒婦竟也來了给猾?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤颂跨,失蹤者是張志新(化名)和其女友劉穎敢伸,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體恒削,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡池颈,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了钓丰。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片躯砰。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖携丁,靈堂內(nèi)的尸體忽然破棺而出弃揽,到底是詐尸還是另有隱情,我是刑警寧澤则北,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布矿微,位于F島的核電站,受9級(jí)特大地震影響尚揣,放射性物質(zhì)發(fā)生泄漏涌矢。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一快骗、第九天 我趴在偏房一處隱蔽的房頂上張望娜庇。 院中可真熱鬧塔次,春花似錦、人聲如沸名秀。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽匕得。三九已至继榆,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間汁掠,已是汗流浹背略吨。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留考阱,地道東北人翠忠。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像乞榨,于是被迫代替她去往敵國(guó)和親秽之。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢(shì)1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,520評(píng)論 25 707
  • afinalAfinal是一個(gè)android的ioc吃既,orm框架 https://github.com/yangf...
    passiontim閱讀 15,401評(píng)論 2 45
  • 為師考榨,七年,厭倦了一樣的講座态秧,一樣的教學(xué)董虱; 那么,學(xué)生申鱼,為何要遭受一如既往的重復(fù)愤诱? 為師,奮力捐友,想尋得一份自由的尊...
    草木吟閱讀 195評(píng)論 0 0
  • $(document).on("click", ".select_address_", function(){va...
    豹發(fā)戶閱讀 297評(píng)論 0 0
  • 讀完這本書淫半,其實(shí)就是不少牛人針對(duì)某些問題的解答和分享。越發(fā)感覺在這個(gè)時(shí)代匣砖,分享的重要性科吭。很多東西,你覺得自己會(huì)了猴鲫,...
    樂樂樂t閱讀 216評(píng)論 0 0