Project

iconoclasm

0.0
No commit activity in last 3 years
No release in over 3 years
Finds favorites icons for web pages on the world wide internets by checking the HTML head or the standard favicon location. Then, do with them what you will.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

iconoclasm

Finds favorites icons for web pages on the world wide internets by checking the HTML head or the standard favicon location. Then, do with them what you will.

Called "iconoclasm" because there was already a gem on gemcutter called "iconoclast". Boo! Hiss!

Usage

To get the favicon for a page, do:

favicon = Iconoclasm.extract('www.website.com')

This will go and do a bunch of GETs (two or three, actually) on the url given. If you've already got the content and want to skip one of the GETs, you can pass the content in as the second argument.

content = get_some_content('www.website.com')
favicon = Iconoclasm.extract('www.website.com', content)

Iconoclasm.extract returns an Iconoclasm::Favicon instance, from which you can get the URL, content type, size, or access the binary image data. By calling valid?, you can check if the favicon is valid based on whatever my standards were when I wrote this (basically, whether or not it's actually an image).

You can save the image to a tempfile using favicon.save, or more usefully, to a file at favicon.save('path/to/file'). Fun times had by all.

Copyright

Copyright (c) 2009 Sander Hartlage. See LICENSE for details.