当前位置: 首页>>代码示例>>Java>>正文


Java Bitmap.createScaledBitmap方法代码示例

本文整理汇总了Java中android.graphics.Bitmap.createScaledBitmap方法的典型用法代码示例。如果您正苦于以下问题:Java Bitmap.createScaledBitmap方法的具体用法?Java Bitmap.createScaledBitmap怎么用?Java Bitmap.createScaledBitmap使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.graphics.Bitmap的用法示例。


在下文中一共展示了Bitmap.createScaledBitmap方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setTaskDescription

import android.graphics.Bitmap; //导入方法依赖的package包/类
/**
 * Sets information describing the task with this activity for presentation inside the Recents
 * System UI. When {@link ActivityManager#getRecentTasks} is called, the activities of each task
 * are traversed in order from the topmost activity to the bottommost. The traversal continues
 * for each property until a suitable value is found. For each task the taskDescription will be
 * returned in {@link android.app.ActivityManager.TaskDescription}.
 *
 * @see ActivityManager#getRecentTasks
 * @see android.app.ActivityManager.TaskDescription
 *
 * @param taskDescription The TaskDescription properties that describe the task with this activity
 */
public void setTaskDescription(ActivityManager.TaskDescription taskDescription) {
    if (mTaskDescription != taskDescription) {
        mTaskDescription.copyFrom(taskDescription);
        // Scale the icon down to something reasonable if it is provided
        if (taskDescription.getIconFilename() == null && taskDescription.getIcon() != null) {
            final int size = ActivityManager.getLauncherLargeIconSizeInner(this);
            final Bitmap icon = Bitmap.createScaledBitmap(taskDescription.getIcon(), size, size,
                    true);
            mTaskDescription.setIcon(icon);
        }
    }
    try {
        ActivityManagerNative.getDefault().setTaskDescription(mToken, mTaskDescription);
    } catch (RemoteException e) {
    }
}
 
开发者ID:JessYanCoding,项目名称:ProgressManager,代码行数:29,代码来源:a.java

示例2: createImageThumbnail

import android.graphics.Bitmap; //导入方法依赖的package包/类
public static Bitmap createImageThumbnail(byte[] img){
	   try 
	    {
		    final int THUMBNAIL_SIZE = 100;
		    //InputStream is=getAssets().open("apple-android-battle.jpg");
		    Bitmap imageBitmap = BitmapFactory.decodeByteArray(img, 0, img.length);//Stream(is);

		    Float width = new Float(imageBitmap.getWidth());
		    Float height = new Float(imageBitmap.getHeight());
		    Float ratio = width/height;
		    imageBitmap = Bitmap.createScaledBitmap(imageBitmap, (THUMBNAIL_SIZE ), THUMBNAIL_SIZE, true);


		    return imageBitmap;
	    }
	    catch(Exception ex) {
	    	return null;
	    }
}
 
开发者ID:starn,项目名称:encdroidMC,代码行数:20,代码来源:ThumbnailsTask.java

示例3: getBackgroundPixelColor

import android.graphics.Bitmap; //导入方法依赖的package包/类
private int getBackgroundPixelColor(int x, int y) {
  // If the request is out of bounds, return COLOR_NONE.
  if (x < 0 || x >= bitmap.getWidth() ||
      y < 0 || y >= bitmap.getHeight()) {
    return Component.COLOR_NONE;
  }

  try {
    // First check if anything has been drawn on the bitmap
    // (such as by DrawPoint, DrawCircle, etc.).
    int color = bitmap.getPixel(x, y);
    if (color != Color.TRANSPARENT) {
      return color;
    }

    // If nothing has been drawn on the bitmap at that location,
    // check if there is a background image.
    if (backgroundDrawable != null) {
      if (scaledBackgroundBitmap == null) {
        scaledBackgroundBitmap = Bitmap.createScaledBitmap(
            backgroundDrawable.getBitmap(),
            bitmap.getWidth(), bitmap.getHeight(),
            false);  // false argument indicates not to filter
      }
      color = scaledBackgroundBitmap.getPixel(x, y);
      return color;
    }

    // If there is no background image, use the background color.
    if (Color.alpha(backgroundColor) != 0) {
      return backgroundColor;
    }
    return Component.COLOR_NONE;
  } catch (IllegalArgumentException e) {
    // This should never occur, since we have checked bounds.
    Log.e(LOG_TAG,
        String.format("Returning COLOR_NONE (exception) from getBackgroundPixelColor."));
    return Component.COLOR_NONE;
  }
}
 
