Rails 上的自定义 ImageMagick 脚本(回形针?)

发布于 2024-11-08 19:03:32 字数 198 浏览 0 评论 0原文

我想使用其中一些脚本: http://www.fmwconcepts.com/imagemagick/用于处理上传到我的 Rails 应用程序的图像。我怎样才能实现它?我可以以某种方式在 Paperclip 中设置它还是需要编写一些自定义代码?

I would like to use some of these scripts: http://www.fmwconcepts.com/imagemagick/ for processing images uploaded to my Rails app. How can I achieve it? Can I set it up in Paperclip somehow or need to write some custom code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初懵 2024-11-15 19:03:32

Paperclip提供了一种编写自己的图像处理器的方法,主要利用imagemagick等提供的命令行工具。

由于您上面链接的脚本都是命令行工具,因此编写一个处理器来使用它们将相当简单。

资源:

Paperclip provides a way to write your own image processor, which primarily make use of the command line tools provided by imagemagick and the like.

Since the scripts you link to above are all command line tools, it will be fairly trivial to write a processor to use these.

Resources:

帅哥哥的热头脑 2024-11-15 19:03:32

您可能需要考虑使用 CarrierWave 而不是 Paperclip。使用 CarrierWave 和 RMagick 可以更轻松地自定义图像处理行为。

关于 CarrierWave 的 Railscast 是一个很好的起点:
http://railscasts.com/episodes/253-rierwave-file-uploads

You might want to consider CarrierWave instead of Paperclip. It's easier to customize the image processing behavior with CarrierWave and RMagick.

The Railscast about CarrierWave is an excellent starting point:
http://railscasts.com/episodes/253-carrierwave-file-uploads

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文