首页 > 微信 > 详细

creator2.0.2 native游戏截屏微信分享

时间:2019-01-11 19:50:25      阅读:491      评论:0      收藏:0      [点我收藏+]
cocos creator 2.0.2后 游戏内截屏,native微信SDK分享代码:
public static wxShareScreenShot(sType: number) {
  let node = new cc.Node();
  node.parent = cc.director.getScene();
  node.width = cc.view.getVisibleSize().width;
  node.x = cc.view.getVisibleSize().height;
  node.y = cc.view.getVisibleSize().width;
  node.height = cc.view.getVisibleSize().height;
  let camera = node.addComponent(cc.Camera);
  camera.cullingMask = 0xffffffff;
  let texture = new cc.RenderTexture();
  texture.initWithSize(node.width, node.height);
  camera.targetTexture = texture;
  camera.render(null);
  let data = texture.readPixels();
  let width = texture.width;
  let height = texture.height;
  data = this.filpYImage(data, width, height)
  let fileName = "result_share.jpg";
  let fullPath = jsb.fileUtils.getWritablePath() + fileName;
  if (jsb.fileUtils.isFileExist(fullPath)) {
    jsb.fileUtils.removeFile(fullPath);
  }
  let success = jsb.saveImageData(data, width, height, fullPath);
  if (success) {
    if(this.isAndroid){  
      jsb.reflection.callStaticMethod("org/cocos2dx/javascript/AppActivity", "shareScreenShot","(Ljava/lang/String;Ljava/lang/String;)V",fullPath,sType.toString())
  }
  if (this.isIOS){
    jsb.reflection.callStaticMethod("VXManager", "shareScreenShot:" , sType.toString());
  }
  camera.destroy();
  texture.destroy();
  }
}

creator2.0.2 native游戏截屏微信分享

原文:https://www.cnblogs.com/shwhr/p/10256700.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!