New Post: Commandline -function polynomial
Thanks a lot for integrating this feature! Why did you overload the already existing evaluate function? Wouldn't it be better to create a new function called "function" as the commandline-switch...
View ArticleNew Post: Commandline -function polynomial
I agree with that you that using 'function' is more consistent but I don't like the name 'function'. I know it is not a reserved keyword in C++ or in C# but it feels reserved. The documentation states...
View ArticleNew Post: Commandline -function polynomial
Probably in a month from now. I just published a new release this weekend.
View ArticleNew Post: How to set ImageCollection (PSD) dpi?
How to set ImageCollection dpi?MagickReadSettings settings = new MagickReadSettings(); settings.Density = new PointD(150); using (MagickImageCollection images = new MagickImageCollection()) {...
View ArticleNew Post: Multiple layer (PSD) placing images on top of each other
How to put multiple images on top of each other, each of the 0,0 position to go? Image.page() does not work in vain it at the start value 0, and the end value maximum size of the picture. All images...
View ArticleNew Post: How to set ImageCollection (PSD) dpi?
How are you checking the DPI of your output image? The PSD writer use the Density of the first image in the collection. I am getting the correct output when I execute the following code:using...
View ArticleNew Post: Multiple layer (PSD) placing images on top of each other
I am not sure what you are asking? Do you want to put all the images from your input image (PSD) on top of each other? If that is want you want you could do the following:using (MagickImageCollection...
View ArticleNew Post: Multiple layer (PSD) placing images on top of each other
I want to save more images in the one PSD file. The first layer exclude the psd file, I would also like to save.using (MagickImageCollection psd = new MagickImageCollection()) { MagickImage[] image =...
View ArticleNew Post: Multiple layer (PSD) placing images on top of each other
I don't understand what you mean by this: I want to save more images in the one PSD file. The first layer exclude the psd file, I would also like to save. You have a PSD file and you want to add extra...
View ArticleNew Post: Multiple layer (PSD) placing images on top of each other
I create a new ImageCollection, add a multiple layer (min. 38), and save the imagecollection new psd file.
View ArticleNew Post: Multiple layer (PSD) placing images on top of each other
You should call Write on your MagickImageCollection if you want to write all the layers in a PSD file. You should also include an extra image as the first image that is the 'flattened' version of your...
View ArticleNew Post: Multiple layer (PSD) placing images on top of each other
Thus, the first layer has been is saved.MagickImage flattened = psd.Flatten(); psd.Insert(0, flattened); Positioning in turn found a bug: If separate save layers to file, and next save to psd, at that...
View ArticleNew Post: Multiple layer (PSD) placing images on top of each other
Are you sure that you used the correct positions? Your first image does not look close to the second image. You should set the positions yourself.
View ArticleNew Post: ImageMagick.MagickMissingDelegateErrorException
Recently I've started seeing the following exception in my production service (using Magick.NET-Q8-x64.7.0.0.0016). The only fix is to restart IIS. I should also note that I'm also tracking down an...
View ArticleNew Post: ImageMagick.MagickMissingDelegateErrorException
Oh, and I don't believe that it's anything related to any specific image. It happens for a number of images and an iisreset seems to resolve it.
View ArticleNew Post: ImageMagick.MagickMissingDelegateErrorException
Can you upgrade to the latest version and see if that resolves your issue(s)?
View ArticleNew Post: Cropping
Hi, I have a similar problem. I need to load a huge image and convert it to slightly overlapping tiles. Is there a better way, than cloning the original image and crop it? It would be great to have...
View ArticleNew Post: Cropping
There are several Clone overloads to do this:using (MagickImage image = new MagickImage()) { using (MagickImage area = image.Clone(10,10,50,50)) { } using (MagickImage area = image.Clone(new...
View ArticleNew Post: Loading progress
Hi, I am handling some large images (>16k x 8k). It takes a while to load these images. Is there some way to get the progress to be able to notify the user? Thank you. pet
View Article