I am making a game using racketand need a background image bitmap. But the image that I chose is too large. How to resize? What I have:
racket
bitmap
(bitmap/url "http://www.example.com/")
Import this package:
(require htdp/image)
And use the shrink routines defined in this package.
EDIT:
As noted in the comments, 2htdp / image would be a better alternative:
(require 2htdp/image)
Take a look at the scale procedure .