File size: 3,178 Bytes
e4643b9
 
6c1d814
 
 
 
 
e4643b9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0c12dc2
602cdfd
 
6c1d814
c3b7bd1
 
 
 
 
 
 
93d4d7b
c3b7bd1
 
 
93d4d7b
 
c3b7bd1
 
 
 
 
 
 
2186a8a
602cdfd
 
 
3b2cada
602cdfd
93d4d7b
 
 
6c1d814
93d4d7b
 
602cdfd
93d4d7b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
602cdfd
93d4d7b
602cdfd
 
 
c3b7bd1
602cdfd
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import os
import requests
from flask import Flask, request, send_file
from selenium import webdriver
from selenium.common.exceptions import WebDriverException
from PIL import Image
from io import BytesIO

# フォントをダウンロードする関数
def download_noto_sans_cjk():
    url = "https://noto-website-2.storage.googleapis.com/pkgs/NotoSansCJKjp-hinted.zip"
    response = requests.get(url)

    # フォントディレクトリを作成
    font_dir = "/usr/share/fonts/truetype/noto"
    os.makedirs(font_dir, exist_ok=True)

    # ダウンロードしたフォントを展開
    with open("/tmp/NotoSansCJKjp.zip", "wb") as f:
        f.write(response.content)

    os.system("unzip /tmp/NotoSansCJKjp.zip -d " + font_dir)
    os.system("fc-cache -fv")  # フォントキャッシュを更新

# フォントのダウンロードとインストールを実行
download_noto_sans_cjk()

app = Flask(__name__)

def take_screenshot(url, width=1080, height=720):
    options = webdriver.ChromeOptions()
    options.add_argument('--headless')
    options.add_argument('--no-sandbox')
    options.add_argument('--disable-dev-shm-usage')

    try:
        wd = webdriver.Chrome(options=options)
        wd.set_window_size(width, height)
        wd.get(url)
        wd.implicitly_wait(10)
        screenshot = wd.get_screenshot_as_png()
    except WebDriverException:
        # エラーが発生した場合、空の画像を返す
        return Image.new('RGB', (1, 1))
    finally:
        if wd:
            wd.quit()

    return Image.open(BytesIO(screenshot))

@app.route('/', methods=['GET'])
def screenshot():
    url = request.args.get('url')
    if not url:
        return "URL parameter is required.", 400

    # パラメーターを取得
    screenw = request.args.get('screenw', default=None, type=int)
    screenh = request.args.get('screenh', default=None, type=int)

    # スクリーンショットを撮影
    original_image = take_screenshot(url)

    # リサイズ処理
    if screenw and screenh:
        # 両方のパラメーターが指定されている場合
        resized_image = original_image.resize((screenw, screenh))
    elif screenw:
        # width のみが指定されている場合、高さを比率に基づいて自動計算
        aspect_ratio = original_image.height / original_image.width
        resized_height = int(screenw * aspect_ratio)
        resized_image = original_image.resize((screenw, resized_height))
    elif screenh:
        # height のみが指定されている場合、幅を比率に基づいて自動計算
        aspect_ratio = original_image.width / original_image.height
        resized_width = int(screenh * aspect_ratio)
        resized_image = original_image.resize((resized_width, screenh))
    else:
        # 両方のパラメーターが指定されていない場合
        resized_image = original_image

    # 画像をメモリ上に保存してレスポンスとして返す
    img_io = BytesIO()
    resized_image.save(img_io, 'PNG')
    img_io.seek(0)

    return send_file(img_io, mimetype='image/png')

if __name__ == "__main__":
    app.run(host="0.0.0.0", port=7860)