一起學android之給圖片添加浮水印效果(33)

來源:互聯網
上載者:User

標籤:android   imageview   圖片   浮水印   圖片特效   

原圖:







參考代碼如下:

public class MainActivity extends Activity {private Button btn_start;private ImageView img;private Bitmap bitmap;private Bitmap wbitmap;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.image_layout);initView();}private void initView() {img = (ImageView) findViewById(R.id.iv_image);bitmap = ((BitmapDrawable) img.getDrawable()).getBitmap();wbitmap=((BitmapDrawable)getResources().getDrawable(R.drawable.img_label_user)).getBitmap();btn_start = (Button) findViewById(R.id.btn_start);btn_start.setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View v) {Bitmap bm = ImageTools.Watermark(bitmap,wbitmap,100);img.setImageBitmap(bm);}});}}

ImageTools工具類:

/** * 浮水印 * @param src 添加浮水印的圖 * @param watermark 浮水印圖 * @param alpha 浮水印的透明度 * @return */public static Bitmap Watermark(Bitmap src, Bitmap watermark,int alpha) {if (src == null) {return null;}int w = src.getWidth();int h = src.getHeight();int ww = watermark.getWidth();int wh = watermark.getHeight();Paint paint=new Paint();paint.setAlpha(alpha);paint.setAntiAlias(true);Bitmap newb = Bitmap.createBitmap(w, h, Config.ARGB_8888);Canvas cv = new Canvas(newb);cv.drawBitmap(src, 0, 0, null);cv.drawBitmap(watermark, 0, h/2, paint);cv.save(Canvas.ALL_SAVE_FLAG);cv.restore();return newb;}




轉載請註明出處:http://blog.csdn.net/hai_qing_xu_kong/article/details/45220425 情緒控_

一起學android之給圖片添加浮水印效果(33)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.