Go to file
2025-03-02 19:56:38 +02:00
libs add .ico file generation at build-time 2025-02-08 00:25:43 +02:00
src add basic markers to the sides of a channel view 2025-03-02 19:56:38 +02:00
tools add .ico file generation at build-time 2025-02-08 00:25:43 +02:00
.gitignore add task-pool.zig 2024-11-24 14:38:43 +02:00
build.zig show message if NI Daq fails to be loaded 2025-02-08 23:10:42 +02:00
build.zig.zon show message if NI Daq fails to be loaded 2025-02-08 23:10:42 +02:00
README.md show message if NI Daq fails to be loaded 2025-02-08 23:10:42 +02:00

DAQ view & transform

zig build run

Resources

TODO

  • Use downsampling for faster rendering of samples. When viewing many samples use dowsampled versions of data for rendering. Because you either way, you won't be able to see the detail.

  • 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)"