Welcome, Guest. Please login or register.

Author Topic: Uncompressed Graphic Format  (Read 1176 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline olegil

  • Hero Member
  • *****
  • Join Date: Mar 2002
  • Posts: 955
    • Show all replies
Re: Uncompressed Graphic Format
« on: April 08, 2003, 11:07:08 PM »
ILBM? (IFF interleaved bitmap)

TIFF? (tag image file format)

PPM? (Portable Pixel Map) (search for ppm and netpbm)

That being said, I don't think you can get much simpler than uncompressed IFF if you're programming for Amiga. If you're talking Linux, I would suggest PPM, since there's a ####LOAD of applications that support this out of the box, and the format is totally open.
If we're talking Windows, I might be persuaded to suggest TIFF. It's well supported under AmigaOS and Linux as well, so really isn't that bad. I don't know how good the documentation is, though. There's some libraries you can use...
 

Offline olegil

  • Hero Member
  • *****
  • Join Date: Mar 2002
  • Posts: 955
    • Show all replies
Re: Uncompressed Graphic Format
« Reply #1 on: April 08, 2003, 11:17:06 PM »
Here's the good old RTFM response :-)
uncompressed ilbm doc

ppm docs

libtiff docs


Good luck. And if you choose uncompressed BMP instead of these 3 choices, I'll kill ya. Ok, so I won't kill you, but I'll get pretty mad at ya :-)
 

Offline olegil

  • Hero Member
  • *****
  • Join Date: Mar 2002
  • Posts: 955
    • Show all replies
Re: Uncompressed Graphic Format
« Reply #2 on: April 08, 2003, 11:19:00 PM »
@Karlos:

Well, if you're on the Amiga IFF is _kind_ of standard, so it makes sense to use that. Then the user could use the pictures in ANY other program. I like netpbm, though.
 

Offline olegil

  • Hero Member
  • *****
  • Join Date: Mar 2002
  • Posts: 955
    • Show all replies
Re: Uncompressed Graphic Format
« Reply #3 on: April 08, 2003, 11:28:23 PM »
Yep. PPM is dead simple. But so is IFF. You need to add a header in both cases.