Exemplo n.º 1
0
def image_width(url):
    """ Returns image width.

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

    width, height = get_image_size(url)
    return width
Exemplo n.º 2
0
def image_height(url):
    """ Returns image height.

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

    width, height = get_image_size(url)
    return height
Exemplo n.º 3
0
def image_height(url):
    width, height = get_image_size(url)
    return height
Exemplo n.º 4
0
def image_width(url):
    width, height = get_image_size(url)
    return width
Exemplo n.º 5
0
def image_height(url):
    width, height = get_image_size(url)
    return height
Exemplo n.º 6
0
def image_width(url):
    width, height = get_image_size(url)
    return width