Search found 8 matches

by rondo
2019-03-25T06:24:47-07:00
Forum: Magick.NET
Topic: Correctly convert from ColorCMYK to MagickColor
Replies: 4
Views: 44500

Re: Correctly convert from ColorCMYK to MagickColor

Thanks! I will check it out soon!
by rondo
2019-03-21T06:45:27-07:00
Forum: Magick.NET
Topic: Correctly convert from ColorCMYK to MagickColor
Replies: 4
Views: 44500

Re: Correctly convert from ColorCMYK to MagickColor

Here is my full code ColorCMYK cmkyColor = new ColorCMYK(255, 0, 0, 0, 255); MagickColor thisColor = cmkyColor.ToMagickColor(); Bitmap bmp = new Bitmap(10, 10); using (Graphics g = Graphics.FromImage(bmp)) { SolidBrush brush = new SolidBrush(thisColor); g.FillRectangle(brush, 0, 0, 10, 10); } When I...
by rondo
2019-03-20T13:13:09-07:00
Forum: Magick.NET
Topic: Correctly convert from ColorCMYK to MagickColor
Replies: 4
Views: 44500

Correctly convert from ColorCMYK to MagickColor

I am using MagickNet-Q8-64X. I am trying to convert a cmyk color to an rgb color. ColorCMYK cmkyColor = new ColorCMYK(255, 0, 0, 0, 255); MagickColor thisColor = cmkyColor.ToMagickColor(); When I do the above code it seems to just put the 255 from the cyan value as the red value, so I end up with re...
by rondo
2018-11-26T11:05:53-07:00
Forum: Magick++
Topic: Different Results From Magick++ and MagickNet
Replies: 2
Views: 41295

Re: Different Results From Magick++ and MagickNet

Ahh, good catch. Thank you!
by rondo
2018-11-26T09:28:16-07:00
Forum: Magick++
Topic: Different Results From Magick++ and MagickNet
Replies: 2
Views: 41295

Different Results From Magick++ and MagickNet

I have created a program in MagickNet that calculates the number of pixels used on each CMYK channel. I have rewritten this program in Magick++, but I seem to get different results when I test it out on the same image. Is the channel separation different for Magick++ and MagickNet? //MagickNet int[]...
by rondo
2018-11-19T12:41:07-07:00
Forum: Magick++
Topic: Download for DLL and LIB
Replies: 2
Views: 40827

Re: Download for DLL and LIB

I am on visual studio community 2017. I have downloaded the source and built it. But when I try to use it in my own project I get many "unresolved external symbol" errors. I have already looked at the other posts about that error and they did not help. Also, there are no dll files created ...
by rondo
2018-11-19T11:54:58-07:00
Forum: Magick++
Topic: Download for DLL and LIB
Replies: 2
Views: 40827

Download for DLL and LIB

For the past few days I have been struggling to build and use Magick++. I just want to be able to include the library in a C++ project and use it. From what I have been reading, it seems like all I need to accomplish this is the DLL file and the LIB file. Is there anywhere I can download a dll and a...
by rondo
2018-11-15T13:51:58-07:00
Forum: Magick++
Topic: Using Magick++ in Visual Studio 2017
Replies: 0
Views: 44486

Using Magick++ in Visual Studio 2017

I have followed all of the steps successfully in the post here: https://legacy.imagemagick.org/script/install-source.php#windows However, I still do not know how to use the Magick++ library in my own project. When I create a new project in Visual Studio 2017 what are the steps to use the Magick++ li...