Uiimage

This software provides JavaScript image processing of HTML canvas.
Alternatives To Uiimage
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Cropperjs11,6271,1915382 months ago68June 19, 202236mitJavaScript
JavaScript image cropper.
Photoeditor3,709
17 days ago26January 22, 202259mitKotlin
A Photo Editor library with simple, easy support for image editing using paints,text,filters,emoji and Sticker like stories.
Nude.js2,074
6 years ago17JavaScript
Nudity detection with JavaScript and HTMLCanvas
Darkroomjs1,149412 years ago1September 16, 201559mitJavaScript
Extensible image editing tool in your browser
Vintagejs817
96 years agoMarch 05, 20171mitJavaScript
Add a retro/vintage effect to images using the HTML5 canvas element
Lena.js562
4 months ago18October 09, 202011JavaScript
:woman: Library for image processing
Gaussianblur491
a year ago2mitJava
An easy and fast library to apply gaussian blur filter on any images. 🎩
Frontend Park215
4 months ago1Vue
🌸这是一个有趣的前端趣味知识公园~该项目是我平时捣鼓前端相关技术的一些案例集合。【涵盖:(Tensorflow.js-姿态识别,人脸识别),(WebRTC-音视频通话,录屏,虚拟背景,信令服务器),(Threejs-太阳系,3D 动画),(图片处理-千图成像,图片压缩,画板),(隐写术-文本隐写加密,图片隐写加密)等等...】
Gradex142
3 years agomitVue
An online tool to generate gradients background from given image so you can preview and download it.
Deepfriedmemes.com132
2 years ago4gpl-3.0JavaScript
🅱️ Deep fries your pics. Serve with laundry sauce.
Alternatives To Uiimage
Select To Compare


Alternative Project Comparisons
Readme

UIImage

This software provides JavaScript image processing of HTML canvas.

Dependencies

  • jQuery v3.1.1
  • jQuery UI - v1.12.0
  • Bootstrap v4.0.0

Scripts implementation

Scripts take module pattern.
Define one object in one file.

Example

example.js

export default (function () {
    // Private variable.
    var privateVar;

    // Private method.
    function privateFunction() {};

    // Public method.
    function publicFunction() {};

    return  {
        publicFunction: publicFunction
    }
}());

Use object

src/index.js

import example from 'example.js';

Develop environment

Install npm package to project directory

You install npm packages topmost project directory.

  • Install Babel, Browserify in order to compile ES2015 and use ES Modules.
$ cd /path/to/project
$ npm install

You watch src directory in order to compile ES2015 by Babel and Browserify.

$ npm run watch

Install npm package to global if you need.

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

Task runner(Npm scripts)

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

LICENSE

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.

third-party resource

UIImage bundles the following third-party resources:

jQuery v3.1.1

Copyright jQuery Foundation and other contributors Released under the MIT license

jQuery UI - v1.12.0

Copyright jQuery Foundation and other contributors; Licensed MIT

Bootstrap v4.0.0-alpha.4 (http://getbootstrap.com)

Copyright 2011-2016 The Bootstrap Authors Copyright 2011-2016 Twitter, Inc. Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)

normalize.css v4.0.0

MIT License | github.com/necolas/normalize.css

Popular Canvas Projects
Popular Image Processing Projects
Popular Web User Interface Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Jquery
Canvas
Image Processing
Uiimage
Npm Scripts