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
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
Imagemagic: How to add backgroud image to another image using C#
I want to resize the image to custom width and height(eg: 225 X 225). And filled the remaining area with green background to get the exact custom image size. Using .net imagemagic library.
Fist image:...

Kiran B Chitari
Votes: 0
Answers: 0
How do I use Magick.NET to convert an animated webp image to an animated gif?
GDI+ and System.Drawing have no support for WebP images. To handle them in my C# Windows desktop app, I'm using Magick.NET to convert them to Gif images, which are supported. This works well, unless t...
d ei
Votes: 0
Answers: 1