コード例 #1
0
def image_height(url):
    """ Returns image height.

Usage:
    {{ url|image_width }}
"""
    
    width, height = get_image_size(url)
    return height
コード例 #2
0
ファイル: satchmo_thumbnail.py プロジェクト: abrar78/satchmo
def image_height(url):
    """ Returns image height.

Usage:
    {{ url|image_width }}
"""

    width, height = get_image_size(url)
    return height
コード例 #3
0
def image_width(url):
    """ Returns image width.

Usage:
    {{ url|image_width }}
"""
    
    width, height = get_image_size(url)
    return width
コード例 #4
0
ファイル: satchmo_thumbnail.py プロジェクト: abrar78/satchmo
def image_width(url):
    """ Returns image width.

Usage:
    {{ url|image_width }}
"""

    width, height = get_image_size(url)
    return width