python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Combining 3 imagemagick cli parameters into one ImageMagick.NET code
Hey all I have these 3 imageMagick scripts (command line arguments) that I am trying to combine into Imagemagick.NET code.
First (merging 2 images together):
convert ^
( testingl.jpg -resize 610x440^^...

StealthRT
Votes: 0
Answers: 0
imagemagick - run command on all files in folder and output results to their own sub-folders
I am on windows using this command to split a sprite sheet into multiples files (frames) -
magick convert images\1.png -crop 1024x1024 images\1.png
Which works fine, problem is that I need to do this...

730wavy
Votes: 0
Answers: 1
How to convert png to pdf with A4 dimensions using imagemagick?
I'm trying to use imagemagick cli in combination with powershell to convert a png image into pdf. I would like for the resulting pdf to be A4 landscape.
This is what I have come up with so far:
magick...
user32882
Votes: 0
Answers: 2
Image Magick blend 2 cropped/resize images together in the middle
Hey all I have this code below that takes 2 images and merges them together with it fading in the center:
convert testingl.jpg -gravity West ^
testingr.jpg -gravity East ^
blend_mask.png -extent 1080x...

StealthRT
Votes: 0
Answers: 1