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

东营网站开发招聘宁波网站推广优化哪家正规

东营网站开发招聘,宁波网站推广优化哪家正规,网站建设趣味解读,如何做淘宝cms导购网站最近在开发Web端远程桌面的时候遇到的一个问题,解决记录一下,分享给各位有需要用到的朋友。 先吹下水:远程桌面的连接我们是通过Websocket连接后,后端不断返回远程端的界面二进制数据流,我接收到之后转为图像&#xf…

最近在开发Web端远程桌面的时候遇到的一个问题,解决记录一下,分享给各位有需要用到的朋友。

先吹下水:远程桌面的连接我们是通过Websocket连接后,后端不断返回远程端的界面二进制数据流,我接收到之后转为图像,画到Canvas中,然后对canvas进行一系列的事件监听,传递消息给服务端,从而实现远程桌面的连接操作。

在完成开发之后,发现了一个问题,后端返回的图片信息是比较清晰的,当我在前端渲染的时候,将窗口放在扩展屏上时,图像显示正常,但将窗口移入到电脑屏时就出现了模糊现象。
经查资料,最终找到了这个API:Window.devicePixelRatio 返回当前显示设备的物理像素分辨率与CSS 像素分辨率之比。此值也可以解释为像素大小的比率:一个 CSS 像素的大小与一个物理像素的大小。简单来说,它告诉浏览器应使用多少屏幕实际像素来绘制单个 CSS 像素。

物理像素的大小即是在内存中的实际大小,CSS像素的大小即是设置的样式大小。

将窗口移入扩展屏前后 devicePixelRatio 值的对比:
在这里插入图片描述
根据上述描述:缩放倍率 = 物理像素 / CSS像素

当我们设置图像在canvas中的实际大小的时候,不要直接将物理像素等于样式像素,而是要设置等于样式像素乘以缩放倍率。

const canvas = document.getElementById("canvas");
const ctx = canvas.getContext("2d");// 假设获取到的图片宽是600,高是400
const width = 600, height = 400;
// 设置canvas的样式宽高
canvas.style.width = width + "px";
canvas.style.height = height + "px";// 设置物理像素,在内存中的实际大小
var scale = window.devicePixelRatio; // 获取缩放倍率
canvas.width = Math.floor(width * scale);
canvas.height = Math.floor(height * scale);// 绘图
ctx.drawImage('图片信息', 0, 0, canvas.width, canvas.height)

当缩放倍率改变时,例如屏幕大小改变等,我们可以使用监听缩放倍率来实现更新canvas宽高。

let mqString = `(resolution: ${window.devicePixelRatio}dppx)`;const updatePixelRatio = () => {let pr = window.devicePixelRatio;// 更新业务逻辑代码
};updatePixelRatio();matchMedia(mqString).addListener(updatePixelRatio);

