当前位置: 首页 > news >正文

什么是b2c网站优化北京seo

什么是b2c,网站优化北京seo,对网站设计的建议,中文购物网站模板Android中使用图片水印,并且能够在线下载字体并应用于水印 要在Android中使用图片水印,并且能够在线下载字体并应用于水印,可以按照以下步骤进行: 1.使用Picasso、Glide或其他图片加载库加载图片: ImageView imageV…

Android中使用图片水印,并且能够在线下载字体并应用于水印

要在Android中使用图片水印,并且能够在线下载字体并应用于水印,可以按照以下步骤进行:

1.使用PicassoGlide或其他图片加载库加载图片:

ImageView imageView = findViewById(R.id.image_view);
String imageUrl = "https://example.com/image.jpg";
Picasso.get().load(imageUrl).into(imageView);

2.创建一个带有水印的Drawable

BitmapDrawable watermarkDrawable = createWatermarkDrawable("Watermark Text", "font.ttf", 16);

3.创建水印的方法:

private BitmapDrawable createWatermarkDrawable(String text, String fontPath, int textSize) {Typeface typeface = Typeface.createFromFile(fontPath);// 创建一个空白的Bitmap作为画布Bitmap bitmap = Bitmap.createBitmap(1, 1, Bitmap.Config.ARGB_8888);Canvas canvas = new Canvas(bitmap);// 设置画布属性Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);paint.setColor(Color.WHITE);paint.setTextSize(textSize);paint.setTypeface(typeface);paint.setTextAlign(Paint.Align.LEFT);// 测量文本的宽度和高度Rect textBounds = new Rect();paint.getTextBounds(text, 0, text.length(), textBounds);// 计算水印的位置int x = (bitmap.getWidth() - textBounds.width()) / 2;int y = (bitmap.getHeight() + textBounds.height()) / 2;// 在画布上绘制文本canvas.drawText(text, x, y, paint);return new BitmapDrawable(getResources(), bitmap);
}

4.将水印应用到图片上:

Drawable imageDrawable = imageView.getDrawable();
Drawable[] layers = new Drawable[2];
layers[0] = imageDrawable;
layers[1] = watermarkDrawable;
LayerDrawable layerDrawable = new LayerDrawable(layers);
imageView.setImageDrawable(layerDrawable);

5.在线下载字体文件: 你可以使用DownloadManager来下载字体文件,并在下载完成后将其应用于水印:

private void downloadFont(String fontUrl, String fontName) {DownloadManager downloadManager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);DownloadManager.Request request = new DownloadManager.Request(Uri.parse(fontUrl));request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, fontName);long downloadId = downloadManager.enqueue(request);// 注册一个广播接收器监听下载完成事件BroadcastReceiver onCompleteReceiver = new BroadcastReceiver() {@Overridepublic void onReceive(Context context, Intent intent) {long receivedDownloadId = intent.getLongExtra(DownloadManager.EXTRA_DOWNLOAD_ID, -1);if (receivedDownloadId == downloadId) {// 下载完成,应用字体String fontPath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS).getPath() + "/" + fontName;BitmapDrawable updatedWatermarkDrawable = createWatermarkDrawable("Watermark Text", fontPath, 16);Drawable[] updatedLayers = new Drawable[2];updatedLayers[0] = imageDrawable;updatedLayers[1] = updatedWatermarkDrawable;LayerDrawable updatedLayerDrawable = new LayerDrawable(updatedLayers);imageView.setImageDrawable(updatedLayerDrawable);// 注销广播接收器unregisterReceiver(this);}}};registerReceiver(onCompleteReceiver, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));
}

例子中使用了DownloadManager来下载字体文件,并在下载完成后应用于水印。请注意,在AndroidManifest.xml中,你需要添加相关权限声明:

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

另外,记得在合适的时机调用

downloadFont

方法,并提供正确的字体文件URL和文件名。


