I have a sorted list and want to output as a PNG, which transformer should I use?
I couldn't go direct from a sorter to a PNG Writer?
I have a sorted list and want to output as a PNG, which transformer should I use?
I couldn't go direct from a sorter to a PNG Writer?
It's strings and another column of numbers. Just want to save that sorted list into a PNG.
Not sure if that's possible with styling etc. or as a table?
Was looking for something similar to the HTML generator but that would just print the features as bullet points or 1,2,3 etc.
It's strings and another column of numbers. Just want to save that sorted list into a PNG.
Not sure if that's possible with styling etc. or as a table?
Was looking for something similar to the HTML generator but that would just print the features as bullet points or 1,2,3 etc.
PNG is an image data format, I cannot imagine how you want to transform the strings and numbers to an image.
Can you please share the list and explain what is your expected image a bit more specifically?
I do not know why you want it, but you can always explode the list to features (ListExploder) create points (VertexCreator) create labels (LabelPointReplacer) rasterize vector to raster (ImageRasterizer) and write the png (FeatureWriter).