Skip to main content
Question

Output sorted features as PNG

  • October 25, 2023
  • 4 replies
  • 22 views

jp12212
Contributor
Forum|alt.badge.img+4

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?

4 replies

takashi
Celebrity
  • October 25, 2023

Hi @jp12212​ ,

What are described in the "sorted list"? PNG filenames or somthing else?


jp12212
Contributor
Forum|alt.badge.img+4
  • Author
  • Contributor
  • October 25, 2023

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.

 

image


takashi
Celebrity
  • October 25, 2023

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.

 

image

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?


nielsgerrits
VIP
Forum|alt.badge.img+64

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).