hello friends,
I am totally confused how to cofigure image magick on linux server to work.
I am not able to configure it on a local window server also.
My task is to convert a pdf to jpg of required area
Can any one help me
I must be very thankful to him/her
with regards
ASHISH
how to use image magick on linux
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: how to use image magick on linux
Best way is to download the source and build it yourself...
I myself download the source and build a SRPM
Then I build the install package from the SRPM
now install that...
Only the final step needs to be root!
I myself download the source and build a SRPM
Code: Select all
cd source
configure
make srpm
Code: Select all
tmp=/tmp/build-using-a-long-build-path; rm -rf $tmp; mkdir $tmp
nice rpmbuild --define="_sourcedir $tmp" --define="_specdir $tmp" \
--define="_rpmdir $tmp" --define="_builddir $tmp" \
--nodeps --rebuild ~/store/IM/ImageMagick-*.src.rpm
ls -Fla $tmp/*/ImageMagick-[6p]*.i386.rpm
rm -f *.i386.rpm; cp $tmp/*/ImageMagick-[6p]*.i386.rpm .
rm -rf $tmp
Code: Select all
sudo rpm -Uhv --force --nodeps ImageMagick-[6p]*.i386.rpm
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
Re: how to use image magick on linux
thanks a lot
can you please help in the following--
i am able to convert a pdf to jpg using image magick but only maximum upto 35 pages
can i able to increse the page limit
please answer me soon at
ashishphp@gmail.com
can you please help in the following--
i am able to convert a pdf to jpg using image magick but only maximum upto 35 pages
can i able to increse the page limit
please answer me soon at
ashishphp@gmail.com
anthony wrote:Best way is to download the source and build it yourself...
I myself download the source and build a SRPMThen I build the install package from the SRPMCode: Select all
cd source configure make srpm
now install that...Code: Select all
tmp=/tmp/build-using-a-long-build-path; rm -rf $tmp; mkdir $tmp nice rpmbuild --define="_sourcedir $tmp" --define="_specdir $tmp" \ --define="_rpmdir $tmp" --define="_builddir $tmp" \ --nodeps --rebuild ~/store/IM/ImageMagick-*.src.rpm ls -Fla $tmp/*/ImageMagick-[6p]*.i386.rpm rm -f *.i386.rpm; cp $tmp/*/ImageMagick-[6p]*.i386.rpm . rm -rf $tmp
Only the final step needs to be root!Code: Select all
sudo rpm -Uhv --force --nodeps ImageMagick-[6p]*.i386.rpm