Lines Matching full:opts
68 BitmapFactory.Options opts = new BitmapFactory.Options();
69 opts.inJustDecodeBounds = true;
71 jpegImage.length, opts);
73 if (opts.outWidth > 1024 || opts.outHeight > 1024) {
74 int scaleFactorX = opts.outWidth / 1024 + 1;
75 int scaleFactorY = opts.outHeight / 1024 + 1;
78 opts.inSampleSize = scaleFactor;
80 opts.inJustDecodeBounds = false;
82 jpegImage.length, opts);