Converts STL to PLY. PLY is the format of scanning and research tooling — MeshLab, CloudCompare, Open3D and most photogrammetry pipelines — largely because it can carry arbitrary per-vertex data that STL cannot.
What PLY adds
Converting from STL does not invent that data, of course. What you gain is a format that can hold it once a tool downstream computes it, and that indexes vertices rather than repeating them.
One STL extension does carry over: some slicers store a colour in the unused attribute field of each binary triangle. Where that is present it is read and written as per-vertex colour, and you are told it happened.
ASCII or binary
STL repeats every vertex three times
Other names for this
Also searched as “stl to polygon file format”.
Questions
- Why would I use PLY over OBJ?
- Per-vertex colour and arbitrary per-vertex attributes, which OBJ cannot express. It is also what scanning and point-cloud tools expect.
- Will my model have colour?
- Only if the STL used the non-standard attribute-field colour extension, which some slicers write. Otherwise there is no colour to carry.
- Is my model uploaded?
- No. The parsing and rewriting happen in this tab. Models are frequently confidential — an unreleased product, a client’s part, a scan of something proprietary — and none of it is transmitted. Turn your Wi-Fi off and the tool keeps working.
- How large a model can I convert?
- There is no imposed limit; the ceiling is your device’s memory. A desktop browser handles files of roughly 2 GB and a phone about 400 MB. A 200 MB STL — around four million triangles — converts in a few seconds on a laptop.