7
8

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.

Google Colaboratory内でGoogle Drive内にある画像を表示させる方法

Last updated at Posted at 2020-08-15

#はじめに

Google Colaboratory内でGoogle Drive内にある画像を表示させる方法です。

#手順

1. ファイルをアップロードする
  表示したい画像ファイルをGoogle Driveにアップロードします。

2. 共有可能なリンクを取得する

- 表示したい画像ファイルを右クリックしてメニューを出し、「共有可能なリンクを取得」を選択する。
- この時点で、リンクはコピーバッファに入っている。
- テキストエディタなどにペーストしてみると次のような文字列が取得されていることがわかる。

https://drive.google.com/open?id=xxxxxxxxxxxxxxxxxxxxxxxxx

3. Colaboratoryでノートブックに画像を表示する
- セルを選択した後に、Markdownモードにする。
- 「<img src="https://drive.google.com/uc?export=view&」につなげて、先程取得した共有化なリンクの id 以下の文字列を貼り付ける。

<img src="https://drive.google.com/uc?# export=view&id=xxxxxxxxxxxxxxxxxxxxxxxxx" width = 30%>

- こんな感じにする。 お!できそうな予感^^

できた!^^v

##Enjoy!

7
8
0

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
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?