peach.js 用法 通过实例化Peach实例创建渲染器: var width = 320 ; var height = 240 ; var palette = [ 0xff0000 , 0x00ff00 , 0x0000ff ] ; var renderer = new Peach ( width , height , palette ) ; 从那里,您可以手动设置像素并进行渲染: var x = 20 ; var y = 30 ; var paletteIndex = 2 ; // use the index 2 palette color, blue in this case r