A Python package for converting 3D files to images.
Project description
model-to-image
model-to-image is a Python package that converts 3D models (OBJ, GLB, and STL) into 2D images. It leverages libraries like pyrender, pyvista, trimesh, and matplotlib to render and capture images from different viewpoints. This is useful for generating previews, thumbnails, or for use in applications where 3D rendering is not feasible.
Features
- OBJ to Image: Converts
.objfiles to PNG images usingpyvista. - GLB to Image: Converts
.glbfiles to PNG images usingpyrender. Handles scene setup, camera positioning, and lighting automatically. Uses EGL on Linux for offscreen rendering. - STL to Images (Multiple Views): Converts
.stlfiles to multiple PNG images, capturing "front", "back", "left", and "right" views usingmatplotlib. - Error Handling: Includes robust error handling to catch and report issues during file processing. Returns informative error messages.
- In-Memory Operations: Primarily uses in-memory
io.BytesIOobjects for efficient image handling, avoiding unnecessary disk I/O. - Dependencies automatically installed: Includes
pyrender,trimesh,pyvista,matplotlib,Pillowand the rest of the requirements.
Installation
pip install 3d-to-image
On Linux, the pyrender portion (GLB conversion) requires an EGL-capable system. If you encounter issues, ensure you have the necessary EGL drivers installed. You may also need to install additional system packages like libgl1-mesa-dev and libegl1-mesa-dev (on Debian/Ubuntu):
sudo apt-get update # or your distribution's equivalent
sudo apt-get install libgl1-mesa-dev libegl1-mesa-dev
If you encounter an error involving OSError and OSMesa, install:
sudo apt-get install libosmesa6-dev
And set the following environment variable prior to running:
export PYOPENGL_PLATFORM=osmesa
Usage
The package provides three main functions: process_obj, glb_to_image, and process_stl.
from model_to_image import process_obj, glb_to_image, process_stl
import io
# --- OBJ to Image ---
obj_image_bytes = process_obj("path/to/your/model.obj") # Returns a BytesIO object
if obj_image_bytes:
with open("output_obj.png", "wb") as f:
f.write(obj_image_bytes.getvalue())
print("OBJ image saved.")
else:
print("OBJ conversion failed.")
# --- GLB to Image ---
with open("path/to/your/model.glb", "rb") as f:
glb_bytes = f.read()
glb_image_bytes = glb_to_image(glb_bytes) # Returns a BytesIO object or an error string
if isinstance(glb_image_bytes, io.BytesIO):
with open("output_glb.png", "wb") as f:
f.write(glb_image_bytes.getvalue())
print("GLB image saved.")
else:
print(glb_image_bytes) # Print the error message
# --- STL to Multiple Images ---
stl_images = process_stl("path/to/your/model.stl") # Returns a dictionary of BytesIO objects
if "error" in stl_images:
print(stl_images["error"])
else:
for view, img_bytes in stl_images.items():
if img_bytes: # Check if img_bytes is not None
with open(f"output_stl_{view}.png", "wb") as f:
f.write(img_bytes)
print(f"STL {view} image saved.")
Explanation:
Import: Import the necessary functions from the model_to_image package.
process_obj:
Takes the path to an OBJ file as input.
Returns an io.BytesIO object containing the PNG image data, or None on failure.
glb_to_image:
Takes the GLB file content as bytes (file_bytes) as input.
Returns an io.BytesIO object containing the PNG image data, or a string describing the error on failure.
process_stl:
Takes the path to an STL file as input.
Returns a dictionary. The keys are view names ("front", "back", "left", "right"), and the values are io.BytesIO objects containing the PNG image data for each view, or None if a view failed. If the entire process failed, it returns a dictionary with an "error" key containing the error message.
Saving Images: The example code demonstrates how to save the image data from the BytesIO objects to files. The key improvement here is the use of .getvalue() to get the bytes from the BytesIO object before writing to the file.
Contributing
Contributions are welcome! Please feel free to submit issues or pull requests.
License
This project is licensed under the Creative Commons Attribution-NoDerivatives (CC BY-ND) License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file 3d_to_image-0.1.2.tar.gz.
File metadata
- Download URL: 3d_to_image-0.1.2.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
477f4482a2e5435c45eafdcd3e046a360ce575494f9623620241302dd3ebf294
|
|
| MD5 |
a33a337e446c0ba27cb1028be8be863d
|
|
| BLAKE2b-256 |
1e3b6f7f80bc674574d652f5210e8b57c47634cdf74c965099cc138ec83ed777
|
File details
Details for the file 3d_to_image-0.1.2-py3-none-any.whl.
File metadata
- Download URL: 3d_to_image-0.1.2-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5abea4a75ee73a13095c432761c05f6c9566f660e0fa3ed11bb414ca97a9744c
|
|
| MD5 |
bfd7092cbbd55f21c159a2c5b1fd8523
|
|
| BLAKE2b-256 |
581fabc88e1ccea22faa6b0ceaf10b2565e544de7d5a1f8eb9c515614b15de48
|