From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b17b79e9bf0269ea X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-02-18 12:20:39 PST Path: archiver1.google.com!news1.google.com!sn-xit-02!sn-xit-04!sn-xit-05!sn-xit-09!supernews.com!204.127.198.204.MISMATCH!wn54feed!worldnet.att.net!attbi_s52.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: BMP/JPG/GIF library in Ada? References: X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 67.161.24.134 X-Complaints-To: abuse@comcast.net X-Trace: attbi_s52 1077135637 67.161.24.134 (Wed, 18 Feb 2004 20:20:37 GMT) NNTP-Posting-Date: Wed, 18 Feb 2004 20:20:37 GMT Organization: Comcast Online Date: Wed, 18 Feb 2004 20:20:38 GMT Xref: archiver1.google.com comp.lang.ada:5656 Date: 2004-02-18T20:20:38+00:00 List-Id: >I'm working in a simple package which allows to trivially create an in- >memory 24bpp uncompressed BMP and convert it to a Stream_Element_Array. Like this, or different? type Triple_DIBitmap_Type (Height, Width : Claw.Int) is ... procedure Triple_DIBitmap_Type_Output ( Stream : access Ada.Streams.Root_Stream_Type'class; Item : in Triple_DIBitmap_Type); for Triple_DIBitmap_Type'Write use Triple_DIBitmap_Type_Write;