Search found 3 matches

by yujincheng08
2013-11-09T04:32:39-07:00
Forum: Bugs
Topic: nearbyint name conflicts
Replies: 0
Views: 3545

nearbyint name conflicts

in
magick/magick-baseconfig.h
line 205

Code: Select all

#define nearbyint(x)  ((ssize_t) ((x)+0.5))
nearbyint is excited in vs' header file <math.h>
by yujincheng08
2013-11-08T20:10:13-07:00
Forum: Users
Topic: Translate these cmdline into Magick++
Replies: 0
Views: 3306

Translate these cmdline into Magick++

convert ( -page +0+0 -label "a" 1.jpg -background none -mosaic -set colorspace RGB ) ( -page +0+0 -label "b" 2.png -background none -mosaic -set colorspace RGB ) ( -clone 0--1 -background none -mosaic ) -alpha On -reverse "out.psd" This is my comdline. I have tried to ...
by yujincheng08
2013-11-08T11:14:08-07:00
Forum: Magick++
Topic: Missing the firt layer while using writeImages()
Replies: 0
Views: 7359

Missing the firt layer while using writeImages()

Here my code: images.push_back(Image("1.png")); images.push_back(Image("2.png")); images.push_back(Image("3.png")); for (auto i = images.begin(); i < images.end(); i++) { i->label(i->fileName()); i->magick("PSD"); i->backgroundColor("none"); i->color...