ronin/examples/crop.lisp
2019-07-16 10:10:16 +09:00

16 lines
176 B
Common Lisp

; crop
(
(clear)
; Filter
(def filter-action
(lambda () (crop (rect 100 100 400 400))))
; Draw photo
(open
"../../PREVIEW.jpg"
filter-action)
)