Home > Web Front-end > H5 Tutorial > Tutorial on using HTML5 Canvas to fill images with color and texture_html5 tutorial tips

Tutorial on using HTML5 Canvas to fill images with color and texture_html5 tutorial tips

WBOY
Release: 2016-05-16 15:45:33
Original
2647 people have browsed it

Fill Color

Art is inseparable from color. Today we will introduce filling color and experience the charm of color.
There are two main types of fill colors:

1. Basic color
2. Gradient color (also divided into linear gradient and radial gradient)

Let’s look at them one by one.


Fill basic color
The Canvas fillStyle property is used to set the basic color and fill of the shape on the canvas. fillStyle uses simple color names. This looks very simple, for example:

JavaScript CodeCopy content to clipboard
  1. context.fillStyle = "red";

The following is a list of sixteen available color string values ​​from the HTML4 specification. Since HTML5 does not modify the exclusive colors, HTML4 colors can be displayed correctly in HTML5.
2016321111603054.png (664×656)

All of these color values ​​can be applied to the strokeStyle and fillStyle properties.
Okay, let me summarize the method of filling basic colors: (can also be used for strokeStyle attribute)
(1) Use color string filling.

JavaScript CodeCopy content to clipboard
  1. context.fillStyle = "red";

(2) Use hexadecimal digit string padding.

JavaScript CodeCopy content to clipboard
  1. context.fillStyle = "#FF0000";

(3) Fill with hexadecimal digit string abbreviation.

JavaScript CodeCopy content to clipboard
  1. context.fillStyle = "#F00";

(4) Use the rgb() method to set the color.

JavaScript CodeCopy content to clipboard
  1. context.fillStyle = "rgb(255,0,0)";

(5) Use the rgba() method to set the color.
JavaScript CodeCopy content to clipboard

  1. context.fillStyle = "rgba(255,0,0,1)";

The last parameter of this method is the alpha value, and the transparency range is 1 (opaque) ~ 0 (transparent).
(6) Use the hsl() method to set the color.

JavaScript CodeCopy content to clipboard
  1. context.fillStyle = "hsl(0,100%,50%)";

HSL represents the color of the three channels of hue (H), saturation (S), and lightness (L).
(7) Use the hsla() method to set the color.

JavaScript CodeCopy content to clipboard
  1. context.fillStyle = "hsla(0,100%,50%,1)";

The above 7 sentences of code are all filled with "#FF0000" in red.


Fill Gradient Shape
There are two basic options for creating a gradient fill on the canvas: linear or radial. Linear gradients create a horizontal, vertical, or diagonal fill pattern. Radial gradients create a radial fill from a center point. There are three steps to filling a gradient shape: add a gradient line, add a key color to the gradient line, and apply the gradient. Here are some examples of them.
Linear Gradient
Three Step Strategy:
Add Gradient Lines:

JavaScript CodeCopy content to clipboard
  1. var grd = context.createLinearGradient(xstart,ystart,xend,yend);


Add a key color to the gradient line (similar to a color breakpoint):

JavaScript CodeCopy content to clipboard
  1. grd.addColorStop(stop,color);


The stop here is a floating point number from 0 to 1, which represents the proportion of the distance from the breakpoint to (xstart, ystart) to the entire gradient length.

Apply gradient:

JavaScript CodeCopy content to clipboard
  1. context.fillStyle = grd;
  2. context.strokeStyle = grd;


Write a code to take a look.

