Images to pdf

i converted pdf to images and the images back to pdf. While converting
back to pdf the images are not in order
for example if there are 14 images after the first image 10 image will
come then 11,12,13,14 and then 2,3,4,5,6,7,8,9
What is the problem?

can you tell me how you converted Images to PDF, please tell i m new to
rails

On Thu, Sep 20, 2012 at 9:28 PM, ANIKET KADAM
[email protected]wrote:

What is the problem?

it is sorting them as string not as integers

For more options, visit https://groups.google.com/groups/opt_out.

Thanks

ANIKET KADAM wrote in post #1076796:

can you tell me how you converted Images to PDF, please tell i m new to
rails

require ‘RMagick’
images = Dir["/home/*.jpg"]
imglist = Magick::ImageList.new
imglist.read(*images.natural_sort)
imglist.write(“converted.pdf”)

On Thu, Sep 20, 2012 at 9:28 PM, ANIKET KADAM
[email protected]wrote:

can you tell me how you converted Images to PDF, please tell i m new to
rails

you can use rmagick

Thanks