Windows Dynamic Libraries
Posted: 2013-02-23T17:05:54-07:00
Hi,
I need to change our implementation to use DLLs, previously we used static libraries. I have built it with the configure.exe.
It all builds and runs but the blobs are all 0 data length after write. A brief example of the code, which worked previous with static is
Thanks,
I need to change our implementation to use DLLs, previously we used static libraries. I have built it with the configure.exe.
It all builds and runs but the blobs are all 0 data length after write. A brief example of the code, which worked previous with static is
Code: Select all
m_Blob = new Blob();
Image myImage(Geometry(m_Columns,m_Rows),"gray0");
myImage.depth(8);
myImage.magick("RGB");
myImage.strokeColor("grey30");
myImage.fillColor("grey30");
myImage.strokeWidth(5);
myImage.strokeAntiAlias(true);
myImage.draw(DrawableRoundRectangle(0,0,m_Columns,m_Rows,16,16));
...
...
myImage.write(m_Blob);