New Post: Custom font from file.
Hi. I've tried the method above, as well as adding the font to a types.xml that I've placed in the bin directory of my web application (I don't have access to directories outside the web root). My code...
View ArticleNew Post: Custom font from file.
Unfortunately, I can't. This is a licensed font that is created for a client. I can send it through e-mail though. I've sent a message via the codeplex contact form. I've tried other fonts as well, but...
View ArticleNew Post: Custom font from file.
Hi. Looking at my code again, I discovered my EPIC FAIL! Instead of "path/to/font.ttf", I had "path/to/font.tff"! We don't use True-Fail Fonts yet... That's what you get when coding at 1 AM in the...
View ArticleNew Post: Composite Multiply Gray Scaled Images
I was able to find the issue and this will be fixed in the next release. I also added a new unit test to make sure this stays fixed.
View ArticleNew Post: Custom font from file.
I am happy to hear that you figured out how to solve it. I did not get your message through CodePlex, did you get mine?
View ArticleNew Post: Appends frame throws System.AccessViolationException
Hello I'm trying to add specified frame to the image:image.Quality = quality; image.Frame(width, height); image.Write(stream); but it throws exception on the second line(image.Frame...
View ArticleNew Post: Appends frame throws System.AccessViolationException
I just tried the following code:using (MagickImage img = new MagickImage("logo:")) { img.Quality = 90; img.Frame(50, 50); }And it executed without any problems. Can you create a small project that I...
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
Hello, I have to adjust image intensity and then apply blue tint to an image using below mentioned algorithm written in “Interactive Data Language” (IDL). Most commonly, photographs are three channel...
View ArticleNew Post: Appends frame throws System.AccessViolationException
Hi Dirk, Here it is:https://www.dropbox.com/s/e9byojkjn4mdwdu/Magick.Net.Example.zip?dl=0 See methods from class FrameImage. (I've added some test code to the standard Magick.NET.Example project).
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
I think you should take a look at the Fx method of MagickImage. You can use that to do mathematical operations on channels. You can find the documentation here: http://www.imagemagick.org/script/fx.php.
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
Thanks dlemstra for instant reply, can't we achieve above mentioned need through some methods in MagickImage class? I am badly stuck with this need and already spent a week but with no success. I am...
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
You could put your images on dropbox/onedrive. It would really help to get som visual examples. Or write your calculations in c# so they are easier to understand.
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
I don't have access to any dropbox/onedrive. Please share if you have any. I need to write code in C# but i got calculation in IDL as a reference. Please share your mail id, will send visual examples.
View ArticleNew Post: Appends frame throws System.AccessViolationException
Dirk were you able to reproduce the issue?
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
Dropbox is free and it is easy to create an account. I would recommend you to create one. You can contact me through CodePlex if you prefer to use e-mail.
View ArticleNew Post: Appends frame throws System.AccessViolationException
This is a spare time project and I did not have time yet to test this. I did just now and I am able to reproduce the issue. I will get back to this topic when I know more.
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
I have uploaded the visual on dropbox @ https://www.dropbox.com/s/vaa345b4zev3ozr/CodePlex_Discussion_639776_AdjustIntensity%26BlueTint.png?dl=0. Here you find the sample image and two step process to...
View Article