My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

splitIco.py 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #!/usr/bin/env python3
  2. #
  3. # Split a DWIN .ico file into separate images.
  4. #
  5. # Copyright (c) 2020 Brent Burton
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation, either version 3 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  19. #----------------------------------------------------------------
  20. import os
  21. import os.path
  22. import argparse
  23. import DWIN_ICO
  24. version = '2.0.7'
  25. #----------------
  26. if __name__ == '__main__':
  27. try:
  28. parser = argparse.ArgumentParser(description='Split .ico into JPEG files')
  29. parser.add_argument('filename', type=str, nargs=1,
  30. help='name of input .ico file to split')
  31. parser.add_argument('outputDir', type=str, nargs=1,
  32. help='name of output directory to create')
  33. args = parser.parse_args()
  34. filename = args.filename[0]
  35. outputDir = args.outputDir[0]
  36. if not os.path.isfile(filename):
  37. raise RuntimeError("ICO file '%s' doesn't exist" % (filename))
  38. if os.path.exists(outputDir):
  39. raise RuntimeError("Output directory '%s' already exists." % (outputDir))
  40. print('Splitting %s into dir %s' % (filename, outputDir))
  41. ico = DWIN_ICO.DWIN_ICO_File()
  42. ico.splitFile(filename, outputDir)
  43. except Exception as e:
  44. print('Error: ', e)