玩命加载中 . . .

Use Images in Typora


First blog

Images in Markdown

In markdown, image is written like ![alt](src). The src here can either be a url like https://octodex.github.com/images/yaktocat.png, or an absolute/relative file path, like ../images/test.png.

More Topics about Image:

[TOC]

How to insert images in Typora

Write the Markdown

You could simply write down the markdown syntax to insert the image. Or click “image” from menubar, or press the shortcut key. When you do this, and meanwhile, if there is an image url in clipboard, then the url will be inserted into the src part directly.

Drag & Drop

Of course, there’s a easier way — drag & drop, like the screencast below.

drag-img

You could also drag & drop multiple image files at one time.

Select from local files

You could click menu item EditImage ToolsInsert Local Images… from menu bar to open a dialog to select and insert local image(s).

If you use this menu item frequently, we would suggest you to re-assign the shortcut key for this “insert image” command following Custom Key Binding.

Paste images from clipboard

Since Markdown file is only plain text file, users could not insert image data into Markdown file directly, but can insert image reference to file/url.

Typora support paste image data from clipboard, after telling typora where to put those images. Typora would put image data into given folder or server, then insert images referring to that stored file or url. Please refer to section When insert local image… for more detail.

Tips: on macOS, users could copy image file from finder and then paste into typora. It has same behavior with drag and drop.

Tips: on macOS, you could also copy images from iPhone and then paste into Typora after setup the location to put image files.

When insert local image…

Typora support copying image files into given folder or web server (require iPic) when insert local images using drag & drop, or from menu bar. Following are instructions on the set-up.

Default behaviors

By default, when you insert or drag & drop a image file into Typora, we will use the path of image file for attribute src.

Use Relative Path

If you enable EditorImage InsertUse relative path if possible in preferences panel, and your writing has been saved into a file, then when you drag & drop a local image, the src attribute will be set as its relative path to current file (folder).

Copy image files to target folder when insert local image

To use this feature, you need to opt-in the option Allow copy images to given folder in preferences panel.

One common scenario is to edit *.md posts in static sites (like Jekyll) using Typora. For example, if the .*md file is put under _posts folder while the image files goes into _media folder, you may want to copy images files into folder _media when you drag/drop or paste images into Markdown file automatically. Here’s how:

  1. Save your file into some path.

  2. Enable EditorImage InsertAllow copy images to given folder in preferences panel.

    Snip20161117_2

  3. Select EditImage ToolsWhen Insert Local ImagesCopy Image File to Folder from menubar, pick the target folder.

    Snip20161117_6

In step 3, a new item typora-copy-images-to: {relative path} will be inserted into the YAML Front Matter block of current document. So you could also manually add typora-copy-images-to property in YAML Front Matter to enable this behaviour.

After that, if you drag & drop local images or paste images into Typora, the image file will be copied into the target file and update related src.

Upload image file to web server. (macOS only)

Requirements: macOS ≥ 10.11 and iPic to be installed. If you want to enable upload images automatically when typora-copy-images-to: ipic is set in YAML, option “Allow upload images automactially based on YAML settings” must be enabled first.

Warning: By default, iPic will upload images to a public web server anonymously, and you won’t be able to delete image files from that web server once you upload into it. So please config iPic in advance if you want to enable this feature and control all image files you uploaded.

Here’s how to enable this function:

  1. Install iPic and config a proper online image service.
  2. Enable EditorImage InsertAllow copy images to given folder in preferences panel.
  3. Check item EditImage ToolsWhen Insert Local ImagesUpload Image via iPic from menubar.

In step 3, a new item typora-copy-images-to: ipic will be inserted into the YAML Front Matter block of current document.

So you could also manually add typora-copy-images-to: ipic property in YAML Front Matter to enable this behaviour.

Tips: If you want to move image file to folder ipic, you should use typora-copy-images-to: ./ipic.

Display images in relative path

Relative path to current file/folder (default behavior)

By default, users could refer to local image by relative path to current *.md file. For example, if the *.md file is at /User/typora/desktop/test.md, then the ![img](image.png) will display image from /User/typora/desktop/image.png just like the <img> tag in HTML. Also, for ../download/image.png, image from /User/typora/download/image.png will be fetched.

Relative path to certain folder

If you’re using markdown for building websites, you may specify a url prefix for image preview in local computer with property typora-root-url in YAML Front Matters.

For example, input typora-root-url:/User/Abner/Website/typora.io/ in YAML Front Matters, and then ![alt](/blog/img/test.png) will be treated as ![alt](file:///User/Abner/Website/typora.io/blog/img/test.png) in typora.

In new version, instead of manually input typora-root-url property, you could just click item from menubar EditImage ToolsUse Image Root Path to tell Typora to generate typora-root-url property automatically.

Upload images to cloud server (macOS only)

Introduction to iPic

ipic

iPic is an app which allows you to upload local images into various cloud service, including Imgur, Flickr, Amazon S3, etc, and return you a web url of the uploaded image for public access. You could find detailed documents here.

With the integration of iPic, users could share markdown file to others without packaging local images along with the plain text file. And users can stop caring about where to put local images or how to refer local images using relative path, since they can simply upload used images into cloud server.

System requirements and preparation

  1. This feature only supports macOS ≥ 10.11.
  2. Must install latest version of iPic.
  3. Configure web server in iPic.

Upload all local images to cloud server

Typora provides a function to upload all local images to cloud server via iPic. To use it, simply, check EditImage ToolsUpload Local Images via iPic from menubar and wait for the uploading process to be finished.

Upload when inserting images

How-tos for this part can be found in section When insert local image… → Upload image file to web server. (macOS only).

Align images

Currently Typora does not support image alignment. But you could use HTML code like <center>![img](src)</center> to align images on exported HTML or PDF.

Also, by default, if one paragraph only contains one image, it will be center aligned. It is controlled by CSS, and can be reverted by add custom CSS:

p .md-image:only-child{
    width: auto;
    text-align: inherit;
}

Resize images

Please check this link.


文章作者: 黑客帝国
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 黑客帝国 !
评论
 本篇
Use Images in Typora Use Images in Typora
First blogImages in MarkdownIn markdown, image is written like ![alt](src). The src here can either be a url like https:
2020-05-08 黑客帝国
下一篇 
Hello World Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hex
2020-05-06 黑客帝国
  目录