JavaScript CodeCopy content to clipboard
  1. "zh">
  2. "UTF-8">
  3. Fill linear gradient
  4. "canvas-warp">
  5. "canvas" style="border: 1px solid #aaaaaa; display: block; margin: 50px auto ;">
  6. Your browser doesn’t support Canvas? ! Change it quickly! !
  • <script> </span></li> <li class="alt"> <span> window.onload = </span><span class="keyword">function</span><span>(){ </span> </li> <li> <span> </span><span class="keyword">var</span><span> canvas = document.getElementById(</span><span class="string">"canvas"</span><span>); </span> </li> <li class="alt"><span> canvas.width = 800; </span></li> <li><span> canvas.height = 600; </span></li> <li class="alt"> <span> </span><span class="keyword">var</span><span> context = canvas.getContext(</span><span class="string">"2d"</span><span>); </span> </li> <li><span> </span></li> <li class="alt"><span> context.rect(200,100,400,400); </span></li> <li><span> </span></li> <li class="alt"> <span> </span><span class="comment">//Add gradient line </span><span> </span> </li> <li> <span> </span><span class="keyword">var</span><span> grd = context.createLinearGradient(200,300,600,300); </span> </li> <li class="alt"><span> </span></li> <li> <span> </span><span class="comment">//Add color breakpoints </span><span> </span> </li> <li class="alt"> <span> grd.addColorStop(0,</span><span class="string">"black"</span><span>); </span> </li> <li> <span> grd.addColorStop(0.5,</span><span class="string">"white"</span><span>); </span> </li> <li class="alt"> <span> grd.addColorStop(1,</span><span class="string">"black"</span><span>); </span> </li> <li><span> </span></li> <li class="alt"> <span> </span><span class="comment">//Apply gradient </span><span> </span> </li> <li><span> context.fillStyle = grd; </span></li> <li class="alt"><span> </span></li> <li><span> context.fill(); </span></li> <li class="alt"><span> </span></li> <li><span> } </span></li> <li class="alt"><span></script>
  • Run result:
    2016321112313533.jpg (850×500)

    I think it is necessary to make an illustration so that everyone can understand the gradient at one time.
    2016321112349410.jpg (850×500)

    In order to facilitate understanding, it is recommended to regard the gradient line as a directed line segment. If you are familiar with drawing tools such as PS and have used the gradient settings, you should have a good understanding.
    The starting point and end point of the gradient line here do not have to be within the image, and the position of the color breakpoint is the same. But if the range of the image is larger than the gradient line, then outside the range of the gradient line, the color of the breakpoint closest to the endpoint will be automatically filled.
    Here is another example with two supplementary functions.

    Quick way to draw a rectangle

    JavaScript CodeCopy content to clipboard
    1. fillRect(x,y,width,height)、stroke(x,y,width,height)。这两个函数可以分别看做rect()与fill()以及rect()与stroke()的组合。因为rect()仅仅只是规划路径而已,而这两个方法确实实实在在的绘制。   
    2.   
    3. "zh">   
    4.   
    5.     "UTF-8">   
    6.     填充线性渐变   
    7.   
    8.   
    9. "canvas-warp">   
    10.     "canvas" style="border: 1px solid #aaaaaa; display: block; margin: 50px auto;">   
    11.         你的浏览器居然不支持Canvas?!赶快换一个吧!!   
    12.        
  • <script> </span></li> <li> <span> window.onload = </span><span class="keyword">function</span><span>(){ </span> </li> <li class="alt"> <span> </span><span class="keyword">var</span><span> canvas = document.getElementById(</span><span class="string">"canvas"</span><span>); </span> </li> <li><span> canvas.width = 800; </span></li> <li class="alt"><span> canvas.height = 600; </span></li> <li> <span> </span><span class="keyword">var</span><span> context = canvas.getContext(</span><span class="string">"2d"</span><span>); </span> </li> <li class="alt"><span> </span></li> <li> <span> </span><span class="comment">//Add gradient line </span><span> </span> </li> <li class="alt"> <span> </span><span class="keyword">var</span><span> grd = context.createLinearGradient(100,300,700,300); </span> </li> <li><span> </span></li> <li class="alt"> <span> </span><span class="comment">//Add color breakpoints </span><span> </span> </li> <li> <span> grd.addColorStop(0,</span><span class="string">"olive"</span><span>); </span> </li> <li class="alt"> <span> grd.addColorStop(0.25,</span><span class="string">"maroon"</span><span>); </span> </li> <li> <span> grd.addColorStop(0.5,</span><span class="string">"aqua"</span><span>); </span> </li> <li class="alt"> <span> grd.addColorStop(0.75,</span><span class="string">"fuchsia"</span><span>); </span> </li> <li> <span> grd.addColorStop(0.25,</span><span class="string">"teal"</span><span>); </span> </li> <li class="alt"><span> </span></li> <li> <span> </span><span class="comment">//Apply gradient </span><span> </span> </li> <li class="alt"><span> context.fillStyle = grd; </span></li> <li><span> context.strokeStyle = grd; </span></li> <li class="alt"><span> </span></li> <li><span> context.strokeRect(200,50,300,50); </span></li> <li class="alt"><span> context.strokeRect(200,100,150,50); </span></li> <li><span> context.strokeRect(200,150,450,50); </span></li> <li class="alt"><span> </span></li> <li><span> context.fillRect(200,300,300,50); </span></li> <li class="alt"><span> context.fillRect(200,350,150,50); </span></li> <li><span> context.fillRect(200,400,450,50); </span></li> <li class="alt"><span> </span></li> <li><span> context.fillRect(0,550,800,25); </span></li> <li class="alt"><span> </span></li> <li><span> } </span></li> <li class="alt"><span></script>
  • Run result:
    2016321113029539.jpg (850×500)

    Both pages have horizontal gradients, but it should be clear that linear gradients are not necessarily horizontal, and the direction can be arbitrary. The direction is set through the endpoints of the gradient line.

    Radial Gradient
    It is also a three-step strategy, but the method used in the first step has changed.
    Add gradient circle:

    JavaScript CodeCopy content to clipboard
    1. var grd = context.createRadialGradient(x0,y0,r0,x1,y1,r1);

    Add a key color to the gradient line (similar to a color breakpoint):

    JavaScript CodeCopy content to clipboard
    1. grd.addColorStop(stop,color);


    Apply gradient:

    JavaScript CodeCopy content to clipboard
    1. context.fillStyle = grd;
    2. context.strokeStyle = grd;


    A linear gradient is defined based on two endpoints, but a radial gradient is defined based on two circles.
    Let’s rewrite Example 7-2.

    JavaScript CodeCopy content to clipboard
    1. "zh">
    2. "UTF-8">
    3. Fill Radial Gradient
    4. "canvas-warp">
    5. "canvas" style="border: 1px solid #aaaaaa; display: block; margin: 50px auto ;">
    6. Your browser doesn’t support Canvas? ! Change it quickly! !
  • <script> </span></li> <li class="alt"> <span> window.onload = </span><span class="keyword">function</span><span>(){ </span> </li> <li> <span> </span><span class="keyword">var</span><span> canvas = document.getElementById(</span><span class="string">"canvas"</span><span>); </span> </li> <li class="alt"><span> canvas.width = 800; </span></li> <li><span> canvas.height = 600; </span></li> <li class="alt"> <span> </span><span class="keyword">var</span><span> context = canvas.getContext(</span><span class="string">"2d"</span><span>); </span> </li> <li><span> </span></li> <li class="alt"> <span> </span><span class="comment">//Add gradient line </span><span> </span> </li> <li> <span> </span><span class="keyword">var</span><span> grd = context.createRadialGradient(400,300,100,400,300,200); </span> </li> <li class="alt"><span> </span></li> <li> <span> </span><span class="comment">//Add color breakpoints </span><span> </span> </li> <li class="alt"> <span> grd.addColorStop(0,</span><span class="string">"olive"</span><span>); </span> </li> <li> <span> grd.addColorStop(0.25,</span><span class="string">"maroon"</span><span>); </span> </li> <li class="alt"> <span> grd.addColorStop(0.5,</span><span class="string">"aqua"</span><span>); </span> </li> <li> <span> grd.addColorStop(0.75,</span><span class="string">"fuchsia"</span><span>); </span> </li> <li class="alt"> <span> grd.addColorStop(0.25,</span><span class="string">"teal"</span><span>); </span> </li> <li><span> </span></li> <li class="alt"> <span> </span><span class="comment">//Apply gradient </span><span> </span> </li> <li><span> context.fillStyle = grd; </span></li> <li class="alt"><span> </span></li> <li><span> context.fillRect(100,100,600,400); </span></li> <li class="alt"><span> </span></li> <li><span> </span></li> <li class="alt"><span> } </span></li> <li><span></script>
  • Run result:
    2016321113454037.jpg (850×500)

    Why do you feel that this color combination is so...forget it, this is called art.
    createRadialGradient(x0,y0,r0,x1,y1,r1); method specifies the start and end range of the radial gradient, that is, the gradient between two circles.
    To summarize, in this lesson we learned about fillStyle, createLinearGradient(), createRadialGradient(), addColorStop(), fillRect(), strokeRect() and other attributes and methods, and introduced in detail the filling of basic colors, linear gradients, and radial gradient.
    Okay, now that we have learned how to color, let’s use colors to our heart’s content and draw our own artwork!

    Fill texture

    Introduction to createPattern()
    Texture is actually a repetition of the pattern, and the fill pattern is initialized through the createPattern() function. It needs to pass in two parameters createPattern(img,repeat-style), the first is an Image object instance, and the second parameter is a String type, indicating how to display the repeat pattern in the shape. You can use this function to load an image or the entire canvas as a fill pattern for a shape.
    There are the following 4 image fill types:

    1. Repeat on the plane: repeat;
    2. Repeat on the x-axis: repeat-x;
    3. Repeat on the y-axis: repeat-y;
    4. Do not use repeat: no- repeat;

    In fact, the first parameter of createPattern() can also be passed in a canvas object or video object. Here we only explain the Image object, and you can try the rest by yourself.


    Create and fill patterns
    First look at how to load images:

    Create an Image object
    Specify the image source for the Image object

    The code is as follows:

    JavaScript CodeCopy content to clipboard
    1. var img = new Image(); //Create Image object
    2. img.src = "8-1.jpg"; //Specify the image source for the Image object

    Extension: The relative path in HTML
    '../directory or file name' or 'directory or file name' refers to the path of the directory where the currently operated file is located
    '../directory or file name' It refers to the path of the directory above the directory where the currently operated file is located

    Fill texture afterwards:

    JavaScript CodeCopy content to clipboard
    1. var pattern = context.createPattern(img,"repeat");
    2. context.fillStyle = pattern;

    Let’s look directly at a complete program. Here I want to repeatedly fill in this cute giraffe as a texture. It should be noted that when selecting pictures, you must choose pictures that communicate with each other from left to right and from top to bottom as texture, so that there will be no unnatural short connections.
    2016321113732587.jpg (321×400)

    Code provided below.

    JavaScript CodeCopy content to clipboard
    1. "zh">
    2. "UTF-8">
    3. Fill texture
    4. "canvas-warp">
    5. "canvas" style="border: 1px solid #aaaaaa; display: block; margin: 50px auto ;">
    6. Your browser doesn’t support Canvas? ! Change it quickly! !
  • <script> </span></li> <li class="alt"> <span> window.onload = </span><span class="keyword">function</span><span>(){ </span> </li> <li> <span> </span><span class="keyword">var</span><span> canvas = document.getElementById(</span><span class="string">"canvas"</span><span>); </span> </li> <li class="alt"><span> canvas.width = 800; </span></li> <li><span> canvas.height = 600; </span></li> <li class="alt"> <span> </span><span class="keyword">var</span><span> context = canvas.getContext(</span><span class="string">"2d"</span><span>); </span> </li> <li><span> </span></li> <li class="alt"> <span> </span><span class="keyword">var</span><span> img = </span><span class="keyword">new</span><span> Image(); </span> </li> <li> <span> img.src = </span><span class="string">"8-1.jpg"</span><span>; </span> </li> <li class="alt"> <span> img.onload = </span><span class="keyword">function</span><span>(){ </span> </li> <li> <span> </span><span class="keyword">var</span><span> pattern = context.createPattern(img, </span><span class="string">"repeat"</span><span>); </span> </li> <li class="alt"><span> context.fillStyle = pattern; </span></li> <li><span> context.fillRect(0,0,800,600); </span></li> <li class="alt"><span>                                                               </span></li> <li><span> </span></li> } <li class="alt"><span> </span></li></script>
  • Run result:


    2016321113752010.jpg (850×500)The onload event of Image is used here. Its function is to preload the image, that is, the code body of the subsequent function will be removed immediately after the image is loaded. This is necessary, if not written, the canvas will display a black screen. Because the texture is filled without waiting for the image to be loaded, the browser cannot find the image.

    "repeat" is used here. Children's shoes can also try using the other three values ​​to see what different effects there will be. You can also find other pictures to try filling in and see the effect.


    Related labels:
    source:php.cn
    Previous article:Image compression upload on html5 canvas mobile browser_html5 tutorial skills Next article:HTML5 implements multiple image upload function_html5 tutorial skills
    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
    Latest Articles by Author
    Latest Issues
    Related Topics
    More>
    Popular Recommendations
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template