Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bodacious/kirigami
Cut down your assets/images to web-friendly sizes
https://github.com/bodacious/kirigami
asset-pipeline assets-management minimagick rails rails-deployment rails5
Last synced: 11 days ago
JSON representation
Cut down your assets/images to web-friendly sizes
- Host: GitHub
- URL: https://github.com/bodacious/kirigami
- Owner: Bodacious
- License: mit
- Created: 2017-10-09T11:00:59.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-08T19:47:46.000Z (almost 2 years ago)
- Last Synced: 2024-12-17T11:40:04.269Z (17 days ago)
- Topics: asset-pipeline, assets-management, minimagick, rails, rails-deployment, rails5
- Language: Ruby
- Size: 114 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Kirigami
Cut the images in your assets dir to a web-friendly size.
Kirigami performs optimisations on your images to ensure they are web-friendly.
By default, Kirigami uses the optimisation suggestions recommended by
[Google's Page Speed Insights](https://developers.google.com/speed/docs/insights/OptimizeImages)In ImageMagick terms, these are:
convert original.jpg -sampling-factor 4:2:0 -strip -quality 85 -interlace JPEG -colorspace RGB new.jpg
Image dimensions, extensions, and filenames are not changed.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'kirigami'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install kirigami
## Usage
**WARNING:** This will change the size and quality of images in your Rails application.
Make sure you have read the documentation and have backed up your images before you proceed`$ rails kirigami:cut`
This rake task will go through each of the images specified in your configuration and
crop their size (if necessary), remove any metadata, and compress them (JPG only).To peek under the hood, check out [lib/kirigami/image.rb](lib/kirigami/image.rb#L28-L41)
## Configuration
To configure options, add an initializer in `config/initializers/kirigami.rb`
``` ruby
Kirigami.configure do |config|# Only convert images with these extensions (default: %w[ png jpg jpeg gif ])
self.config.image_extensions ||= %w[ png jpg jpeg gif ]# Create a backup copy of each image before conversion (default: true)
self.config.safe_mode ||= true# JPEG compression quality (default: "85%")
self.config.jpeg_compression_quality ||= '85%'# An array of dirpaths where your images are located (defaults: "./app/assets/images")
self.config.image_paths ||= "[yourapp]/app/assets/images"# Ignore images within these dirpaths (default: [])
self.config.exclude_paths ||= []# Set minimagick to debug mode (default: false)
self.config.debug = falseend if defined?(Kirigami)
```## TODO
- [ ] Add support for specifying max sizes for individual images
- [ ] Add proper tests## Development
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/Bodacious/kirigami.
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).