开发者ID:mit-cml,项目名称:appinventor-extensions,代码行数:41,代码来源:Canvas.java

示例4: applyFillType

import android.graphics.Bitmap; //导入方法依赖的package包/类
private Bitmap applyFillType(Bitmap bitmap) {
    Log.d(TAG, "Reached applyFillType");

    float bitmapWidth = bitmap.getWidth();
    float bitmapHeight = bitmap.getHeight();
    float bitmapRatio = bitmapWidth / bitmapHeight;

    Log.d(TAG, "Bitmap Specs, Width --> " + bitmapWidth + "  Height --> " + bitmapHeight + "  Ratio --> " + bitmapRatio);

    int viewWidth = getMeasuredWidth() - getPaddingLeft() - getPaddingRight();
    int viewHeight = getMeasuredHeight() - getPaddingTop() - getPaddingBottom();

    Log.d(TAG, "ImageView Specs, Width --> " + viewWidth + "  Height --> " + viewHeight);

    if (viewWidth > 0 && viewHeight > 0) {
        switch (mFillType) {
            case FillType.WIDTH:
                Log.d(TAG, "Reached full width");
                return Bitmap.createScaledBitmap(bitmap, viewWidth, (int) (viewWidth / bitmapRatio), true);
            case FillType.HEIGHT:
                Log.d(TAG, "Reached full height -- > " + getHeight());
                return Bitmap.createScaledBitmap(bitmap, (int) (viewHeight * bitmapRatio), viewHeight, true);
        }
    }

    Log.d(TAG, "Both width and height should be greater than zero");
    return bitmap;
}
 
开发者ID:sinhaDroid,项目名称:BlogBookApp,代码行数:29,代码来源:HmImageView.java

示例5: getIcon

import android.graphics.Bitmap; //导入方法依赖的package包/类
@Nullable
private Drawable getIcon(String html, String chatUrl)
{
    try
    {
        Document document = Jsoup.parse(html);
        Element head = document.head();
        Element link = head.select("link").first();

        String fav = link.attr("href");
        if (!fav.contains("http"))
        {
            fav = "https:".concat(fav);
        }
        URL url = new URL(fav);

        Bitmap bmp = BitmapFactory.decodeStream(url.openConnection().getInputStream());

        String FILENAME = "FAVICON_" + chatUrl.replace("/", "");
        FileOutputStream fos = mainActivity.openFileOutput(FILENAME, Context.MODE_PRIVATE);
        bmp.compress(Bitmap.CompressFormat.PNG, 100, fos);
        fos.close();

        Resources r = mainActivity.getResources();
        int px = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 50, r.getDisplayMetrics());

        return new BitmapDrawable(Resources.getSystem(), Bitmap.createScaledBitmap(bmp, px, px, true));

    }
    catch (Exception e)
    {
        e.printStackTrace();
        return null;
    }
}
 
开发者ID:HueToYou,项目名称:ChatExchange-old,代码行数:36,代码来源:MainActivityUtils.java

示例6: imageUpload

import android.graphics.Bitmap; //导入方法依赖的package包/类
private void imageUpload(final String documentReference) {
    Log.i(TAG, "imageupload");


    StorageReference mountainsRef = storageRef.child("post").child(documentReference).child("photo.jpg");
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    Log.i(TAG, baos.toString());
    bitmap = Bitmap.createScaledBitmap(bitmap, bitmap.getWidth() / 6, bitmap.getHeight() / 6, true);
    bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
    byte[] data = baos.toByteArray();

    UploadTask uploadTask = mountainsRef.putBytes(data);
    uploadTask.addOnFailureListener(new OnFailureListener() {
        @Override
        public void onFailure(@NonNull Exception exception) {
            // Handle unsuccessful uploads
            dialog.dismiss();
            postColRef.document(documentReference).delete();
        }
    }).addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
        @Override
        public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
            // taskSnapshot.getMetadata() contains file metadata such as size, content-type, and download URL.
            Uri downloadUrl = taskSnapshot.getDownloadUrl();
            dialog.dismiss();
            Toast.makeText(AddProductActivity.this, "업로드 되었습니다", Toast.LENGTH_SHORT).show();
            finish();
            Log.d(TAG, String.valueOf(downloadUrl));
        }
    });
}
 
