image-width
Category: Image procedures
;;; (image-width img) -> exact-integer?
;;; img : image?
;;; Get the width of the image.
;;;
;;; In contrast to procedures like `ellipse-width`, which give the
;;; width of the underlying shape, even when outlined, `image-width`
;;; gives the full width of the image.
> (image-width (solid-circle 20 "blue"))
20
> (image-width (outlined-circle 20 "blue" 5))
30
> (ellipse-width (solid-circle 20 "blue"))
20
> (ellipse-width (outlined-circle 20 "blue" 5))
20
Forthcoming
ellipse-width, rectangle-width
Forthcoming