Bing::Search::Result::Image::Thumbnail - A thumbnail image


Bing-Search documentation Contained in the Bing-Search distribution.

Index


Code Index:

NAME

Top

Bing::Search::Result::Image::Thumbnail - A thumbnail image

METHODS

Top

Width

The width, in pixels.

ContentType

The type of image. MIME or not.

FileSize

The size, in bytes.

Height

The height, in pixels.

Url

A URI object representing the thumbnail's URL.

AUTHOR

Top

Dave Houston, dhoustoncpan.org, 2010

LICENSE

Top

This library is free software; you may redistribute and/or modify it under the same terms as Perl itself.


Bing-Search documentation Contained in the Bing-Search distribution.

package Bing::Search::Result::Image::Thumbnail;
use Moose;

extends 'Bing::Search::Result';

with 'Bing::Search::Role::Types::UrlType';

with 'Bing::Search::Role::Result::Width';
with 'Bing::Search::Role::Result::ContentType';
with 'Bing::Search::Role::Result::FileSize';
with 'Bing::Search::Role::Result::Height';
with 'Bing::Search::Role::Result::Url';

__PACKAGE__->meta->make_immutable;