The Collaborative International Dictionary of English v.0.48:
Dib \Dib\, v. i.
To dip. [Prov. Eng.] --Walton.
[1913 Webster]
The Collaborative International Dictionary of English v.0.48:
Dib \Dib\, n.
1. One of the small bones in the knee joints of sheep uniting
the bones above and below the joints.
[1913 Webster]
2. pl. A child's game, played with dib bones.
[1913 Webster]
V.E.R.A. -- Virtual Entity of Relevant Acronyms (February 2016):
DIB
Defense Information Base (mil., USA)
V.E.R.A. -- Virtual Entity of Relevant Acronyms (February 2016):
DIB
Device Independent Bitmap (MS, Windows)
V.E.R.A. -- Virtual Entity of Relevant Acronyms (February 2016):
DIB
Director Interface Board (Airbus, A380, CIDS)
V.E.R.A. -- Virtual Entity of Relevant Acronyms (February 2016):
DIB
Directory Information Base (X.500, DS)
V.E.R.A. -- Virtual Entity of Relevant Acronyms (February 2016):
DIB
DOS Info Block (BIOS, DOS)
V.E.R.A. -- Virtual Entity of Relevant Acronyms (February 2016):
DIB
Dual Independent Bus [architecture] (PC)
The Free On-line Dictionary of Computing (30 December 2018):
device independent bitmap
DDB
DIB
(DIB) An image format in which the
sequence and depth of pixels in the file is not specifically
related to their layout in any particular device. This allows
any device dependent bitmap (DDB) image to be converted to or
DIB format without loss of information, and this can then
later be converted to other DDB formats for, e.g., printing or
display. Rather than requiring converters from each DDB
format to all other formats, only converters to and from DIB
are needed.
DIB images are normally transferred in metafiles, bmp
files, and the clipboard.
Transferring colour bitmaps from one device to another was not
possible in versions of Microsoft Windows earlier than 3.0.
Application programs can build DIB images without any
interaction with Windows. If Windows lacks a drawing
primitive, the application can simulate it directly into the
DIB instead of using the existing graphics device interface
(GDI) primitives. Unfortunately, under Windows versions 3.0
and 3.1, GDI cannot perform output operations directly to a
DIB.
Conversion between DIB and DDB is performed by the device
driver. Where the driver does not have this facility, the
conversion is performed by GDI but only in monochrome. DIBs
are slower to use than device dependent bitmaps due to the
conversions required.
(1996-09-20)