New Post: ImageMagick.NET - Failed to load embedded x64 assembly
Ok, you're right. I had thought it to be a 32 bit system, and I'd loaded the 32 bit C++ Redistributable. Installing the 64bit Redistributable solved the problem.
View ArticleNew Post: Overlay with partial alpha
Well version 09 fixed that bug, But seems to have introduced another. Now, the circleMask only sometimes masks correctly.It's leaving residual pixels from the black area of the mask ( leaving squareish...
View ArticleNew Post: Overlay with partial alpha
Can you post your images so I can reproduce the problem?
View ArticleNew Post: .ai being treated as .pdf
Using the following .ai file/code: file:https://www.dropbox.com/s/k38poj21mcazaza/CN%20Studios%20Logo.ai?dl=0 code: MagickReadSettings settings = new MagickReadSettings(); settings.ColorSpace =...
View ArticleNew Post: .ai being treated as .pdf
This is happening because the AI file is read by the PDF coder. I will have to see if I can tweak this that it will report AI instead of PDF as the format. Can you allow me to use the file you provided...
View ArticleNew Post: .ai being treated as .pdf
You can absolutely use that file. Let me know if you are unable to download it.
View ArticleNew Post: BPP
Dirk, But it seems that the TIFF file is created properly according to the TIFF Spec. This is from "Section 5: Palette-color Images".PhotometricInterpretation = 3 (Palette Color). ColorMap Tag = 320...
View ArticleNew Post: SVG to Raster Inverting Some Fills
When converting an SVG with fills to PNG format, some of the fills are being inverted and I'm not sure why. Anyone ever see this and what did you do about it? Here's a link to a screenshot of my issue...
View ArticleNew Post: Cropping to PDF
I'm using the following code to crop a region of interest in an image, then save only the cropped section to a new file:Dim g As New ImageMagick.MagickGeometry(rect) image.Crop(g) image.RePage()...
View ArticleNew Post: BPP
It is reporting it correctly. 65535 is the maximum value of an unsigned short which is 16-bit. And this is how a color is represented in the color map. 3 times 16-bit = 48-bit.
View ArticleNew Post: SVG to Raster Inverting Some Fills
The rsvg library that is used to read SVG files does not understand the color when it is written in UPPERCASE. The following works: rgb(71,59,52), but it does not understand RGB(71,59,52). p.s. Are you...
View ArticleNew Post: SVG to Raster Inverting Some Fills
I guess I was not aware, but not sure how that would help me in this case? How do I need to implement them....?
View ArticleNew Post: SVG to Raster Inverting Some Fills
The comment about the settings was just that you create it but don't pass it as a parameter to the MagickImage constructor. That won't help you with this problem. The only thing that you could do is...
View ArticleNew Post: BPP
I don't understand Dirk. According to the spec every Palette Color image that has white will be represented as 65535, 65535, 6553. That doesn't mean every Palette Color image is 48-bit. My image is...
View ArticleNew Post: BPP
Your image uses 8-bits to store the index in the color palette. You might consider this image 8-bit but ImageMagick looks at the bits that are necessary to represent one pixel. Each channel in the...
View ArticleNew Post: Cropping to PDF
This was an unknown issue and it will be fixed in the next release of Magick.NET.
View ArticleNew Post: Using Magick.NET without installing VS 2012 C++ Redistributable EXE
It didnt work. I tried many things for some weeks :( Below is the error Failed to load embedded assembly: Could not load file or assembly 'Magick.NET-Q16-x86.dll' or one of its dependencies. The...
View ArticleNew Post: Using Magick.NET without installing VS 2012 C++ Redistributable EXE
Thank you for getting back to this topic. Please let me know if you manage to get it working later.
View ArticleNew Post: IPTC data unreadable
I've done a bit more testing, and I think that this issue only occurs if I have written a new IPTC profile to the image. i.e. If the file had an IPTC profile before, and I edit the image and write to a...
View Article