{"id":2234,"date":"2022-09-30T15:50:31","date_gmt":"2022-09-30T06:50:31","guid":{"rendered":"https:\/\/furcraea.verse.jp\/wp\/?p=2234"},"modified":"2022-09-30T15:50:32","modified_gmt":"2022-09-30T06:50:32","slug":"unrealengine-export-tga-by-python","status":"publish","type":"post","link":"https:\/\/furcraea.verse.jp\/wp\/2022\/09\/30\/unrealengine-export-tga-by-python\/","title":{"rendered":"[UnrealEngine] Export TGA by Python"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/furcraea.verse.jp\/wp\/wp-content\/uploads\/2022\/09\/image.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"296\" src=\"https:\/\/furcraea.verse.jp\/wp\/wp-content\/uploads\/2022\/09\/image-1024x296.png\" alt=\"\" class=\"wp-image-2235\" srcset=\"https:\/\/furcraea.verse.jp\/wp\/wp-content\/uploads\/2022\/09\/image-1024x296.png 1024w, https:\/\/furcraea.verse.jp\/wp\/wp-content\/uploads\/2022\/09\/image-300x87.png 300w, https:\/\/furcraea.verse.jp\/wp\/wp-content\/uploads\/2022\/09\/image-768x222.png 768w, https:\/\/furcraea.verse.jp\/wp\/wp-content\/uploads\/2022\/09\/image-1536x444.png 1536w, https:\/\/furcraea.verse.jp\/wp\/wp-content\/uploads\/2022\/09\/image-2048x593.png 2048w\" sizes=\"auto, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><\/a><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-python\" data-lang=\"Python\"><code>import unreal\n\nimport codecs\nimport os\ndef my_makedirs(path):\n    if not os.path.isdir(path):\n        os.makedirs(path)\n\nmy_makedirs(SaveDir)\nprint(&quot;SaveDir= &quot;+SaveDir)\nprint(&quot;FileName= &quot;+FileName)\nsavePath=SaveDir+&quot;\/&quot;+FileName+&quot;.tga&quot;\nprint(&quot;savePath= &quot;+savePath)\n\n\n\neditorAssetLib = unreal.EditorAssetLibrary()\ntexture2d=editorAssetLib.load_asset(assetPath) \n#canvasRenderTarget2D=editorAssetLib.load_asset(assetPath) \n#texture2d=unreal.Texture2D(canvasRenderTarget2D)\nprint(&quot;texture2d= &quot;+str(texture2d))\n\ntask = unreal.AssetExportTask()\ntask.set_editor_property(&#39;automated&#39;, True)\ntask.set_editor_property(&#39;filename&#39;, savePath)\ntask.set_editor_property(&#39;object&#39;, texture2d)\ntask.set_editor_property(&#39;prompt&#39;, False)\ntask.set_editor_property(&#39;exporter&#39;, unreal.TextureExporterTGA())\n\ncheck = unreal.Exporter.run_asset_export_task(task)\n\n\nif check==True:\n    pass\nelse:\n    print(u&quot;tga \u30a4\u30e1\u30fc\u30b8\u306e\u751f\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f&quot;)<\/code><\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[66,21,39,89,69,2,35],"tags":[],"class_list":["post-2234","post","type-post","status-publish","format-standard","hentry","category-adobe","category-blueprint","category-blueprint-ue5","category-python-maya","category-tgatarga","category-ue4","category-ue5"],"_links":{"self":[{"href":"https:\/\/furcraea.verse.jp\/wp\/wp-json\/wp\/v2\/posts\/2234","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/furcraea.verse.jp\/wp\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/furcraea.verse.jp\/wp\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/furcraea.verse.jp\/wp\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/furcraea.verse.jp\/wp\/wp-json\/wp\/v2\/comments?post=2234"}],"version-history":[{"count":1,"href":"https:\/\/furcraea.verse.jp\/wp\/wp-json\/wp\/v2\/posts\/2234\/revisions"}],"predecessor-version":[{"id":2236,"href":"https:\/\/furcraea.verse.jp\/wp\/wp-json\/wp\/v2\/posts\/2234\/revisions\/2236"}],"wp:attachment":[{"href":"https:\/\/furcraea.verse.jp\/wp\/wp-json\/wp\/v2\/media?parent=2234"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/furcraea.verse.jp\/wp\/wp-json\/wp\/v2\/categories?post=2234"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/furcraea.verse.jp\/wp\/wp-json\/wp\/v2\/tags?post=2234"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}