多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# .getContext ### RenderingContext Canvas.getContext(string contextType, Object contextAttributes) 获取画布对象的绘图上下文 #### 参数 ##### string contextType 上下文类型 **contextType 的合法值** 值说明2d2d 绘图上下文webglwebgl 绘图上下文##### Object contextAttributes webgl 上下文属性,仅当 contextType 为 webgl 时有效 属性类型默认值是否必填说明支持版本antialiasbooleanfalse否表示是否抗锯齿preserveDrawingBufferbooleanfalse否表示是否绘图完成后是否保留绘图缓冲区antialiasSamplesnumber2否抗锯齿样本数。最小值为 2,最大不超过系统限制数量,仅 iOS 支持#### 返回值 ##### RenderingContext 绘图上下文 > 原文: <https://developers.weixin.qq.com/minigame/dev/api/render/canvas/Canvas.getContext.html>