cnr-isti-vclab / meshlab

The open source mesh processing system
http://www.meshlab.net
GNU General Public License v3.0
4.74k stars 822 forks source link

Unable to save texture: Missing plugin for file format #1527

Open ccdejene opened 1 month ago

ccdejene commented 1 month ago

Description

When attempting to save a 3D model with textures, MeshLab fails to save texture_0 etc. The error message indicates that the current pymeshlab version lacks a plugin to save the file format.

Error Message

texture_0 cannot be saved. Your MeshLab version has not plugin to save file format.

Environment

Steps to Reproduce

  1. Load a 3D model with textures into pymeshlab
  2. Save GLB to OBJ
  3. Attempt to save or export the model with textures

        ms = pymeshlab.MeshSet()
        ms.load_new_mesh(input_file)

        # Save as OBJ with explicit format specification
        ms.apply_filter('generate_by_merging_visible_meshes',mergevisible=True)
        ms.save_current_mesh(output_file, save_textures=True, save_vertex_color=True)
        ``
alemuntoni commented 4 weeks ago

Could you please provide the input mesh you are loading?