Bitmap.Config下的几个图片质量参数

简介:
Bitmap.Config ALPHA_8   
Bitmap.Config ARGB_4444   
Bitmap.Config ARGB_8888   
Bitmap.Config RGB_565  

  A   R    G    B
透明度  红色   绿色   蓝色

Bitmap.Config ARGB_4444 16 每个像素 占四位   
Bitmap.Config ARGB_8888 32 每个像素 占八位  
Bitmap.Config RGB_565 16 R占5位 G占6位 B占5位 没有透明度(A)

一般情况下我们都是用argb888 但是无可厚非 它也相对的很占内存
因为一个像素32位 8位一个字节 如果是800*480的图片的话自己算 估计有1M多了
相关文章
|
缓存 NoSQL 网络协议
【Azure Redis 缓存】如何使得Azure Redis可以仅从内网访问? Config 及 Timeout参数配置
【Azure Redis 缓存】如何使得Azure Redis可以仅从内网访问? Config 及 Timeout参数配置
136 0
|
移动开发 前端开发 JavaScript
Vue2 系列:vue.config.js 参数配置
Vue2 系列:vue.config.js 参数配置
950 2
|
Linux 网络安全 iOS开发
/config --prefix=/usr/local/ssl --shared 命令里的参数的作用
【4月更文挑战第18天】/config --prefix=/usr/local/ssl --shared 命令里的参数的作用
651 3
|
XML 开发框架 .NET
泛解析泛域名301重定向带参数跳转在iis的web.config中的设置方式 二级域名301重定向
泛解析泛域名301重定向带参数跳转在iis的web.config中的设置方式 二级域名301重定向
921 0
泛解析泛域名301重定向带参数跳转在iis的web.config中的设置方式 二级域名301重定向
|
Web App开发 存储 缓存
浏览器的about:config清缓存及其他参数大全及其具体用途介绍
浏览器的about:config清缓存及其他参数大全及其具体用途介绍
|
异构计算
MMsegmentation教程-Config参数解释
MMsegmentation教程-Config参数解释
819 0
|
Linux 网络安全 数据安全/隐私保护
|
缓存 算法 JavaScript
微信 获取wx.config 参数 基类
原文:微信 获取wx.config 参数 基类 using System;using System.Collections.Generic;using System.Linq;using System.
1372 0
|
C++
vs项目发布时提示类似Default-Web.config Connection String”参数不能为 Null 或空的报错问题
参考地址: http://stackoverflow.com/questions/28996604/the-defaultconnection-web-config-connection-string-argument-cannot-be-null-or Create a Parameters.xml file in the Project root with the following content: 意思就是在项目的要目录下,创建一个 Parameters.xml 名称的文件,内容就是上面的xml。
1342 0