如何使用delphi创建单色bmp文件(位图)
我需要一种在运行时快速创建 24 位位图(并保存到文件)的方法,指定 Width 、 Height 和颜色,
调用
procedure CreateBMP(Width,Height:Word;Color:TColor;AFile: string);
并像这样
CreateBMP(100,100,ClRed,'Red.bmp');
I need a fast way to create 24 bits bitmaps (and save to a file) in runtime,specifing the Width , Height and color
something like
procedure CreateBMP(Width,Height:Word;Color:TColor;AFile: string);
and call like this
CreateBMP(100,100,ClRed,'Red.bmp');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
TBitmap< 的
Canvas
属性/code>,将
Brush
设置为您要使用的颜色,然后调用FillRect
函数填充 Bitmap。尝试这样的事情:
you can use the
Canvas
property of theTBitmap
, setting theBrush
to the color which you want to use, then callFillRect
function to fill the Bitmap.try something like this :
您实际上不需要调用 FillRect。如果在设置宽度和高度之前设置 Brush.Color,则位图将为所有像素使用此颜色。我从未真正见过这种行为的记录,因此它可能会在未来的版本中发生变化。
You don't actually need to call FillRect. If you set the Brush.Color before setting the width and height the bitmap will use this color for all the pixels. I've never actually seen this behavior documented so it may change in future versions.