开发者ID:kcj8855,项目名称:Ae4Team,代码行数:32,代码来源:AddProductActivity.java

示例7: createScaledCircleBitmap

import android.graphics.Bitmap; //导入方法依赖的package包/类
/**
 * 创建缩放后的圆形位图
 *
 * @param context 上下文环境
 * @param radius  点半径
 * @param imageId 图片资源ID
 */
@Nullable
public static Bitmap createScaledCircleBitmap(Context context, int radius, int imageId) {
    // 1.获取原始图片
    Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(), imageId);
    // 2.判断是否能获取到图片
    if (bitmap == null) {
        return null;
    }
    // 2.缩放至指定大小
    bitmap = Bitmap.createScaledBitmap(bitmap, radius * 2, radius * 2, false);
    // 3.创建圆形图片并返回
    return createCircleImage(bitmap);
}
 
开发者ID:sinawangnan7,项目名称:GestureLockView,代码行数:21,代码来源:BitmapUtil.java

示例8: blur

import android.graphics.Bitmap; //导入方法依赖的package包/类
public Bitmap blur(Bitmap image) {
    int width = Math.round(image.getWidth() / mDownsampleFactor);
    int height = Math.round(image.getHeight() / mDownsampleFactor);

    Bitmap inputBitmap = Bitmap.createScaledBitmap(image, width, height, false);
    Bitmap outputBitmap = Bitmap.createBitmap(inputBitmap);

    RenderScript rs = RenderScript.create(mContext);
    ScriptIntrinsicBlur theIntrinsic = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs));
    Allocation tmpIn = Allocation.createFromBitmap(rs, inputBitmap);
    Allocation tmpOut = Allocation.createFromBitmap(rs, outputBitmap);
    theIntrinsic.setRadius(mBlurRadius);
    theIntrinsic.setInput(tmpIn);
    theIntrinsic.forEach(tmpOut);
    tmpOut.copyTo(outputBitmap);

    // Have to scale it back to full resolution because antialiasing is too expensive to be done each frame
    Bitmap bitmap = Bitmap.createBitmap(image.getWidth(), image.getHeight(), Bitmap.Config.ARGB_8888);

    Canvas canvas = new Canvas(bitmap);
    canvas.save();
    canvas.scale(mDownsampleFactor, mDownsampleFactor);
    canvas.drawBitmap(outputBitmap, 0, 0, mPaint);
    canvas.restore();

    return bitmap;
}
 
开发者ID:michelelacorte,项目名称:FlickLauncher,代码行数:28,代码来源:BlurWallpaperProvider.java

示例9: getResizedDrawable

import android.graphics.Bitmap; //导入方法依赖的package包/类
@Nullable
private static Drawable getResizedDrawable(@NonNull Context context, @Nullable Drawable drawable,
                                           int color, boolean tint) {
    try {
        if (drawable == null) {
            LogUtil.d("drawable: null");
            return null;
        }

        if (tint) {
            drawable.setColorFilter(color, PorterDuff.Mode.SRC_IN);
            drawable.mutate();
        }

        int size = context.getResources().getDimensionPixelSize(R.dimen.cafebar_icon_size);
        Bitmap bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(),
                drawable.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
        Canvas canvas = new Canvas(bitmap);
        drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
        drawable.draw(canvas);

        return new BitmapDrawable(context.getResources(),
                Bitmap.createScaledBitmap(bitmap, size, size, true));
    } catch (Exception | OutOfMemoryError e) {
        LogUtil.e(Log.getStackTraceString(e));
        return null;
    }
}
 
开发者ID:danimahardhika,项目名称:cafebar,代码行数:29,代码来源:CafeBarUtil.java

示例10: compressBitmap

