0.01
No commit activity in last 3 years
No release in over 3 years
FeaturedImage is the finder that extract featured image from a web page. FeaturedImage::Finder accesses and analyses a web page using Mechanize, download images which are referenced by IMG tag in HTML, and specify a featured image based on size of image using RMagick. Furthermore, FeaturedImage contains pretty good thumbnail generating function too. FeaturedImage::Converter crops centered area of image, resizes, and convert to arbitrary format automatically.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

FeaturedImage

What is FeaturedImage?

FeaturedImage is a finder that extract featured image from a web page.

FeaturedImage::Finder analyses a web page using Mechanize, downloads images which are referenced by IMG tags in HTML file, and specifies featured images based on size of image using RMagick.

Furthermore, FeaturedImage has pretty good thumbnail generating functions. FeaturedImage::Converter crops centered area of image, resizes, and converts to an arbitrary format automatically.

Usage

require 'featuredimage'

# find first featured image from a web page
featuredimage = FeaturedImage::Finder.first('http://en.wikipedia.org/wiki/Lenna')

# convert featured image to thumbnail
thumbnail = FeaturedImage::Converter.convert(featuredimage, 180, 120) # return BLOB

# save BLOB
open('thumbnail.jpg', 'w'){|f| f.write thumbnail}

API Reference

Basic API

API Description
FeaturedImage::Finder.first Finds the first featured image that matches the specified criteria from the web page. Returns an image as Magick::ImageList if any featured images exist; otherwise, nil.
FeaturedImage::Finder.biggest Finds the biggest featured image that matches the specified criteria from the web page. Returns an image as Magick::ImageList if any featured images exist; otherwise, nil.
FeaturedImage::Finder.all Finds all featured images that match the specified criteria from the web page. Returns an Array of image as Magick::ImageList if any featured images exist; otherwise, an empty Array.
FeaturedImage::Converter.convert Converts an image to an arbitary sized thumbnail and returns its BLOB. The default thumbnail format is JPEG with compression quality at 60. This is the same as `FeaturedImage::Converter.convert(IMAGE, WIDTH, HEIGHT, {format:"JPEG", quality:60}).`

Also, you can use FeaturedImage::Finder and FeaturedImage::Converter instance directly, if you want. See source code.

Criteria

FeaturedImage::Finder APIs receive various argument about featured image criteria. Some examples follow.

Empty criteria. Anything image is match as featured image.

FeaturedImage::Finder.first URL

Aspect ratio range criteria. Featured image aspect ratio restrict 4:3 to 16:9. See also Aspect Ratio.

FeaturedImage::Finder.first URL 1.2..1.8

Minimum size criteria. Minimum featured image size is 320x240.

FeaturedImage::Finder.first URL 320 240

Minimum size criteria with aspect ratio range restrict 4:3 to 16:9.

FeaturedImage::Finder.first URL 320 240 1.2..1.8

Minimum and maximum size criteria. Featured image size is 320x240 to 1024x768.

FeaturedImage::Finder.first URL 320 240 1024 768

The most restricted criteria. Featured image size is 320x240 to 1024x768, and aspect ratio restrict 4:3 to 16:9.

FeaturedImage::Finder.first URL 320 240 1024 768 1.2..1.8

Aspect Ratio

In FeaturedImage, aspect ratio is defined as WIDTH / HEIGHT.

Examples.

  • Aspect ratio 1.0 is square.
  • Aspect ratio 0.5 is vertically long rectangle. HEIGHT is twice as much as WIDTH.
  • Aspect ratio 2.0 is holizontally long rectangle. WIDTH is twice as much as HEIGHT.

Auther

License

This library is distributed under the MIT license.