No description
Find a file
2025-04-23 13:04:00 +08:00
.github update deps 2024-12-19 20:10:35 +08:00
assets [ImgBot] Optimize images 2024-04-02 00:49:33 +00:00
src feat: 新增可自由调节上下左右的边框的功能 2025-04-22 10:03:04 +08:00
types feat: test whether the image format can be copied 2024-04-16 17:05:49 +08:00
.editorconfig init 2022-10-18 21:27:29 +08:00
.eslintrc.js feat: test whether the image format can be copied 2024-04-16 17:05:49 +08:00
.gitignore chore: remove files 2024-04-17 14:28:50 +08:00
.npmrc Initial commit 2022-10-17 14:57:16 +08:00
.typesafe-i18n.json feat: test whether the image format can be copied 2024-04-16 17:05:49 +08:00
.xo-config.js feat: add many languages 2024-04-16 19:10:07 +08:00
esbuild.config.mjs 优化导出图片 2025-02-07 15:50:41 +08:00
LICENSE chore: bump version 2024-04-08 12:05:02 +08:00
main.js.LEGAL.txt add feature: split long image 2024-12-29 21:06:41 +08:00
main.ts feat: test whether the image format can be copied 2024-04-16 17:05:49 +08:00
manifest.json 2.4.4 2025-02-17 20:30:06 +08:00
package-lock.json feat: 新增分辨率模式的多分辨率图像选择 2025-04-21 14:56:21 +08:00
package.json feat: 新增分辨率模式的多分辨率图像选择 2025-04-21 14:56:21 +08:00
pnpm-lock.yaml Bump @babel/runtime in the npm_and_yarn group across 1 directory 2025-03-18 09:21:29 +00:00
README.md update readme 2025-02-17 21:49:23 +08:00
styles.css feat: 新增加载过程中的动画 2025-04-22 09:02:45 +08:00
tsconfig.json feat: test whether the image format can be copied 2024-04-16 17:05:49 +08:00
type.d.ts feat: test whether the image format can be copied 2024-04-16 17:05:49 +08:00
version-bump.mjs feat: test whether the image format can be copied 2024-04-16 17:05:49 +08:00
versions.json 2.4.4 2025-02-17 20:30:06 +08:00

obsidian-export-image

Obsidian Export Image Plugin

GitHub Release GitHub Downloads (all assets, all releases)

This Obsidian plugin can easily help you export any article as an image.

Features

  • Camera Export any article as an image, with the option to save it as a local image file or copy it to the clipboard.
  • Locked with Pen Support adding watermarks, both text and image watermarks, to protect your copyrights.
  • Identification Card Support adding author information (avatar, name, etc.) for easier sharing and dissemination.
  • Mobile Phone Support outputting images at twice the resolution for clearer display on high PPI devices like smartphones.
  • Straight Ruler Support adjusting the image width to cater to different scenarios, such as exporting images suitable for viewing on mobile devices or ensuring readability when embedding images in articles.
  • Level Slider Offer flexible configuration options with a convenient WYSIWYG (What You See Is What You Get) interface.
  • Bookmark Tabs Support exporting selected content as an image.
  • Card Index Dividers Support for batch exporting all notes in a folder as images.
  • Receipt Support displaying obsidian metadata.
  • Yo-Yo Support split long articles into multiple images.

Usage

Use the command export as a image in command palette (Press cmd/ctrl+P to enter the command) to generate a image. You can download it to your file system, or copy to clipboard.

Also, you can access this function from the editor menu:

Note

Due to device limitations, exporting images on mobile can only be saved to the current vault.

Installation

Obsidian

Search Export Image in community plugins.

Custom Styles

To help experienced users write their own CSS styles, here is the combined DOM structure of the exported image.

<!-- Export Image Root -->
<div class="export-image-root markdown-reading-view">
  <!-- Watermark Container -->
  <div class="markdown-preview-view markdown-rendered export-image-preview-container">
    <!-- Inline Title -->
    <div class="inline-title"></div>
    <!-- Metadata -->
    <div class="metadata-container">
      <div class="metadata-content">
        <!-- Metadata Items -->
        <div class="metadata-property">
          <!-- Metadata Key -->
          <div class="metadata-property-key">
            <!-- Metadata Icon -->
            <span class="metadata-property-icon"></span>
            <!-- Metadata Name -->
            <span class="metadata-property-name"></span>
          </div>
          <!-- Metadata Value -->
          <div class="metadata-property-value"></div>
        </div>
      </div>
    </div>
    
    <!-- Note Content -->
    <div>...</div>
  </div>
  
  <!-- Author Info -->
  <div class="user-info-container">
    <!-- Author Avatar -->
    <div class="user-info-avatar"></div>
    <div>
      <!-- Author Name -->
      <div class="user-info-name"></div>
      <!-- Extra Info -->
      <div class="user-info-remark"></div>
    </div>
  </div>
</div>

Star History

Star History Chart

Special Thanks

My Other Obsidian Plugins