skills_office

skills_office

1 mate20,微信内容存储路径

安卓版微信中的文件,点击手动下载后的默认存储路径: /Phone/Download/WeiXin/
安卓版微信中的图片,点击手动下载后的默认存储路径: /Phone/Pictures/WeiXin/
其中,/Phone/ 表示 手机内置存储的根目录。

2 typora自定义图片大小

  1. 需要使用支持图片大小更改操作的 Mou 编辑器(未测试)
    ![](assets/1558232908565.png =60x50)

  2. 使用html的标签(有效)

<img src=“url” style=“200px height:300px” />  # width和height的值为图片的宽和高
<img src="http://p1-ks3.532106.com/33f925f1f92649678221088fdfb531a1.jpg" alt="图片替换文本" width="500" height="313" align="bottom" />
<img src=“url” style=“zoom:50” /> #zoom的值为图片缩放的百分值,比如zoom:50表示缩小50%
<img src="assets/1558232980575.png" width="60%" height="60%">

reference:https://www.zhihu.com/question/331998578/answer/1359134059

  1. 直接在图片后面加上对应的CSS样式(无效)
![test image size](url){:class="img-responsive"}
![test image size](url){:height="50%" width="50%"}
![test image size](url){:height="100px" width="400px"}

reference: https://www.zhihu.com/question/23378396

3

原文地址:https://www.cnblogs.com/mediocreWorld/p/15145851.html