Skip to main content

All Questions

Tagged with
1 vote
2 answers
2k views

How to convert Samsung's motion photos to still photos?

I've taken a bunch of photos on my Samsung Galaxy phone after inadvertently activating the "motion photo" mode, which captures a short video clip before and after the "click", ...
Xavier Poinas's user avatar
0 votes
2 answers
85 views

Some image files are deleted during output/moving with batch file

I've been having an issue for a while now with various versions of a batch file script I have been using to assist with listing items on my WordPress/woocommerce page. The script seems to occasionally ...
MonkeyNoodles's user avatar
0 votes
2 answers
2k views

How do I batch recursive imagemagick JPGs into PNG in a folder?

I saw these posts: mogrify - how do you recurse through subfolders in Windows Using imagemagick to identify all files in multiple subfolders https://stackoverflow.com/questions/30414346/batch-command-...
coldreactive's user avatar
0 votes
1 answer
1k views

Loop with Image Magick in batch file

I'm trying to loop through a folder to convert SVG files to PNG files using Image Magick in a batch file: I am wanting to put the new PNG files into a new folder. This is what I have: for /r %%f ...
Joey Tatú's user avatar
0 votes
1 answer
909 views

How to batch split images using Image Magick

I want split few bmp images using imagemagick commandline on windows. For the new images, the original file name has to be suffixed with partnumber (eg _01 , _02). I tried it in the following way, ...
claws's user avatar
  • 4,369
1 vote
0 answers
113 views

Batch converting in imagemagic

I am trying to convert files in imagemagic 6.8.9 on linux . I am restoring an old video and have each frame written as a png file . SOme of these files I have to batch convert to give them an offset -...
Tekno Geekz's user avatar
0 votes
1 answer
2k views

split jpg images by given proportions (imagemagick)

I have a bunch of images scanned into jpg format. As you see in the pictures below, the cards are two-sided, when scanning I have placed 6 cards inside the scanner. First card's front side is ...
acman123's user avatar
  • 773
1 vote
2 answers
2k views

Crop various image sizes to single size w/ ImageMagick

I have a large number of images of various sizes, all equal to or greater than 565x790. I would like to trim the edges of the image so that they are exactly that size. Is there a way to do this in a ...
Danielle's user avatar
2 votes
0 answers
256 views

Resize images with ImageMagick to one of several aspects

I have a collection of images that I process with ImageMagick in a bash script. It loops over the images in a folder. Most of them are in 3:2 format, but some are 4:3, 2:1 and 1:1. However, they are ...
Henrik's user avatar
  • 121
0 votes
0 answers
462 views

Batch appending (set side by side horizontally) entire folder of images in pairs using imagemagick

I'm trying to figure out the correct command(s) to batch append (and output with a sequentially numbered (incremented) filename) an entire folder of PNG files, in pairs. i.e. I have a folder of ...
Diagonali's user avatar
0 votes
1 answer
605 views

Batch convert TIFF to PDF and add text

I have a bunch of TIFF files that I am interested to convert to a single multipage PDF file, which should be easily achieved using ImageMagick. However, I'm also interested in adding text to each ...
Gimelist's user avatar
  • 328
4 votes
4 answers
6k views

Batch Image auto crop, apply fixed width, and maintain aspect ratio

I'm finding it hard to find a solution to what I'm trying to do. Simply put, the usage of these images is for an online store. The IrfanView batch processing using the autio crop borders basically ...
StuyvesantBlue's user avatar
3 votes
3 answers
5k views

How to batch convert multi-page PDF into individual jpg files

I found these posts on converting a PDF to JPG using ImageMagick. However, I have a 12 page PDF I want to convert into 12 separate high quality jpg files. Looking for the least tedious way possible. ...
SteveLambert's user avatar
1 vote
1 answer
140 views

Resize/crop multiple files while preserving certain areas?

I have 176 JPEG images that are 450x800 in size, and was wondering if there was a way to essentially resize them, but while preserving their content in certain areas (currently I'm only hoping for the ...
Wuuuf's user avatar
  • 13
3 votes
1 answer
531 views

Imagemagick batch converting memory overload

I must to convert about billion of images from jp2 to jpg... I create such .bat for /d %%d in (*) do ( for %%f in ("%%~d\*.jp2") do ( convert -limit memory 0 -limit map 0 "%%~ff" -quality 25 "%...
PavelBY's user avatar
  • 139