.circleci
.github
app
bin
chart
config
db
dist
lib
assets
chewy
devise
generators
json_ld
mastodon
paperclip
attachment_extensions.rb
blurhash_transcoder.rb
color_extractor.rb
gif_transcoder.rb
image_extractor.rb
lazy_thumbnail.rb
media_type_spoof_detector_extensions.rb
response_with_limit_adapter.rb
transcoder_extensions.rb
type_corrector.rb
url_generator_extensions.rb
video_transcoder.rb
redis
tasks
templates
cli.rb
log
nanobox
public
spec
streaming
vendor
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.js
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.profile
.rspec
.rubocop.yml
.ruby-version
.sass-lint.yml
.slugignore
.yarnclean
AUTHORS.md
Aptfile
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
SECURITY.md
Vagrantfile
app.json
babel.config.js
boxfile.yml
config.ru
crowdin.yml
docker-compose.yml
ide-helper.js
package.json
postcss.config.js
priv-config
scalingo.json
yarn.lock
17 lines
506 B
Ruby
17 lines
506 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Paperclip
|
|
class BlurhashTranscoder < Paperclip::Processor
|
|
def make
|
|
return @file unless options[:style] == :small || options[:blurhash]
|
|
|
|
pixels = convert(':source RGB:-', source: File.expand_path(@file.path)).unpack('C*')
|
|
geometry = options.fetch(:file_geometry_parser).from_file(@file)
|
|
|
|
attachment.instance.blurhash = Blurhash.encode(geometry.width, geometry.height, pixels, **(options[:blurhash] || {}))
|
|
|
|
@file
|
|
end
|
|
end
|
|
end
|