This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @tool | |
| class_name ImageLoaderPCX | |
| extends ImageFormatLoaderExtension | |
| ## Implementation of an ImageFormatLoader for PCX files with the | |
| ## [code].pcx[/code] extension. | |
| ## | |
| ## PCX files are an obsolete image format used in the DOS era, developed in 1985 | |
| ## by ZSoft Corporation. | |
| ## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| from __future__ import annotations | |
| if __name__ != "__main__": | |
| raise ImportError(f"{__name__} should not be used as a module.") | |
| import argparse | |
| import json | |
| import os | |
| import shutil |
OlderNewer