這篇文章將為大家詳細(xì)講解有關(guān)Android中怎么對(duì)圖片的顏色進(jìn)行處理,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
成都創(chuàng)新互聯(lián)公司是一家專業(yè)提供尋烏企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)、H5頁(yè)面制作、小程序制作等業(yè)務(wù)。10年已為尋烏眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)的建站公司優(yōu)惠進(jìn)行中。布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="青--紅" /> <SeekBar android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/red_seekbar"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="青--綠" /> <SeekBar android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/green_seekbar"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="青--藍(lán)" /> <SeekBar android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/blue_seekbar"/> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/im" android:src="@drawable/img_small_1"/> </LinearLayout>
activity:
public class MainActivity extends Activity implements OnSeekBarChangeListener{ private SeekBar red_sb,green_sb,blue_sb; private ImageView imageView; private Canvas canvas; private Paint paint; private Bitmap baseBitmap,copyBitmap; private float red_vector,green_vector,blue_vector; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); red_sb=(SeekBar) findViewById(R.id.red_seekbar); green_sb=(SeekBar) findViewById(R.id.green_seekbar); blue_sb=(SeekBar) findViewById(R.id.blue_seekbar); imageView=(ImageView) findViewById(R.id.im); red_sb.setOnSeekBarChangeListener(this); green_sb.setOnSeekBarChangeListener(this); blue_sb.setOnSeekBarChangeListener(this); } @Override public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { // TODO Auto-generated method stub } @Override public void onStartTrackingTouch(SeekBar seekBar) { // TODO Auto-generated method stub } @Override public void onStopTrackingTouch(SeekBar seekBar) { // TODO Auto-generated method stub int progress=seekBar.getProgress(); float count=progress/50f;//使拖動(dòng)條的取值為0f-2f,滿足我們的取值要求 switch (seekBar.getId()) { case R.id.red_seekbar: this.red_vector=count; break; case R.id.green_seekbar: this.green_vector=count; break; case R.id.blue_seekbar: this.blue_vector=count; break; default: break; } //主題代碼 baseBitmap=BitmapFactory.decodeResource(getResources(), R.drawable.img_small_1); copyBitmap=Bitmap.createBitmap(baseBitmap.getWidth(), baseBitmap.getHeight(), baseBitmap.getConfig()); canvas=new Canvas(copyBitmap); Matrix matrix=new Matrix(); paint=new Paint(); //vector:取值范圍(0-2) float[] colors=new float[]{ red_vector,0,0,0,0, 0,green_vector,0,0,0, 0,0,blue_vector,0,0, 0,0,0,1,0}; paint.setColorFilter(new ColorMatrixColorFilter(colors)); canvas.drawBitmap(baseBitmap, matrix, paint); imageView.setImageBitmap(copyBitmap); } }
關(guān)于Android中怎么對(duì)圖片的顏色進(jìn)行處理就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
網(wǎng)站標(biāo)題:Android中怎么對(duì)圖片的顏色進(jìn)行處理-創(chuàng)新互聯(lián)
地址分享:http://www.rwnh.cn/article6/ccijog.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、用戶體驗(yàn)、網(wǎng)站策劃、網(wǎng)站收錄、面包屑導(dǎo)航、動(dòng)態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容