0

ビデオビューのあるレイアウトからスクリーンショットを撮っています。このコードを使用して保存し、キャプチャしますが、開いたときに空白の画像が表示されますが、空ではない画像の1.5Kbが表示されます。自分?

これが私がスクリーンショットをキャプチャする方法です

 public void TakePic(View v){


    buton = AnimationUtils.loadAnimation(this, R.anim.but);
    v.startAnimation(buton);
    if (vid!=null)
    {
        if(vid.getCurrentPosition()!=0)
        {
            popupc = (LinearLayout) findViewById(R.id.guardapic);
            popupc.setVisibility(View.VISIBLE);

            LinearLayout layout = (LinearLayout)findViewById(R.id.videopic);
            layout.setDrawingCacheEnabled(true);
            layout.setDrawingCacheQuality(LinearLayout.DRAWING_CACHE_QUALITY_HIGH);
            layout.buildDrawingCache();
            bitmap = layout.getDrawingCache();
            im=(ImageView)findViewById(R.id.imgdown);
        //  im.setImageResource(R.drawable.play_amarelo);
            im.setImageBitmap(bitmap);

        }
        else
        {

            Toast toast = Toast.makeText(ctx,"Video has stopped...Restart", Toast.LENGTH_SHORT);
            toast.show();
        }

    }
    else
    {
        Toast toast = Toast.makeText(ctx,"Start video first", Toast.LENGTH_SHORT);
        toast.show();
    }
}

これはSDカードに保存するためのコードです

 public void PicOk(View v){


   String pathpic=null;

    String nomepic=null;

    EditText path= (EditText)findViewById(R.id.picpath);
    EditText pic= (EditText)findViewById(R.id.nomepic);

    pathpic=path.getText().toString();
    nomepic=pic.getText().toString();

    File folder = new File(Environment.getExternalStorageDirectory() + "/"+pathpic);
    boolean success = true;
    if (!folder.exists()) {
        success = folder.mkdir();

    }
    if (!success) {
        Log.d("Lino"," Pasta nao criada");
    } else {
        FileOutputStream ostream;
        try {

            File file =  new File(folder.toString() + "/"+nomepic+ ".png");
            ostream = new FileOutputStream(file);
            bitmap.compress(CompressFormat.PNG, 95, ostream);

            ostream.flush();
            ostream.close();      
            //              ((LinearLayout)findViewById(R.id.VV2)).destroyDrawingCache();
        } catch (FileNotFoundException e) {

            Log.d("Lino","erro"+e.toString());
            e.printStackTrace();
        } catch (IOException e) {
            Log.d("lino","erro  "+e.toString());
            e.printStackTrace();
        }
    }

    popupc = (LinearLayout) findViewById(R.id.guardapic);
    popupc.setVisibility(View.GONE);
    bitmap=null;
    //tira foto
    Toast toast = Toast.makeText(ctx,"pick taked", Toast.LENGTH_SHORT);
    toast.show();

}
4

1 に答える 1

1

あなたはビデオが実際にあることを知っていますCombination of Still Images。写真を撮った瞬間、クロスポンディングのフレームが真っ白に。そのため、スクリーンショットが黒/空白に見えます。

したがって、この方法では、ビデオのスクリーンショットを撮ることはできません。別のアプローチを採用する必要があります。

それはあなたを助けるかもしれません。

于 2012-08-12T23:30:36.130 に答える