npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

image2d

v1.16.4

Published

🍇 使用ECMAScript绘制二维图片。Drawing Two-Dimensional Pictures Using ECMAScript.

Downloads

676

Readme

使用ECMAScript绘制二维图片,开发这个库的初衷是希望越来越多的人可以更自由的发挥自己的创意,感受绘图的乐趣,并把积累的经验分享出来,推动库本身的发展,从而不断优化!因此,这个库永远都是自由、开源、讨论和进步的。

<script src="https://cdn.jsdelivr.net/npm/image2d@1"></script>

你可以通过CDN的方式引入(版本历史),在代码中通过image2D或$$调用,当然,你也可以通过npm的方式引入。

npm install --save image2d

安装好了以后,在需要的地方引入即可:

import $$ from 'image2d';

具体的接口或相关说明请查阅接口文档或者在遇到困难的时候通过issue和我们取得联系!

下面我们来演示如何绘制一个圆弧(更复杂的图形,比如树图、地图等请通过教程进行学习)!

  • 获取画笔

绘图的第一步当然是获取画笔了,画笔分为两种:Canvas2D 和 SVG,我们来看看具体的代码:

// 我们假定我们现在在页面有一个canvas标签:<canvas id='painter'></canvas>
var painter=$$('#painter').attr({
  "width":300,
  "height":300
}).painter();

上面的$$('#painter')返回一个 image2D 对象,通过 ID 选择器查找结点,我们设置了画布的大小,然后调用对象上的 painter 方法就可以获取画笔了。

如何判断画笔的类型?如果结点是 canvas 获取的就是 Canvas2D 画笔,如果结点是 SVG 获取的就是 SVG 画笔,因此这里是Canvas2D画笔。

  • 配置画笔

不管是什么画笔,都一样可以进行配置(当然有缺省值),比如画笔的粗细,颜色等,下面来配置圆弧的颜色和线条粗细和类型:

painter.config({
  'strokeStyle':'red',
  'lineWidth':3,
  'lineDash':[5]
});
  • 绘制

画笔获取并配置好了以后,直接调用画笔上的方法即可绘图:

painter.strokeArc(150, 150, 100, 130, Math.PI/2, Math.PI/2*3);

这样,一个圆弧就绘制好了,可以点击此次查看运行效果。

怎么样?是不是很简单,虽然直接使用 Canvas2D 或 SVG 也可以实现,不过借助这个库绘图会更简单(我们主要解决了浏览器兼容和复杂计算上的问题,并使得SVG和Canvas2D绘图习惯保持一致,同时抽象了部分有用的概念)。

你可以把更多的精力放在绘制出更有趣的作品上,如果使用过程中有好的意见,可以来issue中提出)。

目前image2D主要由 你好2007 维护,当然也有来自一些使用者的 意见Pull requests 在帮忙我们不断改进和完善,在此我们表示由衷的感谢,我们会带着初心矢志不渝的坚持维护,并永远保持自由、开源、讨论和进步,期待你的加入。

当前在做什么?

如果你想知道我们在做什么,你可以查看 开发或BUG任务清单 页面,其中分为四个阶段:

  • In discussion:讨论阶段,不一定会去实现,只是提出了进行讨论。
  • To do:准备做的,列在日程表中,不过还没有准备做的任务。
  • In progress:正在做的,当前已经被领取的任务,表示已经有人在完成这件事了,只是还没有完成。
  • Done:已经完成的,进入这个阶段就意味着该任务已经关闭。

新任务如何产生?

主要来自 issue 和前端本身的发展(可能一些新的技术等原因,催促一些改变是有意义的),如果你对未来版本有什么期望,也可以告诉我们。

当前,这也包括 接口文档教程 等,甚至包括 用例 ,一切围绕或和image2D相关的都可以提。

为什么要加入我们?

虽然通过提 issuePull requests 也可以很好的参与贡献,不过你无法完全的融入进来,无法更全面的把控image2D的发展规划。通过加入我们成为长期稳定的贡献者,和我们保持密切的联系,这非常利于你,因为你有了一定的主动权。

加入我们并不意味着就是代码的维护,你可以选择下列一项或多项进行参与:

  • 代码维护:由于新功能或一些BUG的出现,对代码进行维护和升级。
  • 文档编辑:主要是接口文档和教程需要编辑,这很重要。
  • 用例开发和测试:在项目的test文件夹下有一些测试,而在examples项目中维护了一些用例。
  • 参与讨论:主要是讨论image2D未来如何发展,改造的方向等。

如果有意向加入我们,你可以通过提 issue 和我们取到联系,请简单说明一下情况,我们会尽快回复。

你可以查看.mailmap文件了解当前主要维护人员,查看AUTHORS.txt了解所有的贡献者。

开源协议

MIT

Copyright (c) 2018-2022 hai2007 走一步,再走一步。