Results 74 comments of 华丽

#159 , I'm waiting for the code review.

Reference [使用CANVAS压缩JPG图片丢失EXIF信息问题](http://www.dirk.wang/2019/08/16/canvas%E5%8E%8B%E7%BC%A9jpg%E4%B8%A2%E5%A4%B1exif/) .

@fengyuanchen Thanks for the reply. In my case, I use this lib to build a browser-side image compress website, I hope that the users can choose whether or not to...

由于我的电脑没有 GPU ,所以我本机测试只用了 CPU 处理文件,不知道使用 GPU 会不会有什么bug 。

我在 Windows 上的沙盒环境试了一下,提示 ``` None of PyTorch, TensorFlow >= 2.0, or Flax have been found. Models won't be available and only tokenizers, configuration and file/data utilities can be used. ```...

[#334](https://github.com/kamranahmedse/driver.js/pull/344)

@sinnsofyoureson Hi, I get a way to solve this problem, here is code. ```js let image = new Image(); let open_result = window.cep.fs.readFile("local_image_url", "Base64"); if (0 != open_result.err){ console.log("Get error...

可以试试这样处理 ```js highlighter.hooks.Render.SelectedNodes.tap((id, nodes) =>{ const filteredNodes = nodes.filter(node => { if(node.type == 'text' && node.$node.data.trim() == '') { return false; } return true; }); return filteredNodes; }); ```