我正在GitHub上写一个维基页面,我正在使用Markdown。

我的问题是我放了一个大的图像(这个图像在它自己的存储库中),我需要调整它的大小。

我尝试过不同的解决方案,但都不奏效:

![image](http://url.to/image.png "Title" {width=40px height=400px})

![image](http://url.to/image.png = 250x250)

![image](http://url.to/image.png = 250x)

[[http://url.to/image.png = 250x]]

有办法拿到它吗?

它最好没有HTML。


当前回答

我使用了上面描述的方法。现在我使用的方法是一个类似的方式,但对我来说更简单。

首先创建并添加README。Md文件到您的项目。 然后将截图或任何需要的描述图像上传到项目主目录。 上传图像资产后,使用html直接引用这些资产,而不使用下面的链接

是这样的:

<img src="icon.jpg" width="324" height="324">

<p align="center">
  <img src="screen1.png" width="256" height="455">
  <img src="screen2.png" width="256" height="455">
  <img src="screen3.png" width="256" height="455">
</p>

在上面的例子中,我使用段落来并排对齐图像。如果你打算使用单个图像,只需使用下面的代码

<img src="icon.jpg" width="324" height="324">

祝你有愉快的一天!

其他回答

在GitHub上,你可以直接使用HTML而不是Markdown:

<a href="url"><img src="http://url.to/image.png" align="left" height="48" width="48" ></a>

这样应该可以了。

你可以试着把图片放到markdown的表格中,像这样:

| ![Kiku](docs/snapshot/home.jpeg)        | ![Kiku](docs/snapshot/sub.jpeg) |
| --------------------------------------- | --------------------------------------- |
| ![Kiku](docs/snapshot/user-center.jpeg) |                                         |

它将使图像布局像网格,但它不能自定义每一个单一的图像大小。

调整大小百分比宽度=50%高度=50%。例子:

<img src="https://i.imgur.com/ZWnhY9T.png" width=50% height=50%>

调整像素宽度="150"高度="280"。例子:

<img src="https://i.imgur.com/ZWnhY9T.png" width="150" height="280">

一些技巧

To get a githubusercontent link for an image, drag and drop the image into any issue, and copy/paste the url from the code that is automatically generated. Example code: ![image](https://user-images.githubusercontent.com/16319829/81180309-2b51f000-8fee-11ea-8a78-ddfe8c3412a7.png) There is no way to change the size of an image if the markdown format is of the form []() - so stop looking right now! - you must use <img> instead Another useful summary of conventions that do and don't work here All of the above is from here

更新:

图像的Markdown语法(外部/内部):

![test](https://github.com/favicon.ico)

缩放图像(内部/外部)的HTML代码:

<img src="https://github.com/favicon.ico" width="48">

例子:


旧的回答:

这应该可以工作:

[[http://url.to/image.png | height = 100px]]

来源:https://guides.github.com/features/mastering-markdown/

这解决了不同的问题,如何得到图片在主旨(而不是github) markdown在第一时间? 在2015年12月,似乎只有链接到文件上 Github.com或者cloud。githubusercontent.com之类的网站。 对我有用的步骤是:

做一个主旨,说Mygist。Md(可选的更多文件) 转到最后的“写评论”框 点击“附加文件…”通过选择他们”;选择本地镜像文件 GitHub在放置图像的地方回声一个很长的字符串,例如。 ! [khan-lasso-squared] (https://cloud.githubusercontent.com/assets/1280390/12011119/596fdca4 - acc2 - 11 - 84 e5 d0 - 4878164 - e04bb.png) 手工剪切粘贴到mygit .md中。

但是:GitHub的人明天可能会改变这种行为,而不会记录它。