Fixed using this before install:
./configure --with-modules
Search found 4 matches
- 2011-04-27T10:49:55-07:00
- Forum: MagickWand
- Topic: How can I make this to work ?
- Replies: 4
- Views: 25489
- 2011-04-26T11:14:22-07:00
- Forum: MagickWand
- Topic: How can I make this to work ?
- Replies: 4
- Views: 25489
Re: How can I make this to work ?
Running this :
typedef struct{
int ageMinimum;
int nbTotal;
int nbHommes;
int nbFemmes;
} trancheAge;
typedef struct{
int id;
char* nom;
trancheAge* donnees;
} pays;
void pyramideAges(pays p,int annee,int colonne){
MagickWand *mw;
DrawingWand *dw;
PixelWand *cw;
int i;
double ...
typedef struct{
int ageMinimum;
int nbTotal;
int nbHommes;
int nbFemmes;
} trancheAge;
typedef struct{
int id;
char* nom;
trancheAge* donnees;
} pays;
void pyramideAges(pays p,int annee,int colonne){
MagickWand *mw;
DrawingWand *dw;
PixelWand *cw;
int i;
double ...
- 2011-04-26T00:26:29-07:00
- Forum: MagickWand
- Topic: How can I make this to work ?
- Replies: 4
- Views: 25489
Re: How can I make this to work ?
I'll try to help by adding some infos :
I'm running Ubuntu 10.10
To install i followed this : http://www.imagemagick.org/script/insta ... e.php#unix
And I installed [sudo apt-get install] libmagickwand-dev
Did i miss something?
- 2011-04-25T11:41:16-07:00
- Forum: MagickWand
- Topic: How can I make this to work ?
- Replies: 4
- Views: 25489
How can I make this to work ?
Hey!
First of all I'am French, so sorry for my english!
I'am trying to run this program :
#include <stdio.h>
#include <stdlib.h>
#include <wand/MagickWand.h>
int main (int argc, char **argv){
MagickWand *mw;
DrawingWand *dw;
PixelWand *cw;
MagickWandGenesis ();
mw = NewMagickWand ();
dw ...
First of all I'am French, so sorry for my english!
I'am trying to run this program :
#include <stdio.h>
#include <stdlib.h>
#include <wand/MagickWand.h>
int main (int argc, char **argv){
MagickWand *mw;
DrawingWand *dw;
PixelWand *cw;
MagickWandGenesis ();
mw = NewMagickWand ();
dw ...