Go to file
2025-05-29 07:09:21 +03:00
libs add .ico file generation at build-time 2025-02-08 00:25:43 +02:00
src add proportional views 2025-05-29 07:09:21 +03:00
tools add custom draw callback to UI 2025-04-08 21:38:54 +03:00
.gitignore rework UI 2025-03-10 01:01:13 +02:00
build.zig add exporting 2025-05-13 04:32:49 +03:00
build.zig.zon add protocol setting 2025-05-27 10:07:35 +03:00
README.md update README 2025-05-27 10:40:25 +03:00

DAQ view & transform

zig build run

Resources

TODO

  • Export .xcf files at build time
(let* (
      (image (car (gimp-file-load RUN-NONINTERACTIVE "./icon.xcf" "./icon.xcf")))
      (merged-layer (car (gimp-image-merge-visible-layers image CLIP-TO-BOTTOM-LAYER)))
  )
  (file-png-save RUN-NONINTERACTIVE image merged-layer "./icon.png" "./icon.png" 0 9 0 0 0 0 0)
  (gimp-image-delete image)
)
gimp-console-2.10.exe -i -b <batch> -b "(gimp-quit 0)"