re-project images now save as PNG's rather then TAGA's, should work around a problem photoshop has with saving taga's with alpha channels.

This commit is contained in:
Campbell Barton 2010-03-07 20:39:27 +00:00
parent 7f2817f65b
commit 581efb4346

@ -72,7 +72,7 @@ class ProjectEdit(bpy.types.Operator):
import os
import subprocess
EXT = "tga" # until we have a way to save as another format!
EXT = "png" # could be made an option but for now ok
image_editor = image_editor_guess(context)
for image in bpy.data.images:
@ -114,6 +114,7 @@ class ProjectEdit(bpy.types.Operator):
ProjectEdit._proj_hack[0] = image_new.name
image_new.filename_raw = filename_final # TODO, filename raw is crummy
image_new.file_format = 'PNG'
image_new.save()
subprocess.Popen([image_editor, bpy.utils.expandpath(filename_final)])