资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

利用canvas和bitmap如何对图片缩放到适应屏幕大小?-创新互联

创建你自己想要大小的 bitmap

public static Bitmap resizeBitmap(Bitmap bitmap, int w, int h) {
      if (bitmap != null) {
        int width = bitmap.getWidth();
        int height = bitmap.getHeight();
        int newWidth = w;
        int newHeight = h;
        float scaleWidth = ((float) newWidth) / width;
        float scaleHeight = ((float) newHeight) / height;
        Matrix matrix = new Matrix();
        matrix.postScale(scaleWidth, scaleHeight);
        Bitmap resizedBitmap = Bitmap.createBitmap(bitmap, 0, 0, width,
              height, matrix, true);
        return resizedBitmap;
      } else {
        return null;
      }
  }
  public static Bitmap resizeBitmap(String path,int  width,int height){
      BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true;
        options.outWidth = width;
        options.outHeight = height;

      Bitmap bmp = BitmapFactory.decodeFile(path, options);
      options.inSampleSize = options.outWidth / height;
  options.inJustDecodeBounds = false;
    bmp = BitmapFactory.decodeFile(path, options);
  return bmp;
  }

网站建设公司,为您提供网站建设,网站制作,网页设计及定制网站建设服务,专注于成都定制网站,高端网页制作,对成都混凝土搅拌罐车等多个行业拥有丰富的网站建设经验的网站建设公司。专业网站设计,网站优化推广哪家好,专业seo优化优化,H5建站,响应式网站。

另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。


文章名称:利用canvas和bitmap如何对图片缩放到适应屏幕大小?-创新互联
文章转载:http://cdkjz.cn/article/eigoh.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

大客户专线   成都:13518219792   座机:028-86922220