Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 900 Bytes

README.md

File metadata and controls

30 lines (24 loc) · 900 Bytes

arty

A tool to generate montage images for album art.

Installation

gem install arty

Usage

require 'arty'

a = Arty.new(["Daft Punk", "Kavinsky", "Empire of the Sun", "Justice"])
a.generate_montage()
# or to specify an output file
a.generate_montage("/path/to/file.jpeg")

Output

Running the above code, produces an image like this at ./tmp/output.jpeg output

macOS High Sierra Installation Issues

macOS High Sierra ships with a newer version of imagemagick (a dependency of Arty). Running the gem install arty command will result in an error.

To resolve, unlink imagemagick and relink the older version ((credit)[https://stackoverflow.com/a/43035892/1091502]):

brew unlink imagemagick
brew install imagemagick@6 && brew link imagemagick@6 --force