Results 1 to 3 of 3

Thread: ImageMagick (resizing)

  1. #1
    Join Date
    Apr 2007
    Beans
    55

    ImageMagick (resizing)

    I'm trying to convert a .PDF to a .BMP

    So I tried,
    Code:
    convert "thedoc.pdf" "converted.bmp"
    This does indeed converted the .PDF to the .BMP however, it seems like the resolution is like 50% of what the .PDF resolution was. This makes reading any text in my .BMP impossible. How do I keep the quality the same in the output as it was in the orginal PFD input?

  2. #2
    Join Date
    Mar 2007
    Location
    $HOME (Washington State)
    Beans
    4,590

    Re: ImageMagick (resizing)

    According to this, you need to run this command to get it how you want:
    Code:
    convert -density 600x600 -resize 800x560 -quality 90 "thedoc.pdf" "converted.bmp"
    Why are you trying to convert it to BMP, though, instead of JPG or even PNG? BMP takes up a lot of space for a horrible quality image.
    See my themes here! | Dont preach Linux, mention it | Make GNOME Themes
    I'm no longer on here. If you want to talk to me, go to noost.org.
    My DeviantArt | Linux user #461096 | Ubuntu user #15753

  3. #3
    Join Date
    Mar 2008
    Location
    Cardiff, UK
    Beans
    427
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: ImageMagick (resizing)

    Try using the GIMP.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •