From 38be61ebb868c0b56c140286af8720b2e7d0de11 Mon Sep 17 00:00:00 2001 From: Julien Duroure <julien.duroure@gmail.com> Date: Thu, 20 Jan 2022 18:36:14 +0100 Subject: [PATCH] glTF exporter: images may be needlessly re-encoded in some cases --- io_scene_gltf2/__init__.py | 2 +- io_scene_gltf2/blender/exp/gltf2_blender_image.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py index c8fa899b7..a31fad68d 100755 --- a/io_scene_gltf2/__init__.py +++ b/io_scene_gltf2/__init__.py @@ -15,7 +15,7 @@ bl_info = { 'name': 'glTF 2.0 format', 'author': 'Julien Duroure, Scurest, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors', - "version": (1, 8, 7), + "version": (1, 8, 8), 'blender': (3, 0, 0), 'location': 'File > Import-Export', 'description': 'Import-Export as glTF 2.0', diff --git a/io_scene_gltf2/blender/exp/gltf2_blender_image.py b/io_scene_gltf2/blender/exp/gltf2_blender_image.py index 8ac272d8c..fc41b7f2e 100644 --- a/io_scene_gltf2/blender/exp/gltf2_blender_image.py +++ b/io_scene_gltf2/blender/exp/gltf2_blender_image.py @@ -189,8 +189,7 @@ class ExportImage: def __encode_from_image(self, image: bpy.types.Image) -> bytes: # See if there is an existing file we can use. data = None - if image.source == 'FILE' and image.file_format == self.file_format and \ - not image.is_dirty: + if image.source == 'FILE' and not image.is_dirty: if image.packed_file is not None: data = image.packed_file.data else: -- GitLab