The MASM Forum

Miscellaneous => 16 bit DOS Programming => Topic started by: daydreamer on March 27, 2022, 01:20:33 AM

Title: load bitmap?
Post by: daydreamer on March 27, 2022, 01:20:33 AM
Hi
wonder how to load bmp or any file in dos?
instead of tedious write lot of data in db?
Magnus
Title: Re: load bitmap?
Post by: jj2007 on March 27, 2022, 01:46:59 AM
include \masm32\MasmBasic\DosBasic.inc
  Init
  Make$ My$, 60000 ; let's create a fat buffer
  FileRead My$, "dd.bmp"
  .if Carry?
Print "FileRead ERROR", 13, 10
  .else
Print Str$(ax), ' bytes read from "dd.bmp" - contents:', 13, 10, 10, "["
Print My$, "]", 13, 10, 10
  .endif
  Inkey "Now you got the bitmap in My$, what will you do with it?" ; wait for a key
  Exit ; ExitProcess, DOS style
end start


30758 bytes read from "dd.bmp" - contents:

[BM&x]

Now you got the bitmap in My$, what will you do with it?


Source, exe and bmp file attached.
Title: Re: load bitmap?
Post by: avcaballero on March 27, 2022, 03:53:33 AM
These examples read and display bmp from file and from resource and display it (windows)

http://abreojosensamblador.epizy.com/?Tarea=5&SubTarea=4&Lang=1&nivel=0&padre=0&accion=0

Theese other do the same in dos:

http://abreojosensamblador.epizy.com/?Tarea=1&SubTarea=28&nivel=0&padre=0&accion=0
Title: Re: load bitmap?
Post by: daydreamer on March 28, 2022, 05:10:38 AM
thanks
more kinda want to know the different ways of int21h
Title: Re: load bitmap?
Post by: tenkey on March 30, 2022, 03:40:48 AM
You might want to get Ralf Brown's Interrupt List: http://masm32.com/board/index.php?topic=7823
Title: Re: load bitmap?
Post by: daydreamer on March 31, 2022, 03:25:27 AM
found this
http://spike.scu.edu.au/~barry/interrupts.html (http://spike.scu.edu.au/~barry/interrupts.html)
https://www.philadelphia.edu.jo/academics/qhamarsheh/uploads/Lecture%2021%20MS-DOS%20Function%20Calls%20_INT%2021h_.pdf (https://www.philadelphia.edu.jo/academics/qhamarsheh/uploads/Lecture%2021%20MS-DOS%20Function%20Calls%20_INT%2021h_.pdf)