简体   繁体   中英

In jcanvas how to manipulate drawImage layer to apply instagram like filters on the image

I have drawn a image on canvas using jcanvas drawImage method and this image is a layer

//Js part

$('canvas').drawImage({
      source: 'js/BN44094.jpg',
      layer: true,
      x: 0, y: 0,
      width: 800,
      height: 400,
      name: 'backImage',
      fromCenter: false
    });

//Html Part

<canvas id="canvas" width=800 height=400></canvas>

I want to apply instagram like image filters on this image, can some one guide me with this??

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM