嗨,我是 camanjs 的新手。
我用这段代码操作画布。
function vintage(id){
Caman(id, function(){
//I just added this code to reset the canvas to its original state
this.revert();
//----------------------------
this.vintage();
this.render();
});
}
使用代码this.revert(); ,我可以把画布恢复到原来的状态。如果我使用多个效果和预设,并且只想将画布恢复到上次使用的效果,该怎么办?