Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

canvas-resize-rails

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

canvas-resize-rails

  • 0.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Canvas::Resize::Rails

canvasResizeをRails+carrierwaveで簡単に使えるようにする

インストール

Gemファイルに以下を追加

gem 'canvas-resize-rails'

application.jsに以下を追加

//= require canvas-resize-sprockets

使い方

carrierwaveのmodelをProfile, 対象のカラム名をimageとする場合、対象のmodelに以下のように設定

  mount_uploader :image, ImageUploader
  canvas_resize :image

formで例えば以下のようになっている場合、

= simple_form_for(@profile) do |f|
  = f.input :image, as: :file, input_html: { class: 'resize_trigger' }

jsで以下のようにする。

$("input.resize_trigger").prepareToResizeForAll()

これでファイルに画像を設定するタイミングで自動的に以下の処理が行われる

  • profile[image_base64]というhidden_fieldにbase64でエンコードされた画像が設定される
  • profile[image_file_name]というhidden_fieldにファイル名が設定される

この状態でsubmitするとリサイズ済みのファイルがcarrierwaveを通じて保存される

FAQs

Package last updated on 25 Jul 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc