Search found 5 matches

by Murderface
2012-04-13T09:55:45-07:00
Forum: Users
Topic: [c++] need some help
Replies: 8
Views: 10966

Re: [c++] need some help

I know that work with convert program... this is not the question here.
I'm totaly stuck... damn! nobody can help me ?
by Murderface
2012-04-12T22:35:58-07:00
Forum: Users
Topic: [c++] need some help
Replies: 8
Views: 10966

Re: [c++] need some help

UP
I'm still not able to get my voronoi. I need help...
by Murderface
2012-04-12T09:11:59-07:00
Forum: Users
Topic: [c++] need some help
Replies: 8
Views: 10966

Re: [c++] need some help

Sorry. I saw Magick::Image and assumed that was the case.
Applogies. :oops:
no problem
How even the number of floats need for a color is variable.
I think color range here is between 0 and 1, I'm pretty sure of that.
It depends on no tonly the channel setting, but also in if channels are ...
by Murderface
2012-04-11T21:21:39-07:00
Forum: Users
Topic: [c++] need some help
Replies: 8
Views: 10966

Re: [c++] need some help

MagickCore image and MagickWand are not the same.

Their is a magick wand function to extract the current image pointer from a magick wand.

But you also can use MagickSparseColorImage()

What is missing is a function to convert a string with coordinates and colrnames into the floating point array ...
by Murderface
2012-04-11T16:50:13-07:00
Forum: Users
Topic: [c++] need some help
Replies: 8
Views: 10966

[c++] need some help

Hi I try to create a voronoi diagram with IM inside my c++ program. I have a lot of difficulties...

my incudes :
#include <Magick++.h>
#include <MagickCore.h>
#include <string>
#include <iostream>
#include <list>

my try:
std::string backGround = "xc:#ffffff";
Magick::Image img_d;
MagickCore ...