我是靠谱客的博主 神勇向日葵,最近开发中收集的这篇文章主要介绍Android 使用Picasso加载网络图片等比例缩放,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

  Transformation transformation = new Transformation() {


        @Override
        public Bitmap transform(Bitmap source) {

            int  targetWidth = imageview.getWidth();
            if (source.getWidth() == 0) {
                return source;
            }
            //如果图片大小大于等于设置的宽度,则按照设置的宽度比例来缩放
            double aspectRatio = (double) source.getHeight() / (double) source.getWidth();
            int targetHeight = (int) (targetWidth * aspectRatio);
            if (targetHeight != 0 && targetWidth != 0) {
                Bitmap result = Bitmap.createScaledBitmap(source, targetWidth, targetHeight, false);
                if (result != source) {
                    // Same bitmap is returned if sizes are the same
                    source.recycle();
                }
                return result;
            } else {
                return source;
            }

        }

        @Override
        public String key() {
            return "transformation" + " desiredWidth";
        }
    };
Picasso
.load(serviceInShopPageListBean
.getServiceDownUrl())
.transform(transformation)
.into(imageview);

最后

以上就是神勇向日葵为你收集整理的Android 使用Picasso加载网络图片等比例缩放的全部内容,希望文章能够帮你解决Android 使用Picasso加载网络图片等比例缩放所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部