New Post: GetAttribute date:create returns current time instead of file...
Are you reading from a stream or from a file?
View ArticleNew Post: GetAttribute date:create returns current time instead of file...
When the image is read from a stream it has no clue about the original file. This means it cannot determine when the image was created and it will use the current time. But I don't understand why the...
View ArticleNew Post: GetAttribute date:create returns current time instead of file...
That would be great. The discrepancy between no exif profile and having the exif attribute has been a big mystery to me throughout my usage of this library.
View ArticleNew Post: Magick net parameters
Hello, I know this is an old thread, but my question is pretty relevant. I'm trying to make all the processing to be in memory as much as possible so I don't have any of the magick-* files in my temp...
View ArticleNew Post: Magick net parameters
The memory limit is unlimited by default. I am guessing that you are not running your application in a 64bit application pool. When you run your app inside a x86 application pool you will hit a memory...
View ArticleNew Post: How to tell MagickNet 7 to use more CPU
Hi , I am using magick.net for some years. I upgraded about couple of month ago to magick.net version 7.0.3.500 and I see that many thing improved specially the performance in Parallel mode. Now when I...
View ArticleNew Post: How to tell MagickNet 7 to use more CPU
I used to enable OpenMP that would multithreaded composite actions. But I wanted to get rid of the Visual Studio C++ Redistributable and to do that I had to drop support for OpenMP. Due to that change...
View ArticleNew Post: How to tell MagickNet 7 to use more CPU
Thanks for your answer. The splitting of the composite action is very interesting. I dont know about it. is there any sample, documentation that I can look at it ? this is my code. can I also split the...
View ArticleNew Post: Edge blending for tiles
Hi Dirk, The last discussion topic reminded me to ask you something. I've been experimenting with using tiles and montage to speed up the processing of heavier effects. The problem with...
View ArticleNew Post: Edge blending for tiles
I wonder if you need to do the manually alpha blending. A lot of the algorithms work with a source image and a destination image. Which means that during the operation the destination image won't be...
View ArticleNew Post: How to tell MagickNet 7 to use more CPU
What you will need to do is create tiles of your image with the CropToTiles method and then combine them together after you did the operation. I might be able to create a proof of concept example later...
View ArticleNew Post: GetAttribute date:create returns current time instead of file...
It appears the exif information is stored a bit odd inside the TIFF file format. I don't think it will be easy to read it and store it in the "normal" exif format though. I think you will need to use...
View ArticleNew Post: Edge blending for tiles
Good to know, thanks! I'll create a component (possible an extension method) that may be able to do this. If so, I'll make it available in case it makes sense to add it to MagickNET or is useful for...
View ArticleNew Post: Mosaic different size images
I'm trying to add a small image to a blank canvas, and then overlay a translucent background image (the same size as the canvas) over all this. And then output as a .gif file. Here' the code I'm using,...
View ArticleNew Post: Edge blending for tiles
Sounds like a good idea to make this available in the library. Maybe something like this:publicclass NeedsName { public NeedsName(int tileSize, int padding) { } public DoMultiThreadedAction(MagickImage...
View ArticleNew Post: Mosaic different size images
I am not sure what you are trying to accomplish but I don't think you will need the Drawables class. You can use the Composite method to draw one image on top of another image. You should give that a...
View ArticleNew Post: How to tell MagickNet 7 to use more CPU
Now something very strange is happening: I am working on a powerful computer windows 10, and 30 Gig Ram and Dual core cpu and ... Our production evironment have two powerful computer for image...
View ArticleNew Post: How to tell MagickNet 7 to use more CPU
I have an update about the situation : Now we know what cause the 100% cpu usage. We installed a new graphic card and installed the AMD Catalyst software and driver. After that the CPU usage goes high...
View ArticleNew Post: How to tell MagickNet 7 to use more CPU
I am starting to wonder if you are not seeing 100% because some of the work is being done by the GPU. What happens when you disable OpenCL?
View Article