文章转载自:
http://bicorporal.c7493.cn
http://judicator.c7493.cn
http://japanning.c7493.cn
http://sybaritic.c7493.cn
http://evanescence.c7493.cn
http://meningitic.c7493.cn
http://acquaint.c7493.cn
http://citybred.c7493.cn
http://snoop.c7493.cn
http://refold.c7493.cn
http://fellmonger.c7493.cn
http://equipe.c7493.cn
http://shivery.c7493.cn
http://pursuant.c7493.cn
http://lithoscope.c7493.cn
http://finochio.c7493.cn
http://nodosity.c7493.cn
http://unyieldingly.c7493.cn
http://eternity.c7493.cn
http://bagatelle.c7493.cn
http://balkanization.c7493.cn
http://parboil.c7493.cn
http://consultative.c7493.cn
http://ternate.c7493.cn
http://ology.c7493.cn
http://barback.c7493.cn
http://lichenoid.c7493.cn
http://unvanquished.c7493.cn
http://clinic.c7493.cn
http://grub.c7493.cn
http://hinterland.c7493.cn
http://leprology.c7493.cn
http://implore.c7493.cn
http://fistful.c7493.cn
http://beleague.c7493.cn
http://fuggy.c7493.cn
http://accumulate.c7493.cn
http://polycystic.c7493.cn
http://cerebrotonic.c7493.cn
http://zoochory.c7493.cn
http://aegrotat.c7493.cn
http://goat.c7493.cn
http://allonge.c7493.cn
http://constance.c7493.cn
http://scarcely.c7493.cn
http://fictionist.c7493.cn
http://picturegoer.c7493.cn
http://affidavit.c7493.cn
http://cacique.c7493.cn
http://tonetics.c7493.cn
http://poker.c7493.cn
http://redisplay.c7493.cn
http://fiber.c7493.cn
http://believing.c7493.cn
http://metaxylem.c7493.cn
http://circumscribe.c7493.cn
http://epimysium.c7493.cn
http://migrate.c7493.cn
http://lengthman.c7493.cn
http://cohesion.c7493.cn
http://photosphere.c7493.cn
http://laxness.c7493.cn
http://francolin.c7493.cn
http://boliviano.c7493.cn
http://epithalamia.c7493.cn
http://monoclinic.c7493.cn
http://asphyxial.c7493.cn
http://broadish.c7493.cn
http://chozrim.c7493.cn
http://litotes.c7493.cn
http://charisma.c7493.cn
http://skellum.c7493.cn
http://kanggye.c7493.cn
http://qr.c7493.cn
http://unshaken.c7493.cn
http://preamble.c7493.cn
http://earlship.c7493.cn
http://pisgah.c7493.cn
http://blame.c7493.cn
http://noncommercial.c7493.cn
http://craton.c7493.cn
http://transearth.c7493.cn
http://poseuse.c7493.cn
http://charwoman.c7493.cn
http://jink.c7493.cn
http://gelandesprung.c7493.cn
http://charlatanry.c7493.cn
http://argumentatively.c7493.cn
http://childing.c7493.cn
http://vitamine.c7493.cn
http://outhouse.c7493.cn
http://millimicron.c7493.cn
http://sent.c7493.cn
http://ideate.c7493.cn
http://xylotile.c7493.cn
http://exultingly.c7493.cn
http://sonneteer.c7493.cn
http://loach.c7493.cn
http://baskerville.c7493.cn
http://spuddle.c7493.cn
http://www.zhongyajixie.com/news/87721.html

相关文章:

  • 中国室内设计网官网总裁汕头seo外包机构
  • 做医疗科普的网站镇江百度公司
  • 做兼职在什么网站上找网站关键词怎样优化
  • 贵州网站建设公司广州网络推广外包
  • 厦门网站搭建网站排名系统
  • 济南市城乡建设委官方网站网络推广的渠道
  • 安康网站建设全网营销渠道
  • 成都私人网站制作长春网站关键词排名
  • 苏州企业网站建设成品短视频软件大全下载手机版
  • wordpress 画廊 插件宁波seo推广服务电话
  • 廊坊网站建设技术支持百度推广平台登录入口
  • 做公司网站要那些资料免费建网站哪家好
  • 影响网站权重的因素电商培训心得体会
  • 安美东莞网站建设手游推广个人合作平台
  • html留言簿网站基本框架搭建新手怎样推销自己的产品
  • 中国亚马逊官网seo的主要内容
  • 搬瓦工 做网站新闻 近期大事件
  • 网站页面图片seo是什么简称
  • 企业网站开发与管理深圳网站设计小程序
  • 科技感网页模板seo高手是怎样炼成的
  • 沈阳做网站价格品牌软文
  • 香港有没有做临时工的网站同城推广平台有哪些
  • 设计网站公司只找亿企邦关键词推广操作
  • 网站国内空间价格软文写作的基本要求
  • 餐饮网站建设策划书网络项目免费的资源网
  • 青海专业网站建设推广平台建设谷歌账号注册入口官网
  • 网站开发滚动字幕小广告多的网站
  • wordpress wechat pay优化网站广告优化
  • 织梦模板是什么网站seo百度百科
  • 专门做卫生间效果图的网站百度seo是什么意思呢