- PIL(Python Imaging Library)を使用する方法: PILは、Pythonで画像処理を行うための人気のあるライブラリです。以下のコードは、PILを使用してクリップボードのテキストを画像に変換する例です。
from PIL import Image, ImageDraw, ImageFont
import pyperclip
# クリップボードのテキストを取得
text = pyperclip.paste()
# 画像の大きさを設定
width, height = 400, 200
# 画像を作成
image = Image.new('RGB', (width, height), color=(255, 255, 255))
draw = ImageDraw.Draw(image)
# テキストを画像に描画
font = ImageFont.truetype("arial.ttf", 20)
draw.text((10, 10), text, fill=(0, 0, 0), font=font)
# 画像を保存
image.save("clipboard_image.png")
- pyperclipを使用する方法: pyperclipは、クリップボードの操作を簡単に行うためのライブラリです。以下のコードは、pyperclipを使用してクリップボードのテキストを画像に変換する例です。
import pyperclip
from PIL import Image, ImageDraw, ImageFont
# クリップボードのテキストを取得
text = pyperclip.paste()
# 画像の大きさを設定
width, height = 400, 200
# 画像を作成
image = Image.new('RGB', (width, height), color=(255, 255, 255))
draw = ImageDraw.Draw(image)
# テキストを画像に描画
font = ImageFont.truetype("arial.ttf", 20)
draw.text((10, 10), text, fill=(0, 0, 0), font=font)
# 画像を保存
image.save("clipboard_image.png")
これらのコード例では、クリップボードのテキストを取得し、それを指定した大きさの画像に描画して保存しています。pillow
とpyperclip
ライブラリを使用していますので、事前にそれらのライブラリをインストールしておく必要があります。
このようにして画像に変換されたテキストは、指定したファイル名(上記の例では"clipboard_image.png")で保存されます。