使截图代码支持多种屏幕尺寸

时间:2012-12-12 14:16:02

标签: android

我有一个类,我在其中截取布局的屏幕截图并将其存储为JPEG文件....我遇到的问题是图像大小因屏幕分辨率而异....例如。如果我使用中等分辨率的手机,图像大小约为50-60kb,但对于高分辨率,它可以达到1.5mbs ....所以有什么办法可以保持图像大小不变,与屏幕尺寸或分辨率无关?

public class abc extends Activity {
    View content;
    String fileName, fname;
    static File file;
    static String RECE;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.rece);
        ImageView iv = (ImageView) findViewById(R.id.Ivsignature);
        iv.setImageBitmap(Signature.sign);
        Initialize();

        content = findViewById(R.id.Rlrece);
        ViewTreeObserver vto = content.getViewTreeObserver();
        vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
            @SuppressWarnings("deprecation")
            public void onGlobalLayout() {
                content.getViewTreeObserver()
                        .removeGlobalOnLayoutListener(this);
                getScreen();
            }
        });

    }

    private void getScreen() {
        View view = content;
        View v = view.getRootView();
        v.setDrawingCacheEnabled(true);
        Bitmap b = v.getDrawingCache();

        String myPath = Environment.getExternalStorageDirectory() + "/Rece";
        File myDir = new File(myPath);
        try {
            myDir.mkdirs();
        } catch (Exception e) {
        }

        fname = fileName + ".jpg";
        file = new File(myDir, fname);
        FileOutputStream fos = null;
        try {
            fos = new FileOutputStream(file);
            b.compress(CompressFormat.JPEG, 100, fos);
            // Toast.makeText(getApplicationContext(), fname + "  saved",
            // Toast.LENGTH_LONG).show();
            Intent my = new Intent(getApplicationContext(),
                    DialogActivity.class);
            my.putExtra("Rsystrace", DialogActivity.Systrace);
            startActivityForResult(my, 1);
        } catch (Throwable ex) {
            Toast.makeText(getApplicationContext(),
                    "error: " + ex.getMessage(), Toast.LENGTH_LONG).show();

        }
    }

2 个答案:

答案 0 :(得分:0)

当您进行屏幕截图时,您将获得与屏幕尺寸相关的图像(图像的分辨率因屏幕不同而不同)。

您可以根据需要压缩或调整位图大小,并在调整为固定大小后 - 文件大小将被修复。

PS。我建议您使用除JPEG之外的PNG。

答案 1 :(得分:0)

您可以创建一个对象BitmapFactory.Options()并在给定比例因子的情况下设置属性inSampleSize(您需要计算它)。 您可以像在BitmapFactory.decodeFile()中一样使用所需大小的图像(基于inSampleSize)。

- 编辑 -

使用“photoPath”磁盘中的图像的示例:

    BitmapFactory.Options bmOptions = new BitmapFactory.Options();
    BitmapFactory.decodeFile(photoPath, bmOptions);

    int photoW = bmOptions.outWidth;
    int photoH = bmOptions.outHeight;

    int scaleFactor = Math.min(newWidth/width, newHeigth/heigth);
    bmOptions.inSampleSize = scaleFactor;

    Bitmap bitmap = BitmapFactory.decodeFile(photoPath, bmOptions);

    ByteArrayOutputStream bytes = new ByteArrayOutputStream();
    bitmap.compress(Bitmap.CompressFormat.JPEG, 90, bytes);
    FileOutputStream fos;
    fos = new FileOutputStream(photoPath);
    fos.write(bytes.toByteArray());
    fos.close();