My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #!/usr/bin/env python3
  2. #
  3. # Make a DWIN .ico file from a directory of JPEG icon files.
  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.path
  21. import argparse
  22. import DWIN_ICO
  23. version = '2.0.7'
  24. #----------------
  25. if __name__ == '__main__':
  26. try:
  27. parser = argparse.ArgumentParser(description='Make .ico from JPEG files')
  28. parser.add_argument('iconDir', type=str, nargs=1,
  29. help='name of directory containing icon JPGs')
  30. parser.add_argument('filename', type=str, nargs=1,
  31. help='name of new .ico file to create')
  32. args = parser.parse_args()
  33. filename = args.filename[0]
  34. iconDir = args.iconDir[0]
  35. if os.path.isfile(filename):
  36. raise RuntimeError("ICO file '%s' already exists." % (filename))
  37. if not os.path.exists(iconDir):
  38. raise RuntimeError("Icon directory '%s' doesn't exist." % (iconDir))
  39. print("Making .ico file '%s' from contents of '%s'" % (filename, iconDir))
  40. ico = DWIN_ICO.DWIN_ICO_File()
  41. ico.createFile(iconDir, filename)
  42. except Exception as e:
  43. print('Error: ', e)