XConvert
Downloads
Pricing

IGES Converter

Free online IGES (.iges/.igs) converter. Convert IGES CAD files to STL, GLB, glTF, OBJ, PLY in your browser — no upload, no watermark.

Input (STL)
🧊
Choose a 3D model file to convert
Output (OBJ)
🧊
3D preview will appear here

How to Convert IGES to a 3D Mesh

  1. Upload Your IGES File: Drag and drop your .iges or .igs file, or click "Choose 3D file". The two extensions are the same format, so either works. Your CAD file is read directly in the page using a WebAssembly build of the OpenCASCADE geometry kernel — the engine loads once, then conversions are near-instant.
  2. Pick an Output Format: Use the "To format" dropdown to choose a mesh target — GLB, glTF, OBJ, STL, PLY, or 3MF. GLB is selected by default because it packs the whole result into one self-contained file.
  3. Confirm the Tessellation in the Preview: IGES stores exact surfaces and curves, so converting tessellates them into a triangle mesh. Spin the model in the 3D preview to confirm the curved surfaces look smooth and the geometry is intact before you export.
  4. Convert and Download: Click Convert and save the result. The conversion runs entirely in your browser — your CAD file never leaves your device, and there is no sign-up and no watermark.

Popular IGES Conversions

  • IGES to STL — a watertight triangle mesh for slicers and 3D printing
  • IGES to GLB — one self-contained binary file for the web, AR, and game engines
  • IGES to glTF — the JSON-based "JPEG of 3D" for Three.js and runtime scenes
  • IGES to OBJ — a universal mesh that opens in Blender, Maya, and almost any 3D app
  • IGES to PLY — for scan, point-cloud, and research tooling that expects PLY
  • IGES to 3MF — the modern, color-aware 3D-printing container that supersedes STL

Why Convert an IGES File?

IGES (Initial Graphics Exchange Specification, officially Digital Representation for Communication of Product Definition Data) was first published in March 1980 by the U.S. National Bureau of Standards — now NIST — as a neutral way to move CAD data between otherwise incompatible systems. Its last version, IGES 5.3, was finalized as an ANSI standard in 1996, and active development effectively stopped after STEP (ISO 10303) arrived in 1994. For new CAD interchange, STEP has largely superseded it, but decades of legacy parts, vendor exports, and archived designs still ship as .iges and .igs.

The important thing to understand is what an IGES file holds. It is a B-rep and surface format: it describes exact mathematical curves, trimmed surfaces, and solids — not triangles. That is the opposite of a mesh format. So almost everything downstream of CAD — slicers, game engines, AR viewers, web pages, scan tools — cannot read IGES directly and needs a triangle mesh instead. Converting bridges that gap by tessellating the precise surfaces into a mesh the destination can actually open:

  • 3D printing (STL / 3MF): Slicers like Cura and PrusaSlicer expect a watertight triangle mesh, never B-rep surfaces. STL is the universal default; 3MF, published by the 3MF Consortium since 2015, also carries color and units in one package.
  • Web, AR, and game engines (GLB / glTF): glTF 2.0, maintained by the Khronos Group and ratified as ISO/IEC 12113:2022, was built for runtime delivery. A .glb loads cleanly in <model-viewer>, WebXR, Three.js, Unity, and Unreal.
  • General modeling and scans (OBJ / PLY): OBJ is understood by virtually every 3D application; PLY is the common target for point-cloud and research pipelines.

One thing this tool deliberately does not do is the reverse. There is no mesh-to-IGES export here — turning a triangle mesh back into clean B-rep surfaces is a hard reverse-engineering problem, not a file conversion, so this hub is one-way: IGES in, mesh out.

IGES vs. Its Common Conversion Targets

Format Type Geometry stored Materials / color Best for
IGES (.iges / .igs) B-rep + surfaces + wireframe (text) Exact curves & surfaces No Legacy CAD interchange
STL (.stl) Triangle mesh Tessellated triangles only None 3D printing / slicers
3MF (.3mf) Zipped XML print package Tessellated triangles Color + units Modern color 3D printing
GLB / glTF Binary / JSON runtime scene Tessellated triangles PBR materials + textures Web, AR, game engines
OBJ (.obj) Text mesh (often + .mtl) Tessellated triangles External .mtl materials Broad modeling-app support
PLY (.ply) Polygon mesh Tessellated triangles Per-vertex color 3D scans, point clouds, research

