基于JavaScript的jimp库处理图片,添加绘制点

Jimp 是一个用于在 Node.js 环境下进行图像处理的 JavaScript 库。要在图片上绘制点并控制点的大小和颜色,你可以使用 Jimp 库的相关方法来实现。

这里来看介绍吧,英文不好的找翻译gpt和度娘应该都不错

GitHub - jimp-dev/jimp: An image processing library written entirely in JavaScript for Node, with zero external or native dependencies.

jimp - npm

首先,确保你已经安装了 Jimp 库。然后,你可以按照以下步骤在图片上绘制点:

安装 Jimp

如果还没有安装 Jimp,可以使用 npm 进行安装:

npm install jimp

基本框架

const Jimp = require('jimp');Jimp.read('input_image.jpg').then(image => {// 图像处理操作}).catch(err => {console.error(err);});

具体处理操作片段(放入上面图像处理模块就行)

 调整大小

image.resize(300, Jimp.AUTO); // 宽度300像素,高度按比例自动调整

调整透明度

image.opacity(0.5); // 设置透明度为50%

增加亮度

image.brightness(0.5); // 将亮度增加50%

 

 裁剪图像

image.crop(100, 100, 200, 200); // 从坐标(100,100)开始裁剪,宽高都是200像素

 添加滤镜

image.greyscale(); // 转换为灰度图像

绘制文本

const font = await Jimp.loadFont(Jimp.FONT_SANS_16_WHITE);
image.print(font, 10, 10, 'Hello, World!');

绘制圆形

image.circle({ radius: 50, x: 100, y: 100, edge: Jimp.EDGE_HARDNESS });

绘制矩形

image.rect(50, 50, 100, 100, 0xFF0000FF); // 50x50 大小的红色矩形

保存图像

image.write('output_image.jpg');

旋转图像

image.rotate(90)

 其他方法参考

/* Resize */
image.contain( w, h[, alignBits || mode, mode] );    // scale the image to the given width and height, some parts of the image may be letter boxed
image.cover( w, h[, alignBits || mode, mode] );      // scale the image to the given width and height, some parts of the image may be clipped
image.resize( w, h[, mode] );     // resize the image. Jimp.AUTO can be passed as one of the values.
image.scale( f[, mode] );         // scale the image by the factor f
image.scaleToFit( w, h[, mode] ); // scale the image to the largest size that fits inside the given width and height// An optional resize mode can be passed with all resize methods./* Crop */
image.autocrop([tolerance, frames]); // automatically crop same-color borders from image (if any), frames must be a Boolean
image.autocrop(options);          // automatically crop same-color borders from image (if any), options may contain tolerance, cropOnlyFrames, cropSymmetric, leaveBorder
image.crop( x, y, w, h );         // crop to the given region/* Composing */
image.blit( src, x, y, [srcx, srcy, srcw, srch] );// blit the image with another Jimp image at x, y, optionally cropped.
image.composite( src, x, y, [{ mode, opacitySource, opacityDest }] );     // composites another Jimp image over this image at x, y
image.mask( src, x, y );          // masks the image with another Jimp image at x, y using average pixel value
image.convolute( kernel );        // applies a convolution kernel matrix to the image or a region/* Flip and rotate */
image.flip( horz, vert );         // flip the image horizontally or vertically
image.mirror( horz, vert );       // an alias for flip
image.rotate( deg[, mode] );      // rotate the image counter-clockwise by a number of degrees. Optionally, a resize mode can be passed. If `false` is passed as the second parameter, the image width and height will not be resized./* Colour */
image.brightness( val );          // adjust the brighness by a value -1 to +1
image.contrast( val );            // adjust the contrast by a value -1 to +1
image.dither565();                // ordered dithering of the image and reduce color space to 16-bits (RGB565)
image.greyscale();                // remove colour from the image
image.invert();                   // invert the image colours
image.normalize();                // normalize the channels in an image/* Alpha channel */
image.hasAlpha();                     // determines if an image contains opaque pixels
image.fade( f );                  // an alternative to opacity, fades the image by a factor 0 - 1. 0 will haven no effect. 1 will turn the image
image.opacity( f );               // multiply the alpha channel by each pixel by the factor f, 0 - 1
image.opaque();                   // set the alpha channel on every pixel to fully opaque
image.background( hex );          // set the default new pixel colour (e.g. 0xFFFFFFFF or 0x00000000) for by some operations (e.g. image.contain and/* Blurs */
image.gaussian( r );              // Gaussian blur the image by r pixels (VERY slow)
image.blur( r );                  // fast blur the image by r pixels/* Effects */
image.posterize( n );             // apply a posterization effect with n level
image.sepia();                    // apply a sepia wash to the image
image.pixelate( size[, x, y, w, h ]);  // apply a pixelation effect to the image or a region/* 3D */
image.displace( map, offset );    // displaces the image pixels based on the provided displacement map. Useful for making stereoscopic 3D images.

完整实例1——使用 Jimp 在图片上绘制点

const Jimp = require('jimp');// 读取图片
Jimp.read('input_image.jpg').then(image => {const x = 100; // 点的 x 坐标const y = 150; // 点的 y 坐标const color = 0xFF0000FF; // 点的颜色,这里是红色const pointSize = 3; // 点的大小// 在指定的坐标绘制一个点image.setPixelColor(color, x, y);// 通过绘制周围像素来增加点的大小for (let i = x - pointSize; i <= x + pointSize; i++) {for (let j = y - pointSize; j <= y + pointSize; j++) {image.setPixelColor(color, i, j);}}// 保存处理后的图片return image.writeAsync('output_image.jpg');}).catch(err => {console.error(err);});

在上面的示例中:

  • Jimp.read 方法用于读取图片。
  • 使用 setPixelColor 方法在指定的坐标上设置颜色。
  • 通过循环设置周围像素的颜色以增加点的大小。
  • 最后,保存修改后的图片。

你可以根据需要更改点的位置、颜色和大小。修改 xycolorpointSize 变量以获得你想要的效果。

绘制多个点,并设置不同颜色

const Jimp = require('jimp');const width = 500; // 图片宽度
const height = 500; // 图片高度// 创建一个空白的图片
new Jimp(width, height, (err, image) => {if (err) throw err;// 需要绘制的点的信息(坐标、颜色、大小)const points = [{ x: 100, y: 100, color: 0xFF0000FF, size: 5 }, // 红色,大小为5像素{ x: 200, y: 300, color: 0x00FF00FF, size: 7 }, // 绿色,大小为7像素{ x: 400, y: 200, color: 0x0000FFFF, size: 10 } // 蓝色,大小为10像素// 添加更多点的信息...];// 绘制每个点points.forEach(point => {const { x, y, color, size } = point;// 绘制点的周围像素来控制大小for (let i = x - size; i <= x + size; i++) {for (let j = y - size; j <= y + size; j++) {image.setPixelColor(color, i, j);}}});// 保存图片image.write('output_image.jpg', () => {console.log('图片已保存');});
});

 这个示例创建了一个指定宽度和高度的空白图片,并根据 points 数组中的信息,在图片上绘制了多个点。points 数组中每个元素都包含了点的坐标 (xy)、颜色 (color) 和大小 (size)。

  • xy 表示点的坐标位置。
  • color 是点的颜色,采用 RGBA 格式 (0xRRGGBBAA),其中 RR 代表红色、GG 代表绿色、BB 代表蓝色、AA 代表透明度。
  • size 表示点的大小。

然后通过双重循环在指定位置绘制了每个点,并根据大小设置了颜色。最后将生成的图片保存为 output_image.jpg

你可以根据需要更改点的位置、颜色和大小,以及在 points 数组中添加更多点的信息,来达到你想要的效果。

完整实例2——Jimp 合并两张图片并设置透明度:

const Jimp = require('jimp');// 读取第一张图片
Jimp.read('image1.jpg').then(image1 => {// 读取第二张图片return Jimp.read('image2.png').then(image2 => {// 调整第二张图片的大小以适应第一张图片image2.resize(image1.bitmap.width, image1.bitmap.height);// 将两张图片叠加并设置透明度image1.composite(image2, 0, 0, {mode: Jimp.BLEND_SOURCE_OVER, // 叠加模式opacitySource: 0.5 // 设置第二张图片的透明度(这里为50%)});// 保存合并后的图片return image1.writeAsync('output_image.jpg');}).catch(err => {console.error(err);});}).catch(err => {console.error(err);});

在这个示例中:

  • 使用 Jimp.read() 方法读取了两张图片。
  • 调整了第二张图片的大小以适应第一张图片。
  • 使用 composite() 方法将第二张图片叠加到第一张图片上,并设置了透明度。
  • 最后,保存了合并后的图片。

这段代码将两张图片叠加在一起,并设置了第二张图片的透明度为50%(0.5)。你可以根据需要调整透明度的值来达到你想要的效果。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/185030.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【量子机器学习】量子机器学习的介绍

量子机器学习&#xff1a;解锁未来的计算潜能 随着科技的迅速进步&#xff0c;量子机器学习&#xff08;QML&#xff09;作为量子计算和机器学习的完美融合&#xff0c;为我们带来了前所未有的计算潜能。在这个新兴领域中&#xff0c;量子神经网络&#xff08;QNN&#xff09;…

centos 安装谷歌浏览器

centos安装谷歌浏览器_centos google浏览器_运维小兵的博客-CSDN博客 https://googlechromelabs.github.io/chrome-for-testing/ 谷歌driver下载地址 String url "https://emweb.securities.eastmoney.com/pc_hsf10/pages/index.html?typeweb&code"code"…

基于深度学习的表情动作单元识别综述

论文标题&#xff1a;基于深度学习的表情动作单元识别综述 作者&#xff1a;邵志文1&#xff0c;2&#xff0c;周 勇1&#xff0c;2&#xff0c;谭 鑫3&#xff0c;马利庄3&#xff0c;4&#xff0c;刘 兵1&#xff0c;2&#xff0c;姚 睿1&#xff0c;2 发表日期&#xff1a…

提供视频会员权益/音频会员权益/生活周边权益/卡密+api接口源码

1、获取卡券特权数据&#xff08;直充、卡券&#xff09; 网关URL&#xff1a;https://router.wikeyun.cn/rest/Quanyi/privilege 参数名 类型 必填 参数说明 id int 否 权益id&#xff0c;不传或传空字符串全部 pro_type int 否 产品类型&#xff0c;不传或传空字…

程序员养生之道:延寿秘诀揭秘

目录 引言&#xff1a; 第一部分&#xff1a;充足的睡眠 第二部分&#xff1a;合理饮食 第三部分&#xff1a;适当的运动 第四部分&#xff1a;保护视力和颈椎 第五部分&#xff1a;心理调节 第六部分&#xff1a;适度娱乐 引言&#xff1a; 在现代社会中&#xff0c;程…

入门学习1

docker命令参考 Docker专题栏目 (java265.com) 一句话就是docker解决了运行环境不一致所带来的问题 第一章 什么是docker 1.1 docker的发展史 1.2 docker国内应用史 1.3 什么是Docker 第二章 了解docker 2.1 docker思想 2.1.1 集装箱 2.1.2 标准化 2.1.3 隔离 2.2 …

软件工程(十)

软件质量 定义 ANSI/IEEE Std 729-1983定义软件质量为“与软件产品满足规定的和隐含的需求的能力有关的特征或特性的全体” ISO 8402-1994定义软件质量为“反映实体满足明确和隐含需要的能力的特性的总和”。此处&#xff0c;实体是“可以单独描述和研究的事物”&#xff0c…

iRDMA流量控制总结 - 2

4.0 Priority Flow Control – Fundamentals带优先级的流量控制 - 基础知识 PFC is defined by IEEE Standard 802.1Qbb and is part of the DCB suite of enhancements designed to make Ethernet a more viable, competitive transport in compute and storage environments.…

SQLite数据库

接触到很多的sqlite数据库的内容&#xff0c;主要记录一下&#xff1a; 一些学习链接&#xff1a; https://zhuanlan.zhihu.com/p/604609409?utm_id0 https://blog.csdn.net/QtCompany/article/details/129671584 SQLite Expert的官方下载链接&#xff1a; https://www.sql…

RabbitMQ的Web管理页面

访问页面 http://IP:15672/账号密码默认都是&#xff1a;guest 主页概览 Overview 显示当前RabbitMQ Broker的运行信息、连接信息、集群信息以及配置信息等。 连接 Connections 无论生产者还是消费者&#xff0c;都需要与RabbitMQ建立连接后才可以完成消息的生产和消费&#…

QT(18):QString

目录 QStringQTypedArrayDataQTypedArrayDataQLatin1StringQStringLiteral乱码 QStringRef QString QString 存储16位QChar的字符串&#xff0c;其中每个QChar对应一个 UTF-16代码单元。QString 使用&#xff08;写入时复制copy-on-write&#xff09;来减少内存使用并避免不必…

CSS的filter属性详解

目录 前言 函数 blur()函数 brightness()函数 contrast()函数 drop-shadow()函数 grayscale()函数 hue-rotate() (en-US)函数 invert() (en-US)函数 opacity()函数 saturate() (en-US)函数 sepia() (en-US)函数 组合函数 前言 CSS的filter 属性将模糊或颜色偏移等…

【正点原子STM32连载】 第六十一章 USB读卡器(Slave)实验摘自【正点原子】APM32F407最小系统板使用指南

1&#xff09;实验平台&#xff1a;正点原子APM32F407最小系统板 2&#xff09;平台购买地址&#xff1a;https://detail.tmall.com/item.htm?id609294757420 3&#xff09;全套实验源码手册视频下载地址&#xff1a; http://www.openedv.com/thread-340252-1-1.html## 第六十…

Electronica慕尼黑电子展 Samtec团队与21ic分享虎家产品与方案

【摘要/前言】 “希望但凡是能够使用到连接器的场合都有Samtec的身影” 在慕尼黑上海电子展现场&#xff0c;Samtec华东区销售经理章桢彦先生在与21ic副主编刘岩轩老师的采访中&#xff0c;如是说道。这是一种愿景&#xff0c;更是Samtec的努力方向。短短一句话&#xff0c;…

视频播放标签,设置自动播放 暂停键 播放键 js方法

1 创建video 标签&#xff0c;标签设置属性 autoplay 自动播放&#xff0c;宽高100 全屏。 <video class"video" id"shipin" controls"controls" autoplay poster"" style"width:100%;height:100%;position:fixed;">&…

notepad++ 插件JSONView安装

1&#xff0c;前提 开发过程中经常需要处理json格式语句&#xff0c;需要对json数据格式化处理&#xff0c;因为使用的是虚拟机内开发&#xff0c;所以没法连接外网&#xff0c;只能在本地电脑下载插件后&#xff0c;然后上传到虚拟机中&#xff0c;进行安装使用。 2&#xf…

1+x中级网络运维实验题

任务 1&#xff1a; 设备命名 为了方便后期维护和故障定位及网络的规范性&#xff0c;需要对网络设备进行规范化命名。请根据 Figure 3-1 实验考试拓扑对设备进行命名。命名规则为&#xff1a;城市-设备的设置地点-设备的功能属性和序号-设备型号。例如&#xff1a;处于杭州校…

@Autowired注解获取对象为null

问题再现 兄弟们&#xff0c;看见了吗&#xff1f;这里我Autowired进来的forkliftService 居然为null 且我SysForkliftServiceImpl上面是加了Service注解的 分析原因 主要原因就是因为该类继承了一个第三方框架SimpleChannelInboundHandler&#xff0c;在执行的过程中&#…

[Java 源码] 美团一面~ArrayList 的底层实现

文章目录 1. ArrayList 与 数组的区别2 ArrayList 的初始化容量3. ArrayList 的扩容具体指什么4. ArrayList是如何实现扩容的&#xff1f;5. ArrayList有缩容吗&#xff1f; 1. ArrayList 与 数组的区别 ArrayList 的底层是数组队列&#xff0c;相当于动态数组。与 Java 中的数…

2023年【P气瓶充装】找解析及P气瓶充装复审模拟考试

题库来源&#xff1a;安全生产模拟考试一点通公众号小程序 P气瓶充装找解析参考答案及P气瓶充装考试试题解析是安全生产模拟考试一点通题库老师及P气瓶充装操作证已考过的学员汇总&#xff0c;相对有效帮助P气瓶充装复审模拟考试学员顺利通过考试。 1、【多选题】CNG双燃料汽车…