No processing of your file contents takes place on any server. You need no data-processing agreement with gottrix to handle confidential or business documents.
Hosted in GermanyGlobal Content Delivery
Origin servers at Hetzner in Germany, delivered worldwide through a content delivery network. Your file contents are never transmitted in the process - they never leave your device.
STL comes in two flavours: binary (compact, the usual case from CAD and 3D printing) and ASCII (plain text in which every triangle appears as readable lines). If you want to inspect a model, store it traceably in a version control system like Git, or compare two states (diff them), you need the text form. This tool reads your binary STL and writes the same model as ASCII STL.
The conversion is lossless for the geometry: every triangle and every coordinate is carried over unchanged, only the representation switches from bytes to text. The result begins with solid, lists a normal and three vertices per triangle, and ends with endsolid - exactly the structure a human can read and a text editor can compare line by line.
Everything runs entirely locally in the browser - your possibly confidential model never leaves your device. Honestly framed: ASCII STL is markedly larger than the binary form, but readable. For 3D printing itself the binary variant is usually a better fit (see STL ASCII to binary). A file that is not valid STL is rejected with a clear message.
Specifications
Specifications
Input formats
STL
Output format
STL
Batch processing
No
Processing
Locally in your browser (JavaScript)
File upload
None
In 3 steps
Drop your binary STL file.
The conversion runs automatically.
Download the readable ASCII STL.
Limitations: Converts binary STL to readable ASCII STL (lossless for the geometry): every triangle and coordinate is kept, only the representation switches to plain text. ASCII STL is markedly larger than the binary form. ASCII input is accepted too (passed through). There is no material, colour or texture to lose here, since STL never carries any of those to begin with - that already applies to the source file. A file that is not valid STL is rejected with a clear error.
FAQ
Why readable ASCII STL?
For inspecting individual triangles, storing traceably in Git and comparing two model states line by line.
Is any geometry lost?
No. The conversion is lossless for the geometry; only the representation switches from bytes to text.
Does the file get larger?
Yes, ASCII STL is markedly larger than binary STL. For storage and printing the binary form is more compact.
Is my file uploaded?
No, the conversion happens entirely locally in the browser; your model never leaves your device.