I am working with imageDraw
and getting an odd error. If I just plugin values and don't try to use the ones I am retrieving from elsewhere, it works, but I have to draw the values for the margins and line height from other places and calculate stuff.
x = 50;
y = 800;
newImg = imageNew("", x, y);
imageSetAntialiasing(newImg, true);
setup['size'] = lineHeight*dpi;
setup['font'] = "Arial";
imageDrawText(newImg,img.text,topMargin,leftMargin,setup);
When I put each element in imageDrawText on a separate line, the error points to the attribute collection (setup). I did try this
setup['size'] = "#lineHeight*dpi#";
but it didn't work either.
The full error message at the top of the debug:
Error Occurred While Processing Request
Error casting an object of type
java.lang.Double
cannot be cast tojava.lang.String
to an incompatible type. This usually indicates a programming error in Java, although it could also mean you have tried to use a foreign object in a different way than it was designed.java.lang.Double
cannot be cast tojava.lang.String
There is something about asking for help that opens up channels for me. Found a solution. The issue was indeed the setup.size part of the attribute collection. Here is what worked:
Don't know why it wants that to be a string specifically. Seems kind of dumb because we are using it as a number.