Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
I have 2 issues while converting pdf to jpg.
first of all: my jpg's are totally in the wrong order.
secondly: I allways get one jpg file which is empty. But only with inherit pdf files. When I convert something from pdf which I firstly converted from ppt to pdf through Google Drive everythig's fine.
By "wrong order" I assume you mean that you are getting some.jpg.1 some.jpg.10 some.jpg.11 .... some.jpg.2
which is just a characteristic of the lexical sorting order of files by the operating system.
To get them in the same order as they are in the pdf, try using output format "some_%03d.jpg"
(or if you have more than 999 images in the pdf, "some_%04d.jpg"). The "04" means "four
digits with leading zeroes".
I don't think we can answer the question about the empty file without seeing a sample
"inherit pdf file".