Tagged Questions

A file format is a particular way that information is encoded for storage in a computer file.

learn more… | top users | synonyms

31
votes
21answers
3k views

Which format for small website images? GIF or PNG?

When doing small icons, header graphics and the like for websites, is it better to use GIFs or PNGs? Obviously if transparency effects are required, then PNGs are definitely the way to go, and for ...
16
votes
6answers
7k views

Reading PSD file format

I wonder if this is even possible. I have an application that adds a context menu when you right click a file. It all works fine but here is what I'd like to do: If the file is a PSD then I want the ...
16
votes
4answers
698 views

Will random data appended to a JPG make it unusable?

So, to simplify my life I want to be able to append from 1 to 7 additional characters on the end of some jpg images my program is processing*. These are dummy padding (fillers, etc - probably all ...
13
votes
6answers
6k views

Tools to help reverse engineer binary file formats

What tools are available to aid in decoding unknown binary data formats? I know Hex Workshop and 010 Editor both support structures. These are okay to a limited extent for a known fixed format but ...
13
votes
4answers
4k views

Most Common 3D Model Format?

It's been about two years since I last developed games, and I am interested in starting a new project. What is the most common open-source 3D model format? I am looking for a format that would ...
13
votes
9answers
23k views

What is the difference between “JPG” / “JPEG” / “PNG” / “BMP” / “GIF” / “TIFF” Image?

I have seen many types of image (extension) but have never understood the real difference between them. Are there any links out there that clearly explains the difference between them. Is there a ...
11
votes
7answers
737 views

Versioning friendly, extendible binary file format

In the project I'm currently working on there is a need to save a sizable data structure to disk (edit: think dozens of MB's). Being an optimist, I thought that there must be a standard solution for ...
11
votes
9answers
1k views

Best Config File Format

I'm starting a new multi-language project completely without cruft. I have to choose a format for config files. These will be: Written by humans (developers, not end users) Read by machines ...
11
votes
9answers
7k views

How to identify the file content is in ASCII or binary?

How to identify the file content is in ASCII or binary file using c++?
9
votes
7answers
2k views

Is it legal to reverse engineer binary file formats [closed]

Is it legal to add support for a 3rd party file format in my application by reverse engineer a unencrypted binary file format from another application, and reading the contents?
8
votes
4answers
293 views

What are the disadvantages of using .Rdata files compared to HDF5 or netCDF?

I have been asked to change a software that currently exports .Rdata files so that it exports in a 'platform independent binary format' such as HDF5 or netCDF. Two reasons were given: Rdata files ...
8
votes
4answers
4k views

convert a shapefile (.shp) to xml/json

i'm working with a shapefile (.shp, .dbf, etc) and would like to convert it to xml. i'm on a mac, and am having trouble finding an application that will help me with the conversion. does anyone know ...
7
votes
3answers
2k views

Decoding ima4 audio format

To reduce the download size of an iPhone application I'm compressing some audio files. Specifically I'm using afconvert on the command line to change .wav format to .caf format w/ ima4 compression. ...
7
votes
6answers
1k views

Starting point for learning CAD/CAE file formats?

We are developing some stress and strain analysis software at university. Now it's time to move from rectangles and boxes and spheres to some real models. But I still have little idea where to start. ...
7
votes
3answers
1k views

Which floating-point image format should I use?

In the past I've saved RGB images (generated from physical simulations) as 8-bits/channel PPM or PNG or JPEG. Now I want to preserve the dynamic range of the simulation output, which means saving a ...
7
votes
5answers
1k views

What's Is the Best File Format for Configuration Files

I am creating a framework in PHP and need to have a few configuration files. Some of these files will unavoidably have a large number of entries. What format would be the best for these config files? ...
6
votes
0answers
86 views

Get error in the iffw library when trying to write chunk

When I am trying to use the EA iffw.c library for writing an IFF file, I can't get past the StartWGroup() call. It fails in IFFWriteBytes() because context->ckHdr.ckSize is zero. Inside ...
6
votes
3answers
564 views

