private Bitmap getCenterCropBitmap(int fillColor,int roundWidth,int roundHeight, Bitmap bitmap) {
Bitmap output = Bitmap.createBitmap(roundWidth, roundHeight, Bitmap.Config.ARGB_8888);
Canvas canvas =new Canvas(output);
RectF outerRect =new RectF(0,0, roundWidth, roundHeight);
Paint paint =new Paint(Paint.ANTI_ALIAS_FLAG);
paint.setColor(fillColor);
paint.setStyle(Paint.Style.FILL);
canvas.drawRoundRect(outerRect,0,0, paint);
int bitmapWidth = bitmap.getWidth();
int bitmapHeight = bitmap.getHeight();
float oldsc = roundWidth / (float) roundHeight;
float newsc = bitmapWidth / (float) bitmapHeight;
if (oldsc > newsc) {
int newHei = roundHeight;
int newWid = newHei * bitmapWidth / bitmapHeight;
Bitmap newBit = Bitmap.createScaledBitmap(bitmap, newWid, newHei,true);
if (newBit !=null) {
canvas.drawBitmap(newBit, (roundWidth - newWid) /2,0, paint);
}
}else if (oldsc < newsc) {
int newWid = roundWidth;
int newHei = newWid * bitmapHeight / bitmapWidth;
Bitmap newBit = Bitmap.createScaledBitmap(bitmap, newWid, newHei,true);
if (newBit !=null) {
canvas.drawBitmap(newBit,0, (roundHeight - newHei) /2, paint);
}
}else {
int newWid = roundWidth;
int newHei = newWid;
Bitmap newBit = Bitmap.createScaledBitmap(bitmap, newWid, newHei,true);
if (newBit !=null) {
canvas.drawBitmap(newBit,0,0, paint);
}
}
canvas.save();
canvas.restore();
return output;
}
給bitmap添加一個(gè)背景杂腰,實(shí)現(xiàn)centerCrop效果
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來痴怨,“玉大人忙干,你說我怎么就攤上這事±嗽澹” “怎么了豪直?”我有些...
- 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)珠移。 經(jīng)常有香客問我,道長(zhǎng)末融,這世上最難降的妖魔是什么钧惧? 我笑而不...
- 正文 為了忘掉前任,我火速辦了婚禮勾习,結(jié)果婚禮上浓瞪,老公的妹妹穿的比我還像新娘。我一直安慰自己巧婶,他們只是感情好乾颁,可當(dāng)我...
- 文/花漫 我一把揭開白布涂乌。 她就那樣靜靜地躺著,像睡著了一般英岭。 火紅的嫁衣襯著肌膚如雪湾盒。 梳的紋絲不亂的頭發(fā)上,一...
- 文/蒼蘭香墨 我猛地睜開眼送丰,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了弛秋?” 一聲冷哼從身側(cè)響起器躏,我...
- 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎铐懊,沒想到半個(gè)月后邀桑,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡科乎,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年壁畸,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片茅茂。...
- 正文 年R本政府宣布碴倾,位于F島的核電站逗噩,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏跌榔。R本人自食惡果不足惜异雁,卻給世界環(huán)境...
- 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望僧须。 院中可真熱鬧纲刀,春花似錦、人聲如沸担平。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至面褐,卻和暖如春拌禾,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背盆耽。 一陣腳步聲響...
- 正文 我出身青樓坝咐,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國和親析恢。 傳聞我的和親對(duì)象是個(gè)殘疾皇子墨坚,可洞房花燭夜當(dāng)晚...
推薦閱讀更多精彩內(nèi)容
- public class ImageProcessHelper { ///////////////////////...
- ¥開啟¥ 【iAPP實(shí)現(xiàn)進(jìn)入界面執(zhí)行逐一顯】 〖2017-08-25 15:22:14〗 《//首先開一個(gè)線程,因...
- 素材 圓角處理 public static Bitmap getRoundedCornerBitmap(Bitma...
- Paint類 setAlpha(int a) 透明度 setColor(int color)設(shè)置顏色值 setAn...
- Android 中自定義軟鍵盤 \ \ \ 圖一為搜狗輸入法映挂、圖二為自定義密碼鍵盤泽篮、圖三為自定義密碼鍵盤 java...