74 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
1
answer
150
views
How to remove non uniform background from image [closed]
Receipt clip contains structured background:
Tried to remove it using textcleaner ImageMagic wrapper script from Remove receipt image border using ImageMagick answer.
Used code from answer How to use ...
0
votes
0
answers
64
views
Fastest way to create a palettized image in Magick.NET?
I'm trying to use Magick.NET to save palettized images generated by my program. Currently I'm using the following process:
Create the image with MagickImage img = new(MagickColors.Green, (uint)Width, ...
0
votes
2
answers
122
views
Imagemagick.net center image on 7.5x6 page size
I am trying to print image on center of 7.5x6 inch page in PCL (printer command Language). How much ever I tried its not centered to page. Its either printing on lower right or left corner. Image ...
1
vote
1
answer
437
views
Get bytes from MagickImage image
Is there a straight forward way to get the bytes from a MagickImage?
That is, like writing it to a file but, instead, writing it to a byte array.
-1
votes
1
answer
669
views
How to force PHP to use the new ImageMagick version?
Been at this for about 2 hours now, read about 20 articles on Google. Fired everything I had into the terminal and its still not working. Restarted Apache and PHP-FPM several times.
My Server ...
1
vote
1
answer
316
views
How to prevent ImageMagick.NET from changing color space on write
Attempting to open an image, set its resolution, and save it, and I'm running into an issue where the ColorSpace is being modified without any input on my end.
The input image is a blank sRGB/8 image, ...
0
votes
1
answer
650
views
ImageMagick.NET library multipage TIFF to PDF
I'm having an issue where rather small tiff files (< 300 KB) gets blown up to like 74 MB when converted into a PDF.
using (var img_collection = new MagickImageCollection())
{
using (var ...
0
votes
1
answer
292
views
ImageMagick C# Exception : no pixels defined in cache
I'm trying to create a new image with a specific ColorType (it does the same thing with ColorSpace) and I have this error: no pixels defined in cache.
I'm not trying to load/read an existing image. I'...
0
votes
1
answer
462
views
How can I add the x265 codec to ImageMagick in C#
I would like to add the x265 codec to ImageMagick in a Visual Studio C# project targeting .Net 4.7.2 in order to access HEIC format files. I obtained the file x265.dll from the ShiftMediaProject file ...
2
votes
0
answers
606
views
Wrong whitebalace/colorgrade for arw files in ImageMagick - updated -
I want to convert SONY raw files (.ARW) to jpg with imagemagick.
But there is a problem with the whitebalance (probably).
When I open the files in ACDSee or XNView, they look like the jpg-version off ...
user avatar
user783388
0
votes
1
answer
318
views
Magick.NET set PSD Blendmode
I'm trying to create a psd file with Magick.NET. I could not find any information about wether it's possible to set the Blendmode for a specific layer to Multiply. Can anyone help me? This is my code:
...
2
votes
1
answer
1k
views
ImageMagick .net c# mp4/webm video getting N frame without artifacts?
Trying to make some manipulation with frames using ImageMagick lib on .net (resizing + composing with other image), but faced with incorrect "re-assembling" video, output video coming with ...
0
votes
2
answers
3k
views
ImageMagick convert from pdf to image shrinks image and places it in bottom left corner
I am using this command to convert pages from a pdf to jpeg images:
magick convert -density 300 sample.pdf output.jpeg
I see a white background and the content of the PDF appears as a smaller image ...
0
votes
0
answers
180
views
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^^ ...
0
votes
1
answer
334
views
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 ...