imagemagick convert to chop off top of image

This is useful if you have a bunch of images/scans where the same area at the top needs to be chopped.

Sometimes the -trim option (such as the case of white space on top) is wrong and ends up cropping the image and losing some text.

ImageMagick's convert is very useful but tricky to find some things out as I find it to be less than intuitive sometimes.

Chopping off the bottom

 convert -crop -0-400 image.jpg image.pdf

The -crop -0-400 is what does it.  The 0 says not to chop anything from the left.  If you want to chop the left of course change 0 to whatever pixels you want chopped from the left.  The 400 says to chop 400 pixels off the bottom.

Chopping off the top

 convert -crop +0+200 someimage.jpg output.jpg
 

This chops off the top "200 pixels".  Adjust accordingly.


Tags:

imagemagick, convert, imagethis, images, scans, chopped, trim, cropping, text, tricky, intuitive, chopping, crop, jpg, pdf, pixels, someimage, output, chops, quot, adjust, accordingly,

Latest Articles

  • How to combine .txt ACLs without breaking things
  • How to ping all of Googlebot's IPs script
  • 'virtio0' uses a qcow2 feature which is not supported by this qemu version: QCOW version 3
  • Linux bash script to get the IP of a list of hostnames
  • How To Use Camera Webcam in Docker for OBS Studio etc...
  • Computer Server Won't Post Boot Or Enter BIOS Setup After Installing RAID SAS or GPU Card etc..
  • How To Test PHP Scripts from CLI with GET variables/query string
  • apt-cache how to see all available versions of a package in Debian Ubuntu Mint
  • Virtualbox VBox Guest-utils drag and drop files stops working with Windows VMs
  • How To Remove Ubuntu Netplan and Go Back to /etc/network/interfaces
  • How To Force Flash an AMD Instinct GPU To Another Model Using Debian Ubuntu Mint Linux
  • How To compile ollama from source to use unsupported AMD GPU with rocm in Ubuntu Debian
  • QEMU KVM Virtio GPU Windows Cannot Select 1080P
  • Linux Gnome Desktop Ubuntu Mint Debian Gets Slower After Weeks
  • Firefox How to Save Full Page As Screenshot/PDF
  • Nvidia Datacenter Driver Tesla Slow nvidia-smi response and high utilization with 0 usage
  • ffmpeg how to normalize / increase the volume of your audio
  • kdenlive audio blips pops cracks artifacts solution fix
  • haproxy / nginx certbot SSL issues
  • nginx how to see the real IP when behind a CDN