PDF to JPG - The result is still a pdf...

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?".
Post Reply
Lexters

PDF to JPG - The result is still a pdf...

Post by Lexters »

Hello

I run this command "convert file.pdf image.jpg"

Now, the image.jpg that is being made, is not a jpg, its a pdf :|
What am i doing wrong?




convert -list configure

Path: /usr/local/lib/ImageMagick-6.5.4/config/configure.xml

Name Value
-------------------------------------------------------------------------------
CC gcc -std=gnu99
CFLAGS -fopenmp -g -O2 -Wall -W -pthread
CONFIGURE ./configure
COPYRIGHT Copyright (C) 1999-2009 ImageMagick Studio LLC
CPPFLAGS -I/usr/local/include/ImageMagick
CXX g++
CXXFLAGS -pthread
DEFS -DHAVE_CONFIG_H
DELEGATES
DISTCHECK_CONFIG_FLAGS --disable-deprecated --with-quantum-depth=16 --with-umem=no --with-autotrace=no --with-fontconfig=no --with-gslib=no --with-fontpath= --with-rsvg=no --with-xml=no
EXEC-PREFIX /usr/local
HOST i686-pc-linux-gnu
LDFLAGS -L/usr/local/lib
LIB_VERSION 0x654
LIB_VERSION_NUMBER 6,5,4,2
LIBS -lMagickCore -lm -lgomp -lpthread
NAME ImageMagick
PCFLAGS -fopenmp
PREFIX /usr/local
QuantumDepth 16
RELEASE_DATE 2009-07-06
VERSION 6.5.4
WEBSITE http://www.imagemagick.org
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: PDF to JPG - The result is still a pdf...

Post by fmw42 »

you need to install all the delegates that you want for using images and pdf, especially ghostscript and jpg. you have no delegates installed

see
http://www.imagemagick.org/download/delegates/
Post Reply