今天玩一些新的东西,大家都没有看过这样的视频:

或者 这样的图片:

网上有很多生成这种图片/视频的工具,但是每个程序员都有一颗造轮子的心,我们当然要玩出自己的花样啦。老规矩,还是先讲原理,建议先用自己的方式实现一遍。原理很简单首先准备一组排好序的不同 “着色密度 ” 的ascii字符(事实上你可以用任何字符),比如 #KDGLftji+;,:. ,接着将源图转为灰度图,然后遍历图中的像素,根据r/g/b通道的值来匹配字符串中相应 “着色密度 ” 的字符,值越小则颜色越深,字符的“密度”也应越大。如果需要保留颜色,只需将灰度图和原图的像素位置一一对应即可。在开始实现功能之前,我们需要先了解一下颜色矩阵(ColorMatrix)。在计算机中,每个像素的颜色可以用一个向量(有的文章也叫矢量或分量)矩阵表示:[R, G, B, A]。颜色变换矩阵通常是用一个5x5的矩阵来表示,和空间中一个n维向量的平移变换需要用一个n+1维的矩阵来表示一样,颜色矩阵也需要引入一个齐次坐标来进行“平移操作”。以下是一些常见的颜色变换矩阵:

亮度矩阵

R

G

B

A

W

R

1

0

0

0

b

G

0

1

0

0

b

B

0

0

1

0

b

A

0

0

0

1

0

W

0

0

0

0

1

反色矩阵

R

G

B

A

W

R

-1

0

0

255

0

G

0

-1

0

255

0

B

0

0

-1

255

0

A

0

0

0

1

0

W

0

0

0

0

1

灰度矩阵

R

G

B

A

W

R

0.3086

0.6094

0.0820

0

0

G

0.3086

0.6094

0.0820

0

0

B

0.3086

0.6094

0.0820

0

0

A

0

0

0

1

0

W

0

0

0

0

1

ps:将像素去色的原理是使R=G=B,同时为了保持亮度不变,须使R+G+B尽量等于1 ,理论上来说要平分R、G、B通道值,应该是(R+B+G)/3,即系数应该约为0.3333才对,之所以比例不同,按照网上的解释,

这个比例主要是根据人眼中三种不同的感光细胞的感光强度比例分配的

还有一组比较常用的比例是0.2125,0.7154,0.0721,至于怎么来的还希望哪位大佬指点迷津。

下面是页面的html结构

ascii art

* {

margin: 0;

padding: 0;

}

canvas, img, #container {

display: block;

margin: auto;

}

#container {

line-height: 12px;

font-size: 12px;

font-family: 'SimHei', monospace;

letter-spacing: 6px;

}

(function () {

// 这里是js代码

})()

解释一下几个关键点,首先我们输出的文字必须是等宽字体,我这里使用的是黑体:font-family: 'SimHei', monospace; 别忘了加上fallback:monospace。等宽字体是指每个字宽高都固定的字体,这里的固定宽高是指同一种文字,比如中文的黑体宽度是英文的两倍,其他字体我没有试过,大家可以自己去实验。这也是我设置了 letter-spacing: 6px; 的原因:当黑体设置了font-size=line-height时,中文是宽高相等,英文宽是高的一半。

接下来是js代码:

var container = document.getElementById('container')

var offScreenCvs = document.createElement('canvas') // 创建离屏canvas

var offScreenCtx = offScreenCvs.getContext('2d', { alpha: false }) // 关闭透明度

var offScreenCvsWidth, offScreenCvsHeight

var samplerStep = 4 // 采样间隔

var img = new Image()

var onImgLoaded = function () {

offScreenCvsWidth = img.width

offScreenCvsHeight = img.height

offScreenCvs.width = offScreenCvsWidth

offScreenCvs.height = offScreenCvsHeight

offScreenCtx.drawImage(img, 0, 0, offScreenCvsWidth, offScreenCvsHeight)

imageData = offScreenCtx.getImageData(0, 0, offScreenCvsWidth, offScreenCvsHeight)

// 采样点数 = 图片宽度 / 采样间隔;容器边长 = 采样点数 × 字体大小

container.style.width = (offScreenCvsWidth / samplerStep * 12) + 'px'

container.style.height = (offScreenCvsHeight / samplerStep * 12) + 'px'

render()

}

img.src = './trump.png'

img.complete ? onImgLoaded() : (img.onload = onImgLoaded) // 确保onImgLoaded被执行

var imageData

var x, y, pos

var asciiCharArray = '#KDGLftji+;,:.'.split('') // 准备不同密度的字符数组(降序)

