Skip to content

A helpful Ruby tool to generate montage images for album art

License

Notifications You must be signed in to change notification settings

CurrentMobile/arty

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A helpful Ruby tool to generate montage images for album art

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages