https://developers.line.biz/en/reference/messaging-api/#image-message
{
    "type": "image",
    "originalContentUrl": "https://example.com/original.jpg",
    "previewImageUrl": "https://example.com/preview.jpg"
}
type(物件類型):image
originalContentUrl(來源內容連結):最大字元限制:2000HTTPS要符合TLS 1.2或之後的版本檔案類型為JPEG 或 PNG最大圖片限制:沒有限制最大檔案大小:10 MB
previewImageUrl(預覽圖片連結):最大字元限制:2000HTTPS要符合TLS 1.2或之後的版本檔案類型為JPEG 或 PNG最大圖片限制:沒有限制最大檔案大小:1 MB
https://github.com/line/line-bot-sdk-python#imagesendmessage
透過LINE BOT SDK發送圖片訊息
from linebot.models.send_messages import ImageSendMessage
image_message = ImageSendMessage(
    original_content_url='https://ithelp.ithome.com.tw/storage/image/ironman13thsidebar.png',
    preview_image_url='https://ithelp.ithome.com.tw/storage/image/ironman13thsidebar.png'
)