Frequently Asked Questions

Can I convert a mesh like STL or OBJ back into IGES?

Not here, and generally not by simple conversion. IGES stores exact B-rep surfaces and curves, while STL, OBJ, GLB, and PLY store flat triangles. Going from a triangle mesh back to clean parametric CAD surfaces is a reverse-engineering task — fitting surfaces to the mesh — and tools that attempt it (like Fusion 360's Mesh-to-BRep or dedicated reverse-engineering software) approximate the result rather than recover the original geometry. This converter is one-way by design: it reads IGES and writes a mesh, never the other direction.

Does converting IGES to a mesh lose accuracy?

Some, and that is unavoidable. Tessellation replaces IGES's exact curved surfaces with a finite number of flat triangles, so a perfectly round hole becomes a many-sided polygon. The denser the tessellation, the closer the mesh hugs the true surface and the larger the file. For 3D printing this is fine — the slicer works in triangles anyway and the printer's resolution is the real limit. For dimensional inspection or further CAD editing, you want to keep the original IGES (or better, a STEP file), because the mesh is an approximation of the geometry, not the geometry itself.

Should I convert IGES to STL or to 3MF for 3D printing?

Both give you a printable mesh; they differ in what rides along. STL is geometry only and is read by essentially every slicer, which makes it the safe default for a single-material print. 3MF, an XML-and-ZIP package from the 3MF Consortium (2015), can also store color, multiple materials, units, and print metadata in one file, so it is the better choice for color or multi-material prints on slicers and printers that support it.

IGES or STEP — which should I keep my CAD model in?

For anything new, prefer STEP (ISO 10303). STEP is the modern neutral CAD format: it reliably preserves solid B-rep geometry, assemblies, and metadata, and every current CAD system reads and writes it. IGES dates to 1980 and its last revision, 5.3, is from 1996; it more often stores loose surfaces that can have gaps or missing faces. You will still receive IGES from older systems and archives, which is exactly when converting it to a usable mesh — or asking the sender for a STEP file — makes sense.

Why won't my IGES file open in a slicer or game engine directly?

Because those tools speak triangles, and IGES does not contain any. A slicer, Blender, Unity, or a web <model-viewer> all expect a tessellated mesh; IGES holds exact surfaces and curves that have to be converted into triangles first. Uploading the .iges here and exporting STL, OBJ, or GLB produces the mesh those programs can actually load.

Is my CAD file uploaded to a server when I convert it?

No. IGES conversion on this page runs entirely in your browser using a WebAssembly build of the OpenCASCADE geometry kernel — your file is read, tessellated, and downloaded on your own device, so the model never leaves your computer. That matters for proprietary or unreleased parts: there is no upload, no account, and no watermark. In our testing, a small IGES bracket exported to GLB after the engine finished loading, producing a single binary mesh from the source surfaces with no network upload.

Related Convert tools
Convert Iges To 3mfConvert Iges To GlbConvert Iges To GltfConvert Iges To ObjConvert Iges To PlyConvert Iges To Stl

Image Tools

Image CompressorCompress JPEGCompress PNGCompress GIFCompress WebPImage ConverterJPG ConverterImage Resizer

Video Tools

Video CompressorCompress MP4MP4 to GIFVideo to GIFVideo ConverterMP4 ConverterVideo Cutter

Audio Tools

Audio CompressorCompress MP3Compress WAVAudio ConverterMP3 ConverterFLAC to MP3Audio Cutter

Document Tools

Compress PDFMerge Images to PDFSplit PDFPDF to JPGUnzip FilesRAR Extractor

Converters

Time Zone ConverterMeeting PlannerIST to ESTTime Zone AbbreviationsUnit ConverterLength ConverterFlow Rate Converter
© 2026 XConvert.com. All Rights Reserved.
About UsPrivacy PolicyTerms of ServiceContactHelp Us Grow