| 132 | } |
| 133 | |
| 134 | bool EditorUtilities::ExportApplicationImage(const Guid& iconId, int32 width, int32 height, PixelFormat format, const String& path, ApplicationImageType type) |
| 135 | { |
| 136 | TextureData icon; |
| 137 | if (GetApplicationImage(iconId, icon, type)) |
| 138 | return true; |
| 139 | |
| 140 | return ExportApplicationImage(icon, width, height, format, path); |
| 141 | } |
| 142 | |
| 143 | bool EditorUtilities::ExportApplicationImage(const TextureData& icon, int32 width, int32 height, PixelFormat format, const String& path) |
| 144 | { |