import android.graphics.Bitmap; //导入方法依赖的package包/类
public static Bitmap compressBitmap(byte[] data, int maxWidth, int maxHeight) {

        BitmapFactory.Options decodeOptions = new BitmapFactory.Options();
        Bitmap bitmap = null;
        // If we have to resize this image, first get the natural bounds.
        decodeOptions.inJustDecodeBounds = true;
        BitmapFactory.decodeByteArray(data, 0, data.length, decodeOptions);
        int actualWidth = decodeOptions.outWidth;
        int actualHeight = decodeOptions.outHeight;

        // Then compute the dimensions we would ideally like to decode to.
        int desiredWidth = getResizedDimension(maxWidth, maxHeight, actualWidth, actualHeight);
        int desiredHeight = getResizedDimension(maxHeight, maxWidth, actualHeight, actualWidth);

        // TODO(ficus): Do we need this or is it okay since API 8 doesn't
        // Decode to the nearest power of two scaling factor.
        decodeOptions.inJustDecodeBounds = false;
        // support it?
        // decodeOptions.inPreferQualityOverSpeed = PREFER_QUALITY_OVER_SPEED;
        decodeOptions.inSampleSize = findBestSampleSize(actualWidth, actualHeight, desiredWidth, desiredHeight);
        Log.i(TAG, "compressBitmap: inSampleSize=" + decodeOptions.inSampleSize);
        Bitmap tempBitmap = BitmapFactory.decodeByteArray(data, 0, data.length, decodeOptions);

        // If necessary, scale down to the maximal acceptable size.
        if (tempBitmap != null && (tempBitmap.getWidth() > desiredWidth || tempBitmap.getHeight() > desiredHeight)) {
            bitmap = Bitmap.createScaledBitmap(tempBitmap, desiredWidth, desiredHeight, true);
            tempBitmap.recycle();
        } else {
            bitmap = tempBitmap;
        }

        return bitmap;
    }
 
开发者ID:HanyeeWang,项目名称:GeekZone,代码行数:34,代码来源:ImageUtils.java

示例11: scaleBitmap

import android.graphics.Bitmap; //导入方法依赖的package包/类
private Bitmap scaleBitmap(Bitmap bitmap) {
    int maxLength = Math.max(bitmap.getHeight(), bitmap.getWidth());
    float scale = (float) 800 / (float) maxLength;

    int newWidth = Math.round(bitmap.getWidth() * scale);
    int newHeight = Math.round(bitmap.getHeight() * scale);

    return Bitmap.createScaledBitmap(bitmap, newWidth, newHeight, true);
}
 
开发者ID:WGPlaner,项目名称:wg_planer,代码行数:10,代码来源:ProfileSettingsActivity.java

示例12: resizeBitmap

import android.graphics.Bitmap; //导入方法依赖的package包/类
/**
 * Resize the given bitmap to the given width/height by the given option.<br>
 */
static Bitmap resizeBitmap(Bitmap bitmap, int reqWidth, int reqHeight, CropImageView.RequestSizeOptions options) {
    try {
        if (reqWidth > 0 && reqHeight > 0 && (options == CropImageView.RequestSizeOptions.RESIZE_FIT ||
                options == CropImageView.RequestSizeOptions.RESIZE_INSIDE ||
                options == CropImageView.RequestSizeOptions.RESIZE_EXACT)) {

            Bitmap resized = null;
            if (options == CropImageView.RequestSizeOptions.RESIZE_EXACT) {
                resized = Bitmap.createScaledBitmap(bitmap, reqWidth, reqHeight, false);
            } else {
                int width = bitmap.getWidth();
                int height = bitmap.getHeight();
                float scale = Math.max(width / (float) reqWidth, height / (float) reqHeight);
                if (scale > 1 || options == CropImageView.RequestSizeOptions.RESIZE_FIT) {
                    resized = Bitmap.createScaledBitmap(bitmap, (int) (width / scale), (int) (height / scale), false);
                }
            }
            if (resized != null) {
                if (resized != bitmap) {
                    bitmap.recycle();
                }
                return resized;
            }
        }
    } catch (Exception e) {
        Log.w("AIC", "Failed to resize cropped image, return bitmap before resize", e);
    }
    return bitmap;
}
 
开发者ID:garretyoder,项目名称:Cluttr,代码行数:33,代码来源:BitmapUtils.java

示例13: resizeImage

