Michele Marostica
Michele Marostica
I found the issue and "solved" it. I had to rename the operators _min_ and _max_ to _min2_ and _max2_: ```F# let min2 (x:Expression) (y:Expression) : Expression = FunctionN (Min,...
I saw that setting the palette manually I get what I was looking for: ``` palette.add(iq.utils.Point.createByRGBA(0, 0, 0, 255)); // black palette.add(iq.utils.Point.createByRGBA(255, 255, 255, 0)); // white ``` but why...
Hi, I'm writing an app to render ZPL commands and I'm facing the same problem. I need a way to set the barcode bar width and wide bar to narrow...
Yeah, that's what I did. I render the barcode without setting the width and then render it again with the width I want using the resulting width of the first...
The solution is not optimal for the wide-to-narrow bar ratio because that's not what the zebra printer does so I have big imperfections between the rendering and the printer label....
As example for the CODE39 format the edit should be in the method: ``` private static void toIntArray(int a, int[] toReturn) { for (int i = 0; i < 9;...
Hi I need to do the same, the problem is that the component is generating a `` with an `` inside. In order to do what we need, the selector...
I forked this project and added a component that can be used as inside an SVG: Please tell me if it make sense, or if there is a better way...