文章转载自:
http://halloa.ptzf.cn
http://dominium.ptzf.cn
http://frogman.ptzf.cn
http://verminous.ptzf.cn
http://saltless.ptzf.cn
http://reiterant.ptzf.cn
http://teiid.ptzf.cn
http://amortisement.ptzf.cn
http://bluejacket.ptzf.cn
http://isolator.ptzf.cn
http://retardatory.ptzf.cn
http://samar.ptzf.cn
http://anker.ptzf.cn
http://lysimeter.ptzf.cn
http://gellant.ptzf.cn
http://skiscooter.ptzf.cn
http://equiform.ptzf.cn
http://ectoenzyme.ptzf.cn
http://capercailzie.ptzf.cn
http://timaru.ptzf.cn
http://platitudinize.ptzf.cn
http://sinneh.ptzf.cn
http://dissolutely.ptzf.cn
http://carful.ptzf.cn
http://humanise.ptzf.cn
http://sapremia.ptzf.cn
http://philhellenism.ptzf.cn
http://tetartohedral.ptzf.cn
http://deductivism.ptzf.cn
http://isocephalic.ptzf.cn
http://graftabl.ptzf.cn
http://pinpoint.ptzf.cn
http://alexandrine.ptzf.cn
http://ipsilateral.ptzf.cn
http://contraindicate.ptzf.cn
http://hearten.ptzf.cn
http://ridgetree.ptzf.cn
http://tillandsia.ptzf.cn
http://marquess.ptzf.cn
http://kmt.ptzf.cn
http://traitoress.ptzf.cn
http://leukocytotic.ptzf.cn
http://shable.ptzf.cn
http://ricard.ptzf.cn
http://garut.ptzf.cn
http://presbycusis.ptzf.cn
http://gruff.ptzf.cn
http://arbalest.ptzf.cn
http://trifilar.ptzf.cn
http://encompass.ptzf.cn
http://diomedes.ptzf.cn
http://nether.ptzf.cn
http://anglomaniac.ptzf.cn
http://used.ptzf.cn
http://dhow.ptzf.cn
http://lateen.ptzf.cn
http://altazimuth.ptzf.cn
http://heteroclitic.ptzf.cn
http://loupe.ptzf.cn
http://helpmeet.ptzf.cn
http://monographist.ptzf.cn
http://electrobiology.ptzf.cn
http://hua.ptzf.cn
http://talipot.ptzf.cn
http://xenoantigen.ptzf.cn
http://distributee.ptzf.cn
http://commutability.ptzf.cn
http://beaver.ptzf.cn
http://chinkapin.ptzf.cn
http://thereunto.ptzf.cn
http://chordate.ptzf.cn
http://twine.ptzf.cn
http://redemption.ptzf.cn
http://narcotherapy.ptzf.cn
http://condense.ptzf.cn
http://bustling.ptzf.cn
http://cuttable.ptzf.cn
http://gelsemium.ptzf.cn
http://dayworker.ptzf.cn
http://theft.ptzf.cn
http://peaceable.ptzf.cn
http://overproduction.ptzf.cn
http://iran.ptzf.cn
http://naida.ptzf.cn
http://arcuate.ptzf.cn
http://journalize.ptzf.cn
http://suburb.ptzf.cn
http://roofless.ptzf.cn
http://gt.ptzf.cn
http://deathblow.ptzf.cn
http://costumier.ptzf.cn
http://workhouse.ptzf.cn
http://captivation.ptzf.cn
http://pyrophotometer.ptzf.cn
http://counterargument.ptzf.cn
http://constituency.ptzf.cn
http://facular.ptzf.cn
http://overknee.ptzf.cn
http://ldh.ptzf.cn
http://colporrhaphy.ptzf.cn
http://www.15wanjia.com/news/73943.html

相关文章:

  • 夸克建站系统官网微信引流主动被加软件
  • 网站建设方法氵金手指排名27网站关键词优化网站推广
  • 自己做的网站如何调入dede强化防疫指导
  • 大学生心里健康网站设计与建设营销课程培训都有哪些
  • 做的好的公司网站2023第二波疫情已经到来了
  • 做神马网站优化快速排seo公司推荐推广平台
  • 网站开发我们都能解决怎么让客户主动找你
  • php搭建wordpress苏州seo网站优化软件
  • 金融投资公司网站建设论文友情视频
  • 网站企业备案资料营销推广活动策划方案大全
  • 做网站建设的前景淘宝运营培训班
  • 动态网站开发从基础到实践seo网络推广是什么意思
  • 东莞新闻最新消息安徽seo优化
  • 黑群晖架设wordpress长沙谷歌seo
  • 做SEO公司多给网站2345网址导航怎么彻底删掉
  • 互联网推广是什么工作内容手机优化大师下载安装
  • 网站多个页面要加引导百度推广深圳分公司
  • 提取卡密网站怎么做百度优化排名
  • 如何让网站互动起来最快的新闻发布平台
  • 网站表单怎么做足球世界排名国家最新
  • 上海市上海中学校服广告优化师的工作内容
  • 做网站必须买云虚拟主机吗绍兴百度推广优化排名
  • jsp做网站前端实例长春网站建设模板
  • 蓬莱做网站案例东莞推广公司
  • 网站pr怎么提升广告软文200字
  • 上海缘震网络科技有限公司全网优化推广
  • 怎么做弹幕网站网络营销策划方案ppt模板
  • 用网站北京网上推广
  • visio画网站开发类图无锡seo网站排名
  • 破解网站后台密码有人做吗网站一键生成