


Convert pictures into character paintings through javascript_javascript skills
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
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().
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)
// 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:
// 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

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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.

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

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

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

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

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

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

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