New Post: Converting transparent PNG to Jpeg
Great. It works. You have added a new TransfromColorSpace method(in version 7.0.0.0015), it works in case if source and target profiles is not null. How can I transform image to SRBG color profile if...
View ArticleNew Post: Converting transparent PNG to Jpeg
One more question: I have a image with ColorProfile.AdobeRGB1998. image.GetAttribute("icc:description") returns null. image.ColorSpace is equals ColorSpace.sRGB. How can I determine which color profile...
View ArticleNew Post: Converting transparent PNG to Jpeg
You have added a new TransfromColorSpace method(in version 7.0.0.0015), it works in case if source and target profiles is not null. How can I transform image to SRBG color profile if it does not...
View ArticleNew Post: Converting transparent PNG to Jpeg
It looks like you already answered your own question: I have a image with ColorProfile.AdobeRGB1998. But you must be asking something else. Can you clarify your question? As I figured out the image...
View ArticleNew Post: The C++ module failed to load while attempting to initialize the...
The magick.net is working fine with AnyCpu.dll on local machine, but when I uploaded the build to my server which is x64 and included AnyCPU.dll I start getting the following error....
View ArticleNew Post: The C++ module failed to load while attempting to initialize the...
Do you see any files in the following folder: %TEMP%\Magick.NET.7.0.0.0015. It might be possible that your process cannot access the temp folder on your server. You change the cache folder for the...
View ArticleNew Post: Density not affecting font size
I am wondering if anyone else has run into this. From what I understand when you set the image density and the font size renders in relation to this...
View ArticleNew Post: ExifProfile.SetValue for ISOSpeedRatings throws exception
Hello I'm trying to set the value for ISOSpeedRatings tag:exifProfile.SetValue(ExifTag.ISOSpeedRatings, value); Magick.NET throws exception:Value should be an array. Parameter name: value. Looks like...
View ArticleNew Post: ExifProfile.SetValue for ISOSpeedRatings throws exception
I am reading the following in the specifications: Indicates the ISO Speed and ISO Latitude of the camera or input device as specified in ISO 12232....
View ArticleNew Post: Density not affecting font size
It seems that the on the command line the density of the image is used when drawing fonts. The Magick++ API does not set the density for drawing when the density of the image is changed. I could fix...
View ArticleNew Post: Density not affecting font size
Thanks. Using the "fix" works perfect. I will just stick with that.
View ArticleNew Post: Density not affecting font size
In the next version of Magick.NET (7.0.0.0016) you can set the density for drawing with the new DrawableDensity class.
View ArticleNew Post: How join the images processed by tilecrop ?
I want process single tile and afetr recompose the image with the tiles proceesed ? there is an inverse method of croptile ? Tanks
View ArticleNew Post: Unexpected end-of-file @ error/psd.c/ReadPSDLayers/1277
Hi I am getting following error using latest version when reading psd file; however it worked fine with last version of 6. Unexpected end-of-file @ error/psd.c/ReadPSDLayers/1277 Following is the link...
View ArticleNew Post: Unexpected end-of-file @ error/psd.c/ReadPSDLayers/1277
This seems to be an issue that only happens with certain PSD files. I can open the PSD image from my unit test without any problems in 7.0.0.15. If you need the x64 or the x86 version I can provide you...
View ArticleNew Post: How join the images processed by tilecrop ?
There is no method that does the reverse but you can recreate the image with the help of the Page property of MagickImage. Below is a simple example:using (MagickImage image = new...
View ArticleNew Post: How can Rotate image without losing the size and alignment
Hi, I am first time using the Magick.Net to perform image operations. When I use the Rotate function to rotate the image, it's rotate the image but reduce the image size as well as lost the alignment....
View ArticleNew Post: How can Rotate image without losing the size and alignment
Can you clarify what you mean by alignment? And the size of the image can change depending on the output format. What is your input and what is your output format?
View ArticleNew Post: How can Rotate image without losing the size and alignment
When i rotate any image, the image position keep change every time (means If i perform rotation action 2 to 3 times with 50 degree rotation value, the image goes out of the frame.). And I am using Jpeg...
View Article