Can I use libjpeg to read JPEGs with an alpha channel?

There seems to be some debate about whether JPEGs with alpha channels are valid or not. The answer I had always understood to be correct is that in the JPEG FAQ, which is essentially "No". (This is ...
6
votes
1answer
46 views

Standard defining json file extensions?

Is there a standard or specification which defines json file extensions? I've seen .json used - is this just a commonly accepted practice or is it a requirement of some standards body for json saved ...
6
votes
2answers
185 views

How does Google Docs store documents (on the backend)?

I half imagine there being these great .docs in the sky... but another part of me doubts that my documents are even being stored in anything we'd traditionally call a "file." Does Google have its own ...
6
votes
6answers
393 views

Existing parsers in c# (BSD license or similar)

Looking for parsers (in C#) for a bunch of formats. (PHP, ASP, some XML based formats, HTML,...pretty much anything I can get my hands on.) So far we have: HTML: * Majestic-12 * Html Agility Pack ...
6
votes
2answers
861 views

Perfmon .blg file specification / parsing library

Where can I find a detailed, low-level spec for the Perfmon binary .blg file format? Or even better, has anyone written a low level, open source library (preferably in C, but any language would do) ...
6
votes
7answers
2k views

Android NinePatch .png file format?

Android NinePatch images seem to be standard .png files with extra information. Is there a spec for the format anywhere, as I'd like to be able to implement this on other platforms?
6
votes
7answers
2k views

3D File Formats for Games

I'm getting started with XNA and Blender and am trying to find good quality, up to date information on the various 3D file formats that are used in game development. Clearly many games are developed ...
6
votes
7answers
1k views

How do I distinguish between 'binary' and 'text' files?

This is a duplicate of http://stackoverflow.com/questions/277521/how-to-identify-the-file-content-is-in-ascii-or-binary, but since I don't have the rep, I can't edit that question to improve it. ...
6
votes
7answers
1k views

What are important points when designing a (binary) file format?

When designing a file format for recording binary data, what attributes would you think the format should have? So far, I've come up with the following important points: have some "magic bytes" at ...
5
votes
1answer
167 views

Whats a “[CS Format=A]” header is for?

I'm trying to identify a type of file that contents starts with "[CS Format=A]". I've extracted files from blobs from a database I was handed. I do not have access to the software that created this ...
5
votes
8answers
777 views

best way to output a full precision double into a text file

I need to use an existing text file to store some very precise values. When read back in, the numbers essentially need to be exactly equivalent to the ones that were originally written. Now, a ...
5
votes
7answers
802 views

How can my Perl script determine whether an Excel file is in XLS or XLSX format?

I have a Perl script that reads data from an Excel (xls) binary file. But the client that sends us these files has started sending us XLSX format files at times. I've updated the script to be able ...
5
votes
2answers
654 views

SQLite or flat text file?

I process a lot of text/data that I exchange between Python, R, and sometimes Matlab. My go-to is the flat text file, but also use SQLite occasionally to store the data and access from each program ...
5
votes
1answer
177 views

Library support for very high dynamic range TIFF files?

I work with satellite radar, and have been provided with a (very) large TIFF file containing 32 bpp greyscale data. Unfortunately, libtiff, the standard Linux library for working with TIFF files, ...
5
votes
4answers
211 views

How do I search for “\n” without a preceding “\r” in vim?

Vim won't convert fileformat if it sees inconsistent line endings. How can I find those ?
5
votes
5answers
844 views

Perforce: Keeping Perforce from altering text-file format

Is there a way to tell Perforce to leave text files alone without setting the file-type as binary? Or barring that, is there a way to tell the Perforce client to diff binaries? Binary usually isn't ...
5
votes
3answers
214 views

Semantic (or symbolic) Representation of Music

I'm looking to create a little app that allows the user to visual and control (mostly) classical music, in order to better recognize structures such as canon. What would be an appropriate data and ...
5
votes
2answers
138 views

If I wanted to define a file format, how would I go about that?

Say I come up with some super-duper way of representing some data that I think would be useful for other people to know about and use. Assume I have a 'spec' in some form, even if it might not be a ...
5
votes
3answers
80 views

Good online library of common file formats

Is there a good online library site that brings together, in one place, the specifications of various file common formats such as PNG, MP3, 7Z, SVG, PDF, DOC and so on? By "good" I mostly mean: ...
5
votes
2answers
5k views

Sample COLLADA files for development of an importer?

I'm preparing to write a COLLADA importer in Java. There aren't any pre-written importers, and even if there were I would probably be picky, so I believe this is best. I am going with COLLADA 1.4 ...
5
votes
4answers
3k views

What is the specifications for Motion JPEG?

I've been googling like mad and can't find any file format specifications for mjpeg. What should the header look like? Do i just append a series of jpegs after the header? I know it's the usually ...
5
votes
5answers
1k views

Simple wireframe format?

I'm looking for a simple file format to use for wireframe models. I am aware of VRML, u3D, etc, but these seem heavyweight for my needs. My criterea are: Must have a clear spec. Either open or very ...
5
votes
6answers
1k views

Map-Navigation Project, How is road data generally stored/represented?

Navigation systems like the Garmin and TomTom have always fascinated me. I've wanted to implement small map/navigation applications to try out various pathing algorithms and expand on my knowledge of ...
5
votes
3answers
1k views

Favorite image file format for 2d sprites

What is your favorite, lossless image format for games (namely 2d games)? And why? Some things to take into consideration are size on disk, overhead for converting to a usable format, and features of ...
5
votes
3answers
3k views

Reading quicken data files

Looking for an open source library, for C++, Java, C# or Python, for reading the data from Quicken .qdf files. @Swati: Quicken .qif format is for transfer only and is not kept up to date by the ...
4
votes
1answer
74 views

What is the purpose of the Zip64 'end of central directory locator'?

In the Zip64 format, there is a header called Zip64 end of central directory locator that contains the offset to the zip64 end of central directory record. Why would you need this record when ...
4
votes
3answers
95 views

CBM image file format: what is it? how to read it?

I have a collection of images in the CBM file format. What is this format? How to read it? How to convert it to, say, a BMP bitmap? Searching the net, I found that it could mean one of those three ...
4
votes
2answers
84 views

Is there a non-binary format for an Outlook email message?

I want to create an e-mail file on a web server that will open in Microsoft Outlook. It appears the two formats that would come in handy are the .MSG format and .OFT format. However, both appear to ...
4
votes
5answers
251 views

Most efficient way to store a big DNA sequence?

I want to pack a giant DNA sequence with an iOS app (about 3,000,000,000 base pairs). Each base pair can have a value A, C, T or G. Storing each base pair in one bytes would give a file of 3 GB, which ...
4
votes
1answer
64 views

How to read PRS / SKmapDat files?

I have these graphic files from Legend of Mana, that I would like to understand how works. size file name 149968 TWR_I100.IMG 35500 TWR_RA00.IMG 148736 WAL_TMPL.PRS 214574 WAL_VLLG.PRS 63762 ...
4
votes
3answers
140 views

Book translation data format

I'm thinking of translating a book from English to my native language. I can translate just fine, and I'm happy with vim as a text editor. My problem is that I'd like to somehow preserve the ...
4
votes
5answers
304 views

Database modeling software with non-binary file format?

Do you know a database modeling software whose the file format can safely be tracked by a VCS without always creating conflicts ? (i.e. a non-binary file format.) It would be great if the software ...
4
votes
2answers
874 views

What is the purpose of python 2.7's download package “Windows x86 MSI program database”?

Upgrading from python 2.5/2.6 to python 2.7 on WinXP, I've found new download package forms for python at http://www.python.org/download/releases/2.7.1/. So I'm wondering what is the purpose of ...

1 2 3 4 5 7