Ruby 图像上传框架 Ruby Dragonfly

码农软件 · 软件分类 · 文件上传组件 · 2019-03-30 08:27:10

软件介绍

Dragonfly 是一个 Ruby gem 用于动态处理 Rails、Sinatra 等框架的图像上传。

示例代码:

如果你想生成缩略图:

class User < ActiveRecord::Base  # model
  dragonfly_accessor :photo
end

<%= image_tag @user.photo.thumb('300x200#')  # view  %>

在 Sinatra 下生成文本图像

get "/:text" do |text|
  Dragonfly.app.generate(:text, text, "font-size" => 32).to_response(env)
end

生成附件

wav = Dragonfly.app.fetch_url("http://free.music/lard.wav")  # GET from t'interwebs
mp3 = wav.to_mp3  # to_mp3 is a custom processor
uid = mp3.store   # store in the configured datastore, e.g. S3

url = Dragonfly.app.remote_url_for(uid)  # ===> http://s3.amazon.com/my-stuff/lard.mp3

本文地址:https://codercto.com/soft/d/2461.html

Learning PHP, MySQL, JavaScript, and CSS

Learning PHP, MySQL, JavaScript, and CSS

Robin Nixon / O'Reilly Media / 2012-9-3 / USD 39.99

If you're familiar with HTML, you can quickly learn how to build interactive, data-driven websites with the powerful combination of PHP, MySQL, and JavaScript - the top technologies for creating moder......一起来看看 《Learning PHP, MySQL, JavaScript, and CSS》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具