import android.graphics.Bitmap; //导入方法依赖的package包/类
/**
     * Helper method - tries to resize the image by a scaling factor.
     * @param img Bitmap
     * @return Bitmap after resizing
     */
    private Bitmap resizeImage(Bitmap img) {
//        ByteArrayOutputStream stream = new ByteArrayOutputStream();
//        img.compress(Bitmap.CompressFormat.JPEG, 70, stream);
//        byte[] imgData = stream.toByteArray();
//        return BitmapFactory.decodeByteArray(imgData, 0, imgData.length);
        double scaleFactor = 0.95;
        return Bitmap.createScaledBitmap(img, (int) (img.getWidth() * scaleFactor), (int) (img.getHeight() * scaleFactor), true);
    }
 
开发者ID:CMPUT301F17T29,项目名称:HabitUp,代码行数:14,代码来源:UserAccount.java

示例14: createQRCodeWithLogo4

import android.graphics.Bitmap; //导入方法依赖的package包/类
/**
 * 比方法2的颜色黑一些
 *
 * @param text
 * @param size
 * @param mBitmap
 * @return
 */
public static Bitmap createQRCodeWithLogo4(String text, int size, Bitmap mBitmap) {
    try {
        IMAGE_HALFWIDTH = size / 10;
        Hashtable<EncodeHintType, Object> hints = new Hashtable<>();
        hints.put(EncodeHintType.CHARACTER_SET, "utf-8");

        hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
        BitMatrix bitMatrix = new QRCodeWriter().encode(text,
                BarcodeFormat.QR_CODE, size, size, hints);

        //将logo图片按martix设置的信息缩放
        mBitmap = Bitmap.createScaledBitmap(mBitmap, size, size, false);

        int[] pixels = new int[size * size];
        boolean flag = true;
        for (int y = 0; y < size; y++) {
            for (int x = 0; x < size; x++) {
                if (bitMatrix.get(x, y)) {
                    if (flag) {
                        flag = false;
                        pixels[y * size + x] = 0xff000000;
                    } else {
                        pixels[y * size + x] = mBitmap.getPixel(x, y);
                        flag = true;
                    }
                } else {
                    pixels[y * size + x] = 0xffffffff;
                }
            }
        }
        Bitmap bitmap = Bitmap.createBitmap(size, size,
                Bitmap.Config.ARGB_8888);
        bitmap.setPixels(pixels, 0, size, 0, 0, size, size);
        return bitmap;
    } catch (WriterException e) {
        e.printStackTrace();
        return null;
    }
}
 
开发者ID:AnyRTC,项目名称:anyRTC-RTCP-Android,代码行数:48,代码来源:QRCode.java

示例15: resizeBitmap

import android.graphics.Bitmap; //导入方法依赖的package包/类
/** Resize the given bitmap to the given width/height by the given option.<br> */
static Bitmap resizeBitmap(
    Bitmap bitmap, int reqWidth, int reqHeight, CropImageView.RequestSizeOptions options) {
  try {
    if (reqWidth > 0
        && reqHeight > 0
        && (options == CropImageView.RequestSizeOptions.RESIZE_FIT
            || options == CropImageView.RequestSizeOptions.RESIZE_INSIDE
            || options == CropImageView.RequestSizeOptions.RESIZE_EXACT)) {

      Bitmap resized = null;
      if (options == CropImageView.RequestSizeOptions.RESIZE_EXACT) {
        resized = Bitmap.createScaledBitmap(bitmap, reqWidth, reqHeight, false);
      } else {
        int width = bitmap.getWidth();
        int height = bitmap.getHeight();
        float scale = Math.max(width / (float) reqWidth, height / (float) reqHeight);
        if (scale > 1 || options == CropImageView.RequestSizeOptions.RESIZE_FIT) {
          resized =
              Bitmap.createScaledBitmap(
                  bitmap, (int) (width / scale), (int) (height / scale), false);
        }
      }
      if (resized != null) {
        if (resized != bitmap) {
          bitmap.recycle();
        }
        return resized;
      }
    }
  } catch (Exception e) {
    Log.w("AIC", "Failed to resize cropped image, return bitmap before resize", e);
  }
  return bitmap;
}
 
开发者ID:prashantsaini1,项目名称:android-titanium-imagecropper,代码行数:36,代码来源:BitmapUtils.java


注:本文中的android.graphics.Bitmap.createScaledBitmap方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。