New Post: DPX Image Format to TIFF not work?
My software is a Digital Cinema Mastering program, so for a movie it processes up to 300k images, to save the images first as png it would take too much time for this amount of images :) Exist a older...
View ArticleNew Post: DPX Image Format to TIFF not work?
With that amount of images I would also say no to the work around. Magick.NET 6.8.6.801 does not have HDRI enabled but I would really advise you to switch back to the newest version once this bug has...
View ArticleNew Post: DPX Image Format to TIFF not work?
ok i will switch to the new version if the bug is fixed....
View ArticleNew Post: DPX Image Format to TIFF not work?
The problem has been found and will be fixed in the next release. I have a better work around for your situation now. Call the Clamp method before you set the BitDepth
View ArticleNew Post: How to overlay a tiled pattern on a solid background?
I have a background/canvas with a solid color. I want to overlay a pattern on top of that background. I want to set the opacity of the tiled pattern too. This is what I have MagickImage pattern = new...
View ArticleNew Post: How to overlay a tiled pattern on a solid background?
Can you post a message with a command line example and a link to your image? I don't really understand what you are trying to do.
View ArticleNew Post: How to overlay a tiled pattern on a solid background?
original pattern :http://i.imgur.com/qJtyCqH.png background color of base canvas is #2980b9. Output Image of the code above ishttp://i.imgur.com/YbBV3Dn.png I want to achieve...
View ArticleNew Post: How to overlay a tiled pattern on a solid background?
There is not support for the tile operator in Magick.NET yet. You could accomplish the same output image if you tile the image yourself. You could start with an output image of the same size as your...
View ArticleNew Post: How to overlay a tiled pattern on a solid background?
dlemstra wrote: There is not support for the tile operator in Magick.NET yet. You could accomplish the same output image if you tile the image yourself. You could start with an output image of the same...
View ArticleNew Post: How to overlay a tiled pattern on a solid background?
It turns out there is already a method called Texture for what you are trying to do. You can accomplish the output image with the following code:using (MagickImage pattern = new...
View ArticleNew Post: How to overlay a tiled pattern on a solid background?
Thanks for your help , that indeed is cleaner. This is how I did it with gdi+ if anyone is interested Bitmap tilePatternBitmap = new Bitmap("connect.png"); Bitmap tiledPatternBitmap = new Bitmap(1440,...
View ArticleNew Post: Does Magick.Net support "caption:" functionality?
I am playing around with Magick.NET to see if it might meet the needs of our software. So far it looks great. However, one of the requirements is to be able to draw a textbox of a specific width/height...
View ArticleNew Post: Does Magick.Net support "caption:" functionality?
If you want to use the caption: coder you should do the following:// convert.exe caption:'ImageMagick Rules OK!' caption_centered.gifusing (MagickImage image = new MagickImage()) { // Set options like...
View ArticleNew Post: Does Magick.Net support "caption:" functionality?
Thank you, this helps. However, your sample is creating a new image. I want to load an existing tiff, then draw a rectangle on it with a caption inside, then save as a new tiff. I'm not sure how I can...
View ArticleNew Post: how to set image opacity by percentage?
Will this work or is there a cleaner way to do this? MagickImage pattern = new MagickImage("image.png"); pattern.Alpha(AlphaOption.Set); var Divisor = Quantum.Max / (Quantum.Max * PercentageF)...
View ArticleNew Post: Does Magick.Net support "caption:" functionality?
I have added a link to a great ImageMagick examples page in the documentation. You can recognize that you need the Read method when you see a colon in the examples and no file is being read. For...
View ArticleNew Post: how to set image opacity by percentage?
This is the cleanest way to do this. The QuantumOperator method is the method you need when you want to do some quick and simple pixel operations.
View ArticleNew Post: Scaling large images
Thank you for answer. I'm using folowwing code:MagickNET.SetCacheThreshold(int.MaxValue); MagickNET.SetTempDirectory(@"D:\"); using (var img = new MagickImage(@"D:\sample.psd")) { img.ColorType =...
View ArticleNew Post: Scaling large images
Also tried to do the same with imagemagick command line tool, took about 10 seconds and utilized cpu (13%) and memory(1.8 Gb).
View Article