我已经知道为什么它会在代码方面给出该错误。 问题是,我今天开始使用该库本身,并按照本教程发现了这一点。
我安装了该库的“ ImageMagick-7.0.9-1-Q16-x64-dll”版本,并试图找到产生该错误的最短代码,即:
#include <Magick++.h>
int main(){
Magick::Quantum result = Magick::Color("black");
}
鉴于本教程(下一篇),应该存在一种从Magick :: Color转换为Magic :: Quantum的方法
// Example of using an image pixel cache
Image my_image("640x480", "white"); // we'll use the 'my_image' object in this example
my_image.modifyImage(); // Ensure that there is only one reference to
// underlying image; if this is not done, then the
// image pixels *may* remain unmodified. [???]
Pixels my_pixel_cache(my_image); // allocate an image pixel cache associated with my_image
Quantum* pixels; // 'pixels' is a pointer to a Quantum array
// define the view area that will be accessed via the image pixel cache
int start_x = 10, start_y = 20, size_x = 200, size_y = 100;
// return a pointer to the pixels of the defined pixel cache
pixels = my_pixel_cache.get(start_x, start_y, size_x, size_y);
// set the color of the first pixel from the pixel cache to black (x=10, y=20 on my_image)
*pixels = Color("black");
// set to green the pixel 200 from the pixel cache:
// this pixel is located at x=0, y=1 in the pixel cache (x=10, y=21 on my_image)
*(pixels+200) = Color("green");
// now that the operations on my_pixel_cache have been finalized
// ensure that the pixel cache is transferred back to my_image
my_pixel_cache.sync();
在以下几行给出该错误(不存在从“ Magick :: Color”到“ MagickCore :: Quantum”的合适转换函数)
*pixels = Color("black");
*(pixels+200) = Color("green");
答案 0 :(得分:0)
我相信您正在将数据类型与结构混淆。 pixels
代表Quantum
个部分的连续列表。
假设我们正在使用RGB色彩空间。您需要设置每个颜色部分。
Color black("black");
*(pixels + 0) = black.quantumRed();
*(pixels + 1) = black.quantumGreen();
*(pixels + 2) = black.quantumBlue();
要设置第200个像素,您需要将偏移量乘以每像素像素数。
Color green("green");
int offset = 199 * 3; // First pixel starts at 0, and 3 parts (Red, Green, Blue)
*(pixels + offset + 0) = green.quantumRed();
*(pixels + offset + 1) = green.quantumGreen();
*(pixels + offset + 2) = green.quantumBlue();