如何在Github / Markdown中更改图像的大小?

时间:2016-05-30 22:56:30

标签: html github markdown

我正在编辑Github存储库中的Readme.md文件,并插入了一张图片(参见https://github.com/khpeek/FMCW-radar)。图片占据了整个宽度,但是这种方式相当粗糙,我宁愿让它更小。有没有办法做到这一点?

P.S。我已经尝试过这些命令了 How to change image size Markdown?,但它们似乎不起作用。

2 个答案:

答案 0 :(得分:5)

您必须在图像编辑器中缩小图像尺寸。你不能在GitHub的降价风格上改变图像大小。

另外:The image已经非常粗糙,这不是因为它的尺寸变化。

答案 1 :(得分:2)

您可以通过使用HTML img标签中的图像链接来更改GitHub markdown中图像的大小:

从此:

![image](https://user-images.githubusercontent.com/link-to-your-image.png)

对此:

<img src="https://user-images.githubusercontent.com/link-to-your-image.png" width="200" />