将一张图像切成小块

发布于 2024-12-12 08:43:47 字数 171 浏览 1 评论 0原文

我需要编写一些 ruby​​ 脚本来帮助我处理大图像文件。我知道 imagemagick 和 rmagick 库(ruby)的基础知识,但到目前为止我只做一般简单的事情(缩略图,添加水印等)现在我想将示例分辨率 3000/1000px 的文件剪切成十个较小的图像(3000/100 px) )。是否可以?我不知道该使用哪种方法。

I need to write some ruby script which will help me with big image files. I know basics of imagemagick and rmagick library(ruby), but till now I was doing generally simple things (thumbnailing, adding watermarks etc.) Now I want to cut file with example resoultion 3000/1000px into ten smaller images (3000/100 px). Is it possible? I have no idea which method to use.

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

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

发布评论

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

评论(2

山有枢 2024-12-19 08:43:47

如何为每个输出图像裁剪一次输入图像:

output_images =
  (0...10).collect { |i|
    input_image.crop(0, i*100, 3000, 100, true)
  }

更一般地说(但仍然假设 Y 分辨率可被切片数量整除):

def slice_image_horizontally(image, num_slices)
  slice_height = image.y_resolution / num_slices
  (0...num_slices).collect { |i|
    image.crop(
      0, i * slice_height,
      image.x_resolution, slice_height,
      true # reset image offset
    )
  }
end

http://www.imagemagick.org/RMagick/doc/image1.html#crop

How about cropping the input image once for each of the output images:

output_images =
  (0...10).collect { |i|
    input_image.crop(0, i*100, 3000, 100, true)
  }

More generally (but still assuming the Y resolution is divisible by the number of slices):

def slice_image_horizontally(image, num_slices)
  slice_height = image.y_resolution / num_slices
  (0...num_slices).collect { |i|
    image.crop(
      0, i * slice_height,
      image.x_resolution, slice_height,
      true # reset image offset
    )
  }
end

http://www.imagemagick.org/RMagick/doc/image1.html#crop

岁月蹉跎了容颜 2024-12-19 08:43:47
10.times do |slice|
  system "convert example.jpg -crop x100+0+#{slice * 100} +repage example#{slice}.jpg"
end

编辑:是的,我想 RMagick 更酷:)

10.times do |slice|
  system "convert example.jpg -crop x100+0+#{slice * 100} +repage example#{slice}.jpg"
end

EDIT: Yeah, I guess RMagick is cooler :)

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