ImageView

Scale Types

我们可以利用adjustViewBounds参数来保留此宽高比。 但是,我们必须允许高度和/或宽度可调(即通过使用maxWidth并使用wrap_content)。 否则,不能重新调整尺寸以满足所需的宽高比。

image-scaletype.png

图像缩放以适合父视图的宽度,并且应该按比例调整高度。

public class ResizableImageView extends ImageView {

    public ResizableImageView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override 
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
         Drawable d = getDrawable();

         if(d!=null){
                 // ceil not round - avoid thin vertical gaps along the left/right edges
                 int width = MeasureSpec.getSize(widthMeasureSpec);
                 int height = (int) Math.ceil((float) width * (float) d.getIntrinsicHeight() / (float) d.getIntrinsicWidth());
                 setMeasuredDimension(width, height);
         }else{
                 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
         }
    }

}

支持多种密度的图像

image-densities.png

Final Android Resizer

这个程序允许我们选择一个高密度图像,该工具将自动生成相应的较小尺寸的图像:

image-resizer.png

Scaling a Bitmap——[createScaledBitmap]

不保留宽高比(http://developer.android.com/reference/android/graphics/Bitmap.html#createScaledBitmap(android.graphics.Bitmap,%20int,%20int,%20boolean))

// Load a bitmap from the drawable folder
Bitmap bMap = BitmapFactory.decodeResource(getResources(), R.drawable.my_image);
// Resize the bitmap to 150x100 (width x height)
Bitmap bMapScaled = Bitmap.createScaledBitmap(bMap, 150, 100, true);
// Loads the resized Bitmap into an ImageView
ImageView image = (ImageView) findViewById(R.id.test_image);
image.setImageBitmap(bMapScaled);

保留宽高比

public class BitmapScaler
{
    // Scale and maintain aspect ratio given a desired width
    // BitmapScaler.scaleToFitWidth(bitmap, 100);
    public static Bitmap scaleToFitWidth(Bitmap b, int width)
    {
        float factor = width / (float) b.getWidth();
        return Bitmap.createScaledBitmap(b, width, (int) (b.getHeight() * factor), true);
    }


    // Scale and maintain aspect ratio given a desired height
    // BitmapScaler.scaleToFitHeight(bitmap, 100);
    public static Bitmap scaleToFitHeight(Bitmap b, int height)
    {
        float factor = height / (float) b.getHeight();
        return Bitmap.createScaledBitmap(b, (int) (b.getWidth() * factor), height, true);
    }

    // ...
}

依据屏幕宽高缩放bitmap

public Bitmap scaleToActualAspectRatio(Bitmap bitmap) {
 if (bitmap != null) {
 boolean flag = true;
 
int deviceWidth = getWindowManager().getDefaultDisplay()
 .getWidth();
 int deviceHeight = getWindowManager().getDefaultDisplay()
 .getHeight();
 
int bitmapHeight = bitmap.getHeight(); // 563
 int bitmapWidth = bitmap.getWidth(); // 900
 
// aSCPECT rATIO IS Always WIDTH x HEIGHT rEMEMMBER 1024 x 768
 
if (bitmapWidth > deviceWidth) {
 flag = false;
 
// scale According to WIDTH
 int scaledWidth = deviceWidth;
 int scaledHeight = (scaledWidth * bitmapHeight) / bitmapWidth;
 
try {
 if (scaledHeight > deviceHeight)
 scaledHeight = deviceHeight;
 
bitmap = Bitmap.createScaledBitmap(bitmap, scaledWidth,
 scaledHeight, true);
 } catch (Exception e) {
 e.printStackTrace();
 }
 }
 
if (flag) {
 if (bitmapHeight > deviceHeight) {
 // scale According to HEIGHT
 int scaledHeight = deviceHeight;
 int scaledWidth = (scaledHeight * bitmapWidth)
 / bitmapHeight;
 
try {
 if (scaledWidth > deviceWidth)
 scaledWidth = deviceWidth;
 
bitmap = Bitmap.createScaledBitmap(bitmap, scaledWidth,
 scaledHeight, true);
 } catch (Exception e) {
 e.printStackTrace();
 }
 }
 }
 }
 return bitmap;
 }

注意:对图像进行任何类型的缩放都会导致EXIF元数据丢失,包括相机,旋转,所拍照片的日期/时间等信息。 虽然在复制映像后传输此数据有一些解决方法,但是存在当前的限制。 如果您需要此信息或希望将其上传到某个网站,您应该发送原始文件。

SVG

ImageView中使用SVG

// Parse an SVG resource from the "raw" resource folder
SVG svg = SVGParser.getSVGFromResource(getResources(), R.raw.android);
// Fix issue with renderer on certain devices
myImageView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
// Get a drawable from the parsed SVG and set it as the drawable for the ImageView
myImageView.setImageDrawable(svg.createPictureDrawable());

Canvas中使用SVG

// Parse the SVG file from the resource 
SVG svg =SVGParser.getSVGFromResource(getResources(), R.raw.android); 
// Get the picture 
Picture picture = svg.getPicture(); 
// Draw picture in canvas 
// Note: use transforms such as translate, scale and rotate to position the picture correctly
canvas.drawPicture(picture); 
// ...

Bounds和Limits

// Parse SVG 
SVG svg = SVGParser.getSVGFromResource(getResources(), R.raw.android); 
// Get the artist-specified bounds (will be null if not specified) 
RectF bounds = svg.getBounds(); 
// Get the parser-estimated bounds (could also be null, for example if it is a blank SVG) 
RectF limits = svg.getLimits();
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,905评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,140评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,791评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,483评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,476评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,516评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,905评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,560评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,778评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,557评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,635评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,338评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,925评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,898评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,142评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,818评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,347评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,376评论 25 707
  • ImageView src 属性 ImageView 有一个 Drawable 类型的成员变量 mDrawable...
    秀花123阅读 1,652评论 0 7
  • 我写文一般是灵感一致就写,没有考虑任何的结构、内容,想要表达什么中心思想;更多时候只是记一下一些,那时那刻的感受和...
    歆晨VS张婷婷阅读 368评论 0 1
  • 一座小城, 藏着童年的记忆, 那是我心灵的花苞出土的地方, 天然的,浓浓的纯净, 现在,小城愈加洁净, 洁净地很难...
    童淑阅读 343评论 2 2
  • 失去自我。,讨厌自己讨厌的不得了!不想去商店,不想…什么什么都不想…就和傻子一样…满满的自责与愧疚,其实我真的不知...
    希望幸福美好阅读 160评论 0 0