gpt4 book ai didi

ruby-on-rails - 如何像素化图像回形针

转载 作者:行者123 更新时间:2023-12-04 04:32:09 25 4
gpt4 key购买 nike

我是回形针的新用户,我已经成功上传了图片但是我想以像素化的形式保存照片,这样它就不会更明显且无法识别。

但我不知道如何用回形针实现它

class User < ActiveRecord::Base
# Paperclip
has_attached_file :photo,
:styles => {
:thumb => "100x100#",
:small => "150x150>",
:medium => "200x200" }
end

I want save photo in like that

最佳答案

您可以使用“ImageMagick”来像素化图像..

class User < ActiveRecord::Base
has_attached_file :photo,
:styles => {
:thumb => "100x100#",
:small => "150x150>",
:medium => "200x200",
:pixlated => ['40x40#', 'png']},
:convert_options => {
:pixlated => '-scale 50% -scale 1000%'}
end

根据您的需要更改比例百分比。你会得到像素化的图像。我希望它会帮助你。

例如:pixlated.png

enter image description here

原件.png

enter image description here

关于ruby-on-rails - 如何像素化图像回形针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20425982/

25 4 0
文章推荐: boto - 我需要在 Django+Gunicorn+GEvent+Boto 结构中调用monkey.patch_all() 吗?
文章推荐: php - 只与正则表达式匹配一次
文章推荐: vb.net - 将 IList 转换为 List