Popularity
1.1
Growing
Activity
0.0
Stable
7
1
0
Monthly Downloads: 6
Programming language: Elixir
License: MIT License
Tags:
Images
exfavicon alternatives and similar packages
Based on the "Images" category.
Alternatively, view exfavicon alternatives based on common mentions on social networks and blogs.
-
cloudex
An elixir library which helps with uploading image files or urls to cloudinary -
ex_image_info
ExImageInfo is an Elixir library to parse images (binaries) and get the dimensions (size), detected mime-type and overall validity for a set of image formats. It is the fastest and supports multiple formats. -
exexif
Pure elixir library to extract tiff and exif metadata from jpeg files -
png
A pure Erlang library for creating PNG images. It can currently create 8 and 16 bit RGB, RGB with alpha, indexed, grayscale and grayscale with alpha images. -
thumbnex
Elixir library to create thumbnails from images and video screenshots. -
eikon
Eikōn is an Elixir library providing a read-only interface for image files. -
gi
Gi is a library for manipulating Graphics Interfacing. Use utility mogrify, identify, ... of GraphicsMagick to resize, draw on base images....
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of exfavicon or a related project?
README
Exfavicon
A exfavicon to detect a site's favicon.
Installation
If available in Hex, the package can be installed as:
Add exfavicon to your list of dependencies in
mix.exs
:def deps do [{:exfavicon, "~> 0.3"}] end
Ensure exfavicon is started before your application:
def application do [applications: [:exfavicon]] end
Usage
# Find http://elixir-lang.org
Exfavicon.find("http://elixir-lang.org") # "http://elixir-lang.org/favicon.ico"
# Find http://twitter.com
Exfavicon.find("http://twitter.com") # "http://abs.twimg.com/favicons/favicon.ico"
# Find http://facebook.com
Exfavicon.find("http://facebook.com") # "https://static.xx.fbcdn.net/rsrc.php/yV/r/hzMapiNYYpW.ico"
# Find http://youtube.com
Exfavicon.find("http://youtube.com") # "https://s.ytimg.com/yts/img/favicon-vflz7uhzw.ico"
# Find https://www.google.com
Exfavicon.find("http://google.com/") # "https://www.google.co.jp/images/branding/product/ico/googleg_lodp.ico"