Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在不使用DrRacket选项的情况下导入.png图像并将其用于某些动画?Insert > Insert Image...
.png
Insert > Insert Image...
这取决于您使用的图像库。
如果您使用的是2htdp图像库,请使用bitmap或bitmap/url. 例如,如果您有一个名为“plane.png”的文件保存在与您的程序相同的目录中,请编写如下内容
bitmap
bitmap/url
(define plane-image (bitmap "plane.png"))
如果您正在使用pict库(例如幻灯片),请使用它的bitmap功能。如果您使用的是基本绘图库(球拍/绘图),则创建bitmap%该类的实例。
bitmap%