Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Cropperjs | 11,627 | 1,191 | 538 | 2 months ago | 68 | June 19, 2022 | 36 | mit | JavaScript | |
JavaScript image cropper. | ||||||||||
Photoeditor | 3,709 | 17 days ago | 26 | January 22, 2022 | 59 | mit | Kotlin | |||
A Photo Editor library with simple, easy support for image editing using paints,text,filters,emoji and Sticker like stories. | ||||||||||
Nude.js | 2,074 | 6 years ago | 17 | JavaScript | ||||||
Nudity detection with JavaScript and HTMLCanvas | ||||||||||
Darkroomjs | 1,149 | 4 | 1 | 2 years ago | 1 | September 16, 2015 | 59 | mit | JavaScript | |
Extensible image editing tool in your browser | ||||||||||
Vintagejs | 817 | 9 | 6 years ago | March 05, 2017 | 1 | mit | JavaScript | |||
Add a retro/vintage effect to images using the HTML5 canvas element | ||||||||||
Lena.js | 562 | 4 months ago | 18 | October 09, 2020 | 11 | JavaScript | ||||
:woman: Library for image processing | ||||||||||
Gaussianblur | 491 | a year ago | 2 | mit | Java | |||||
An easy and fast library to apply gaussian blur filter on any images. 🎩 | ||||||||||
Frontend Park | 215 | 4 months ago | 1 | Vue | ||||||
🌸这是一个有趣的前端趣味知识公园~该项目是我平时捣鼓前端相关技术的一些案例集合。【涵盖:(Tensorflow.js-姿态识别,人脸识别),(WebRTC-音视频通话,录屏,虚拟背景,信令服务器),(Threejs-太阳系,3D 动画),(图片处理-千图成像,图片压缩,画板),(隐写术-文本隐写加密,图片隐写加密)等等...】 | ||||||||||
Gradex | 142 | 3 years ago | mit | Vue | ||||||
An online tool to generate gradients background from given image so you can preview and download it. | ||||||||||
Deepfriedmemes.com | 132 | 2 years ago | 4 | gpl-3.0 | JavaScript | |||||
🅱️ Deep fries your pics. Serve with laundry sauce. |
This software provides JavaScript image processing of HTML canvas.
Scripts take module pattern.
Define one object in one file.
example.js
export default (function () {
// Private variable.
var privateVar;
// Private method.
function privateFunction() {};
// Public method.
function publicFunction() {};
return {
publicFunction: publicFunction
}
}());
src/index.js
import example from 'example.js';
You install npm packages topmost project directory.
$ cd /path/to/project
$ npm install
You watch src directory in order to compile ES2015 by Babel and Browserify.
$ npm run watch
If you minify JavaScript, You install bellow package to global.
mishoo/UglifyJS2: JavaScript parser / mangler / compressor / beautifier toolkit
$ cd /path/to/project
$ uglifyjs ./dist/ui-image.js -o ./dist/ui-image.min.js
If you generate JavaScript documentation, You install bellow package to global.
YUIDoc - JavaScript Documentation Tool
$ cd /path/to/project
$ yuidoc -o ./docs ./src
This project uses npm scripts.
npm script is written in package.json
Watch files and compile by Babel and Browefiry.
$ cd /path/to/project
$ npm run watch
Minify JavaScript.
$ cd /path/to/project
$ npm run min
Generate JavaScript documentation(YUIDoc).
$ cd /path/to/project
$ npm run docs
Build distribution file (dist/ui-image.min.js).
$ cd /path/to/project
$ npm run build
Copyright (c) 2016 Hiroshi Sawai [email protected]
UIImage is distributed under the MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
UIImage bundles the following third-party resources:
Copyright jQuery Foundation and other contributors Released under the MIT license
Copyright jQuery Foundation and other contributors; Licensed MIT
Copyright 2011-2016 The Bootstrap Authors Copyright 2011-2016 Twitter, Inc. Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
MIT License | github.com/necolas/normalize.css