7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

送るメニューから画像をクリップボードにコピーする

Posted at

画像ファイルをクリップボードにコピーしたいとき

  1. ファイルを右クリック
  • 編集で開く
  • Ctrl+Aで全選択
  • Ctrl+Cでコピー

面倒なので、一発でクリップボードにコピーしたい!

というわけで、これ

画像をクリップボードにコピーする
PowerShell -Command Add-Type -AssemblyName System.Windows.Forms;[Windows.Forms.Clipboard]::SetImage([System.Drawing.Image]::FromFile('%~1'));

このコマンドをBATファイルにして送るメニューに置く

送るメニューは「ファイル名を指定して実行」から「Shell:sendto」でフォルダーを開く。
image.png

右クリックするとこんな感じ。
image.png

7
5
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?