Home Web Front-end JS Tutorial Convert pictures into character paintings through javascript_javascript skills

Convert pictures into character paintings through javascript_javascript skills

May 16, 2016 pm 05:19 PM
canvas html5 javascript

Convert pictures into character paintings through javascript

1. Get uploaded image object data
Javascript cannot directly obtain the data of locally uploaded images, and html5 can solve this problem. The FileReader interface in HTML5 can read the data of the image object into the memory, and then access the data through the progress events (Progress Events) of the interface.
Browser support:
1. Internet Explorer: 10
2. Firefox: 10
3. Chrome: 13
4. Opera: 12
5. Safari: partial

Copy code The code is as follows:

var reader = new FileReader(); //Create a FileReader interface
reader.readAsDataURL(fileBtn.files[0]); //fileBtn is the file upload control object
reader.onload = function () { //Access image data in the onload event
img.src = reader.result; }

2. Get the pixels of the image object
The getImageData method of the image object returns an object. The rgba value of each pixel is stored under its data attribute. This is a one-bit array, that is, rgba respectively. Corresponds to a value, and then follows the rgba of the pixel. Assuming that the value of getImageData.data is [1,2,3,4,5,6,7,8], then the getImageData object range contains 2 pixels. The rgba values ​​of the first pixel are 1,2,3,4 respectively, and the rgba values ​​of the second pixel are 4,5,6,7,8. Therefore, when we get the rgba value of each pixel, its index should be multiplied by 4 on the index value of the pixel, and then calculate the grayscale through getGray().

Copy code The code is as follows:

var imgData = c.getImageData(0, 0, img .width, img.height);
var imgDataArr = imgData.data;
var imgDataWidth = imgData.width;
var imgDataHeight = imgData.height;
for (h = 0; h < imgDataHeight; h = 12) {
for (w = 0; w < imgDataWidth; w = 6) {
var index = (w imgDataWidth * h) * 4;
var r = imgDataArr[index 0];
var g = imgDataArr[index 1];
var b = imgDataArr[index 2];
}
}

3. Calculate grayscale based on rgb value
Different RGB spaces have different calculation formulas for grayscale. The formulas for calculating grayscale in several common RGB spaces are as follows:
1. Simplified sRGB IEC61966 -2.1 [gamma=2.20]
Gray = (R^2.2 * 0.2126 G^2.2 * 0.7152 B^2.2 * 0.0722)^(1/2.2)
2. Adobe RGB (1998) [gamma=2.20]
Gray = (R^2.2 * 0.2973 G^2.2 * 0.6274 B^2.2 * 0.0753)^(1/2.2)
3. Apple RGB [gamma=1.80]
Gray = (R^1.8 * 0.2446 G^1.8 * 0.6720 B^1.8 * 0.0833)^(1/1.8)
4. ColorMatch RGB [gamma=1.8]
Gray = (R^1.8 * 0.2750 G^1.8 * 0.6581 B^1.8 * 0.0670)^(1/1.8)
5. Simplified KODAK DC Series Digital Camera [gamma=2.2]
Gray = (R^2.2 * 0.2229 G^2.2 * 0.7175 B^2.2 * 0.0595)^(1/ 2.2)

Copy code The code is as follows:

// Calculate grayscale based on rgb value
function getGray(r, g, b) {
return 0.299 * r 0.578 * g 0.114 * b;
}

4. Generate corresponding characters based on grayscale
Replace different grayscales with corresponding characters. In principle, pixels with darker grayscale should use more complex characters. Specific characters can be freely replaced. This is just a Test version.
Code snippet:

Copy code The code is as follows:

// Generate corresponding characters based on grayscale
function toText(g) {
if (g <= 30) {
return '8′;
} else if ( g > 30 && g <= 60) {
                                                   } else if (g > 120 && g <= 150) {
return '*';
} else if (g > 150 && g <= 180) {
return 'o' ;
} else if (g > 180 && g <= 210) {
return '!';
} else if (g > 210 && g <= 240) {
return ';';
} else {
         return '.'; Some code snippets are given to clarify the principles, and everyone can freely play on how to implement them.
Click here to download the code

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Nested Table in HTML Nested Table in HTML Sep 04, 2024 pm 04:49 PM

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

Table Border in HTML Table Border in HTML Sep 04, 2024 pm 04:49 PM

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

HTML margin-left HTML margin-left Sep 04, 2024 pm 04:48 PM

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

HTML Table Layout HTML Table Layout Sep 04, 2024 pm 04:54 PM

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

HTML Ordered List HTML Ordered List Sep 04, 2024 pm 04:43 PM

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

Moving Text in HTML Moving Text in HTML Sep 04, 2024 pm 04:45 PM

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

HTML Input Placeholder HTML Input Placeholder Sep 04, 2024 pm 04:54 PM

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

HTML onclick Button HTML onclick Button Sep 04, 2024 pm 04:49 PM

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.

See all articles