var durationPerChar = Math.ceil(255 / asciiCharArray.length) // 每个字符代表的密度阈值

function render () {

var imageDataContent = imageData.data

var strArray = []

var part1, part2

var letter

var value

for (y = 0; y < offScreenCvsHeight; y += samplerStep) {

strArray.push('

') // 使用P标签换行

for (x = 0; x < offScreenCvsWidth; x += samplerStep) {

pos = y * offScreenCvsWidth + x

// 获取RBG加权平均后的灰度值

value = imageDataContent[pos * 4] * 0.3086 + imageDataContent[pos * 4 + 1] * 0.6094 + imageDataContent[pos * 4 + 2] * 0.0820

imageDataContent[pos * 4] = imageDataContent[pos * 4 + 1] = imageDataContent[pos * 4 + 2] = value

// 判断灰度值落在那个密度范围中,拿到对应的字符

part1 = Math.floor(value / durationPerChar)

part2 = value % durationPerChar

letter = part2 ? asciiCharArray[part1] : (part1 ? asciiCharArray[part1 - 1] : 'æ')

strArray.push(letter)

}

strArray.push('

')

}

container.innerHTML = strArray.join('')

}

先解释一下这行:img.complete ? onImgLoaded() : (img.onload = onImgLoaded)

通常来说img.onload = 必须要放在 img.src = 之前,来保证onload回调一定会执行,否则的话如果图片在执行这段代码之前已经被浏览器缓存了,则有可能不会触发onload回调。但是有时候由于业务的需要,有些操作必须要在图片载入完成后执行,可是不一定立即执行,碰到这种情况,就可以用到Image对象的complete属性,该属性会返回当前图片是否加载完成的bollean值。于是,通过上面这行代码,就可以确保onImgLoaded函数在图片载入完成后一定会被触发。(本案例该写法不必须,但是建议养成这个习惯)

上面实际上已经完成了核心的功能,接下来对我们的代码做一些优化——

如果我们需要提供改变字体大小的功能怎么办?可以先直接把字体大小相关的字面值抽出为一个变量,如fontSize :

...

...

var fontSize = 18 // 字体大小

...

...

var onImgLoaded = function () {

...

...

container.style.width = (offScreenCvsWidth / samplerStep * fontSize) + 'px'

container.style.height = (offScreenCvsHeight / samplerStep * fontSize) + 'px'

container.style.fontSize = fontSize + 'px'

container.style.lineHeight = fontSize + 'px'

container.style.letterSpacing = (fontSize / 2) + 'px' // SimHei体英文宽是高的一半

render()

}

但是PC浏览器不允许字体小于12px怎么办呢?我们可以用css的scale来缩放容器就行了,修改代码如下:

...

var onImgLoaded = function () {

...

...

imageData = offScreenCtx.getImageData(0, 0, offScreenCvsWidth, offScreenCvsHeight)

if (fontSize < 12) {

// 小于12px则将字体改为12px并通过 transform scale 进行缩放

container.style.transform = 'scale(' + (fontSize / 12) + ')'

container.style.transformOrigin = '50% 0'

fontSize = 12

}

container.style.width = (offScreenCvsWidth * fontSize / samplerStep) + 'px'

...

...

}

...

好了,现在我们生成的是灰色的图,但是如何生成彩色的图呢,估计大家第一反应就是给每个字外面包一层标签(比如span、font),但是笔者试了之后发现一旦图片尺寸稍微大一些,性能下降非常夸张,一度把我的浏览器给弄崩溃了(╥╯^╰╥),小伙伴们可以自行尝试。于是我打算用canvas来做渲染而不是使用开销极大的dom,上面的代码大部分可以重用,我修改了一下后的html结构:

ascii art

* {

margin: 0;

padding: 0;

}

canvas, img {

display: block;

margin: auto;

}

(function () {

// canvas 实现

})()

这是js代码:

var offScreenCvs = document.createElement('canvas')

var offScreenCtx = offScreenCvs.getContext('2d', { alpha: false })

var asciiCvs = document.getElementById('ascii-canvas')

var asciiCtx = asciiCvs.getContext('2d', { alpha: false })

var offScreenCvsWidth, offScreenCvsHeight, asciiCvsWidth, asciiCvsHeight

var fontSize = 8

var samplerStep = 4

var img = new Image()

var onImgLoaded = function () {

offScreenCvsWidth = img.width

offScreenCvsHeight = img.height

offScreenCvs.width = offScreenCvsWidth

offScreenCvs.height = offScreenCvsHeight

offScreenCtx.drawImage(img, 0, 0, offScreenCvsWidth, offScreenCvsHeight)

imageData = offScreenCtx.getImageData(0, 0, offScreenCvsWidth, offScreenCvsHeight)

asciiCvsWidth = offScreenCvsWidth / samplerStep * fontSize

asciiCvsHeight = (offScreenCvsHeight / samplerStep + 1) * fontSize

asciiCvs.width = asciiCvsWidth

asciiCvs.height = asciiCvsHeight

render()

}

img.src = './trump.png'

img.complete ? onImgLoaded() : (img.onload = onImgLoaded)

var imageData

var x, y, _x, _y, pos

var asciiCharArray = '#KDGLftji+;,:.'.split('')

var durationPerChar = Math.ceil(255 / asciiCharArray.length)

function render () {

var imageDataContent = imageData.data

var part1, part2

var letter

var value

asciiCtx.fillStyle = '#ffffff'

asciiCtx.fillRect(0, 0, asciiCvsWidth, asciiCvsHeight)

asciiCtx.fillStyle = '#000000'

asciiCtx.font = fontSize + 'px SimHei'

for (y = 0, _y = 0; y < offScreenCvsHeight; y += samplerStep, _y++) {

for (x = 0, _x = 0; x < offScreenCvsWidth; x += samplerStep, _x++) {

pos = y * offScreenCvsWidth + x

value = imageDataContent[pos * 4] * 0.3086 + imageDataContent[pos * 4 + 1] * 0.6094 + imageDataContent[pos * 4 + 2] * 0.0820

imageDataContent[pos * 4] = imageDataContent[pos * 4 + 1] = imageDataContent[pos * 4 + 2] = value

part1 = Math.floor(value / durationPerChar)

part2 = value % durationPerChar

letter = part2 ? asciiCharArray[part1] : (part1 ? asciiCharArray[part1 - 1] : 'æ')

asciiCtx.fillText(letter, _x * fontSize, (_y + 1) * fontSize)

}

}

}

完美,接下来给文字上色:

...

...

var x, y, _x, _y, pos

var r, g, b

var asciiCharArray = '#KDGLftji+;,:.'.split('')

...

...

function render () {

...

...

for (y = 0, _y = 0; y < offScreenCvsHeight; y += samplerStep, _y++) {

for (x = 0, _x = 0; x < offScreenCvsWidth; x += samplerStep, _x++) {

pos = y * offScreenCvsWidth + x

r = imageDataContent[pos * 4]

g = imageDataContent[pos * 4 + 1]

b = imageDataContent[pos * 4 + 2]

value = r * 0.3086 + g * 0.6094 + b * 0.0820

imageDataContent[pos * 4] = imageDataContent[pos * 4 + 1] = imageDataContent[pos * 4 + 2] = value

part1 = Math.floor(value / durationPerChar)

part2 = value % durationPerChar

letter = part2 ? asciiCharArray[part1] : (part1 ? asciiCharArray[part1 - 1] : 'æ')

asciiCtx.fillStyle = 'rgb(' + r + ',' + g + ',' + b + ')'

asciiCtx.fillText(letter, _x * fontSize, (_y + 1) * fontSize)

}

}

}

...

...

搞腚!

核心的完成了下面就简单了,只要把资源换成视频,然后逐帧截取画面即可:

html结构如下:

...

...

您的浏览器不支持 HTML5 video 标签。

...

...

js代码如下:

var video = document.getElementById('video')

var offScreenCvs = document.createElement('canvas')

var offScreenCtx = offScreenCvs.getContext('2d', { alpha: false })

var asciiCvs = document.getElementById('ascii-canvas')

var asciiCtx = asciiCvs.getContext('2d', { alpha: false })

var offScreenCvsWidth, offScreenCvsHeight, asciiCvsWidth, asciiCvsHeight

var fontSize = 8

var samplerStep = 4

var maxWidth = 400, maxHeight = 400

video.onloadeddata = function () {

offScreenCvsWidth = video.videoWidth

offScreenCvsHeight = video.videoHeight

var ratio = offScreenCvsWidth / offScreenCvsHeight

if (video.videoWidth > maxWidth) {

offScreenCvsWidth = maxWidth

offScreenCvsHeight = Math.floor(offScreenCvsWidth / ratio)

}

if (video.videoHeight > maxHeight) {

offScreenCvsHeight = maxHeight

offScreenCvsWidth = Math.floor(offScreenCvsHeight * ratio)

}

offScreenCvs.width = offScreenCvsWidth

offScreenCvs.height = offScreenCvsHeight

asciiCvsWidth = (offScreenCvsWidth / samplerStep + 1) * fontSize

asciiCvsHeight = (offScreenCvsHeight / samplerStep + 1) * fontSize

asciiCvs.width = asciiCvsWidth

asciiCvs.height = asciiCvsHeight

offScreenCtx.drawImage(video, 0, 0, offScreenCvsWidth, offScreenCvsHeight)

imageData = offScreenCtx.getImageData(0, 0, offScreenCvsWidth, offScreenCvsHeight)

render()

video.onclick = function () {

video.paused ? video.play() : video.pause()

}

video.onplay = function () {

stop = false

rendering = false

requestAnimationFrame(tick)

}

video.onpause = function () {

stop = true

}

}

var imageData

var x, y, _x, _y, pos

var r, g, b

var asciiCharArray = '#KDGLftji+;,:.'.split('')

var durationPerChar = Math.ceil(255 / asciiCharArray.length)

function render () {

var imageDataContent = imageData.data

var part1, part2

var letter

var value

asciiCtx.fillStyle = '#ffffff'

asciiCtx.fillRect(0, 0, asciiCvsWidth, asciiCvsHeight)

asciiCtx.fillStyle = '#000000'

asciiCtx.font = fontSize + 'px SimHei'

for (y = 0, _y = 0; y < offScreenCvsHeight; y += samplerStep, _y++) {

for (x = 0, _x = 0; x < offScreenCvsWidth; x += samplerStep, _x++) {

pos = y * offScreenCvsWidth + x

r = imageDataContent[pos * 4]

g = imageDataContent[pos * 4 + 1]

b = imageDataContent[pos * 4 + 2]

value = r * 0.3086 + g * 0.6094 + b * 0.0820

imageDataContent[pos * 4] = imageDataContent[pos * 4 + 1] = imageDataContent[pos * 4 + 2] = value

part1 = Math.floor(value / durationPerChar)

part2 = value % durationPerChar

letter = part2 ? asciiCharArray[part1] : (part1 ? asciiCharArray[part1 - 1] : 'æ')

asciiCtx.fillStyle = 'rgb(' + r + ',' + g + ',' + b + ')'

asciiCtx.fillText(letter, _x * fontSize, (_y + 1) * fontSize)

}

}

}

var stop = false // 是否停止

var timeNow = Date.now() // 当前时间戳

var timeLast = timeNow // 上一帧时间戳

var delta = 0 // 与上一帧间隔

var interval //

var fps = 60 // 帧率

interval = 1000 / fps // 每帧耗时

var rendering = false

var tick = function () {

if (stop) return false

timeNow = Date.now()

delta = timeNow - timeLast

if (delta > interval) {

timeLast = timeNow

if (!rendering) {

rendering = true

offScreenCtx.drawImage(video, 0, 0, offScreenCvsWidth, offScreenCvsHeight)

imageData = offScreenCtx.getImageData(0, 0, offScreenCvsWidth, offScreenCvsHeight)

render()

rendering = false

}

}

requestAnimationFrame(tick)

}

除了tick,别的基本没变化,解释一下这个,事实上,只要渲染视频并不用这么一长段,下面这样即可:

var tick = function () {

if (!rendering) {

rendering = true

offScreenCtx.drawImage(video, 0, 0, offScreenCvsWidth, offScreenCvsHeight)

imageData = offScreenCtx.getImageData(0, 0, offScreenCvsWidth, offScreenCvsHeight)

render()

rendering = false

}

requestAnimationFrame(tick)

}

多余的这些代码其实可以称为是一段 动画或游戏渲染的范式。因为的requestAnimationFrame渲染频率是根据浏览器的刷新率来的,而电脑实时的性能会影响屏幕的刷新率,但是通常我们的动画都是固定的帧率,为了保持最终渲染出来的帧率尽可能的符合设计,所以一般会根据设计的帧率来计算出每一帧的耗时,然后根据每一帧的实际耗时来算出理想状态下的变化量,以下就是比较常规的设计范式:

var stop = false // 是否停止渲染

var timeNow = Date.now() // 当前时间戳

var timeLast = timeNow // 上一帧时间戳

var delta = 0 // 与上一帧间隔

var fps = 60 // 帧率

var interval = 1000 / fps // 每帧耗时

var rendering = false // 是否渲染某组件

var tick = function () {

if (stop) return false

timeNow = Date.now()

delta = timeNow - timeLast

if (delta > interval) {

timeLast = timeNow

if (!rendering) {

// loop 代码

}

}

requestAnimationFrame(tick)

}

教程结束~~~~じゃない

那gif怎么搞呢?

emmmm,gif-frames 可以把gif导出多张序列帧,后面的原理基本就和视频差不太多了,就给大家当课后作业吧 23333

Demo4:See the Pen ascii_art_pure by Kay (@oj8kay) on CodePen.

html用转义字符画菱形,JavaScript生成字符画(ASCII Art)相关推荐

  1. JavaScript生成字符画(ASCII Art)

    2019独角兽企业重金招聘Python工程师标准>>> 今天玩一些新的东西,大家都没有看过这样的视频: bad apple 字符版 或者 这样的图片: 网上有很多生成这种图片/视频的 ...

  2. 35行代码利用python生成字符画,非常适合初学者练习,附源码!

    python字符画是一个简单有趣的小程序,非常适合初学者进行学(zhuang)习(bi).python字符画生成的原理及其简单,一句话概括就是----将图片像素点用不同字符代替,从而将像素组成的图片转 ...

  3. python生成字符画_Python生成字符画 | 文艺数学君

    摘要这一篇文章介绍使用Python生成字符画的方式. 会给出简单的原理介绍和实现的方式. 最后会给出源代码的链接地址. 简介 这一篇介绍一下使用Python来进行字符画的生成. 这里会介绍一下生成的步 ...

  4. 利用python生成字符画

    先看看效果图: 转换后: 将图片转换成字符画的原理: 先将图片转换成黑白,然后一行行的读取灰度,建立灰度与字符的映射. 转换代码: def transform(image_file): image_f ...

  5. Linux控制台打开显示字符画,Linux 命令行字符画工具

    代码地址:https://github.com/pedroqin/Ascii_Signature 公众号: write_simple_demo,专注linux 介绍 此项目移植于网页版字符画生成器,最 ...

  6. 在JavaScript中将字符转换为ASCII代码

    如何使用JavaScript将字符转换为ASCII码? 例如: 从" \\ n"获得10. #1楼 如果只有一个字符而不是一个字符串,则可以使用: '\n'.charCodeAt( ...

  7. python生成字符画_python生成动态字符画

    广告关闭 腾讯云11.11云上盛惠 ,精选热门产品助力上云,云服务器首年88元起,买的越多返的越多,最高返5000元! 但,可以将字符串的一部分复制到新创建的字符串,达到"看起来修改&quo ...

  8. python生成字符画_使用Python生成ASCII字符画

    使用Python生成ASCII字符画 在很多的网站主页中或者程序的注释中会有一些好看的字符注释画.显得很牛逼的样子 例如: 知乎 _____ _____ _____ _____ /\ \ /\ \ / ...

  9. Python 井川里予 当程序员看多了 程序 生成 字符画

    修改video_path = 'test1.mp4' 这一句即可,源码地址:https://github.com/hongcyu/char_painting import cv2 from PIL i ...

最新文章

  1. ACL 2021 | 腾讯AI Lab、港中文杰出论文:用单语记忆实现高性能NMT
  2. SAP 远程连接出错 SAP GUI For Windows 7.40 hostname ‘NiHLGetNodeAddr‘ unknown
  3. 关于win8/win8.1系统不能调节亮度的解决办法
  4. 第7.26节 Python中的@property装饰器定义属性访问方法getter、setter、deleter 详解
  5. 总分第一!阿里云数据库应用迁移解决方案通过信通院首批最高级评测
  6. 【数据结构总结】第六章 图(非线性结构)
  7. mapgis转arcgis数据后发现属性表内没有数据
  8. office365 自定义_IT外包观察,足不出户,Office365打造教学新体验?
  9. php魔术方法__call
  10. GDAL工具使用示例(一)
  11. 软考初级程序员含金量高吗?有答案了
  12. (转)逃脱者可获生机(下)
  13. 【gev】 Golang 实现轻量、快速的基于 Reactor 模式的非阻塞 TCP 网络库
  14. CVE-2010-0188漏洞点定位
  15. 【Bug】无法访问Windows Installer服务
  16. android 测试机 怎么root,Android 应用安全 - 检测设备是否Root
  17. Python爬虫-爬取腾讯小视频
  18. python中的numpy库有什么优缺点_python中关于numpy库的介绍
  19. 【SQL注入】联合查询(最简单的注入方法)
  20. 带头结点单链表递增有序

热门文章

  1. 从Encoder到Decoder实现Seq2Seq模型
  2. C语言:fopen与open的总结
  3. 【译】索引进阶(四):页和区
  4. mysql的字码设置方法
  5. path环境变量丢失恢复
  6. 数据库设计-规范化规则
  7. 大楼(bzoj 2165)
  8. [转] TOUGH 的系列平面广告
  9. 【剑指offer】面试题27:二叉树的镜像(Java)
  10. java8 迭代set集合_JavaSE(八)集合之Set