Click here to Skip to main content
15,881,812 members
Articles / Desktop Programming / MFC
Article

Bin2Iso

Rate me:
Please Sign up or sign in to vote.
4.80/5 (67 votes)
21 Jul 20034 min read 518.8K   18.2K   86   49
A Free Tool to Convert Bin Image Format to ISO Image Format

Sample Image - Bin2Iso.jpg

Introduction

This is a free tool for converting one CD image format (Bin) to another format (ISO). The conversion routine is very simple. Just read the Bin image and according to it's structure, write the data in another format. For this reason, a developer must know structure of both formats.

Image Formats

The CD-ROM specification (Yellow Book) defines the use of two types of sectors, mode 1 and mode 2. Mode 2 sectors are used for CD-ROM XA formats.

CD-ROM Sectors

Data stored on a CD-ROM disc is divided into sectors which are equivalent to the audio frames for a CD audio disc. At normal (1x) playback speed, 75 sectors are read every second. For double speed CD-ROM drives this increases to 150 sectors per second and so on. Seek times, while the disc rotates to the required starting position, will also reduce as speeds increase.

Because CDs were designed primarily for audio, their use for computer data requires the addition of header data and error correction codes which are included in every sector. There are two different types of sectors defined in the CD-ROM specification, Mode 1 and Mode 2 (the latter being used for CD-ROM XA discs).

Mode 1 Sectors

Mode 1 sectors are intended for the storage of computer data and contain the following fields.

  • Sync (12 bytes) which is used to enable the player to identify the start of each sector.
  • Header (4 bytes) consisting of Minutes, Seconds, Sectors and Mode (= 1).
  • ECC (Error Correction Code - 276 bytes), which comprises an additional level of CIRC error protection.
  • EDC (Error Detection Code - 4 bytes) for detecting errors to be corrected.

Mode 1 sectors are the simplest type and are used for most CD-ROM based formats which follow the Yellow Book.

Mode 2 Sectors

Mode 2 sectors are used for those formats based on CD-ROM XA and can be either Form 1 or 2.

  • Mode 2 Form 1 sectors contain 2048 bytes with the same ECC as Mode 1 sectors.
  • Mode 2 Form 2 sectors contain 2324 bytes of user data per sector, with no ECC are are suitable only for data where errors can be concealed (eg audio or video data).

Mode 2 sectors comprise the following fields:

  • Sync (12 bytes) which is used to enable the player to identify the start of each sector.
  • Header (4 bytes) consisting of Minutes, Seconds, Sectors and Mode (= 1).
  • Subheader (8 bytes) contains content related parameters eg data type.
  • ECC (Error Correction Code - 276 bytes) which comprises an additional level of CIRC error protection for Form 1 only.
  • EDC (Error Detection Code) for Forms 1 and 2.

Note that Mode 1 and Mode 2 Form 1 use the same error correction so can be used interchangeably, but not within the same track and preferably not on the same disc. Software used to write CD-Rs can be set for Mode 1 or Mode 2 Form 1. Almost all PCs and Macs will read Mode 2 Form 1 CD-ROMs as well as Mode 1.

Note that any CD-ROM will contain at least some Mode 1 or Mode 2 Form 1 sectors.

Capacity

The capacity of a CD-ROM depends on whether it is a Mode 1 CD-ROM or Mode 2 CD-ROM XA. Assuming the maximum size is 76 minutes 30 seconds (as recommended) this means that there are 336,300 sectors on a CD-ROM. From this must be subtracted 166 sectors at the start of track 1 plus a few sectors for the file system, amounting to, say, 200 sectors leaving 336,100 sectors for user data.

  • Mode 1 sectors contain 2048 bytes per sector giving a total capacity of 688,332,800 bytes or 656MB (where 1 MB = 1024 * 1024).
  • Mode 2 sectors contain either 2048 or 2324 bytes per sector so will have a somewhat higher data capacity depending on the mix of the two types of sector.

The above assumes a CD-ROM comprising a single track in a single session. For multiple track/session discs the data capacity will be reduced.

Solution

With this information, now it is easy to develop a program to convert one image format to another.
The main routine in program is Convert. The code below, shows you the employed technique.

UINT Convert(LPVOID pParam)
{
    PThreadData pth=(PThreadData) pParam;
    
    //Open files for reading/writing
    int   seek_header, seek_ecc, sector_size;
    long  i, source_length;
    char  buf[2352];
    const BYTE SYNC_HEADER[12] = 
        {0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0};
    
    FILE *fpSource, *fpTarget;

    fpSource = _tfopen(pth->Source, _T("rb"));
    fpTarget = _tfopen(pth->Target, _T("wb"));

    
    if ((fpSource==NULL) || (fpTarget==NULL))
    {
        ::SendMessage(pth->hwnd, WM_THREAD_TERMINATE, 0, 
                (LPARAM) FILE_FAILED);
        
        return -1;
    }
    
    fread(buf, sizeof(char), 16, fpSource);

    if (memcmp(SYNC_HEADER, buf, 12))
    {
        seek_header = 8;        
        seek_ecc = 280;
        sector_size = 2336;
    }
    else        
    {
        switch(buf[15])
        {
            case 2:
            {    
                seek_header = 24;    // Mode2/2352    
                seek_ecc = 280;
                sector_size = 2352;
                break;
            }

            case 1:
            {
                seek_header = 16;    // Mode1/2352
                seek_ecc = 288;
                sector_size = 2352;
                break;
            }

            default:
            {
                ::SendMessage(pth->hwnd, WM_THREAD_TERMINATE, 
                    0, (LPARAM) TRACK_UNSUPPORTED);

                fclose(fpTarget);
                fclose(fpSource);

                return -1;
            }
        }
    }

    fseek(fpSource, 0L, SEEK_END);
    source_length = ftell(fpSource)/sector_size;
    fseek(fpSource, 0L, SEEK_SET);

    for(i=0; i<source_length; i++)
    {
        fseek(fpSource, seek_header, SEEK_CUR);
        fread(buf, sizeof(char), 2048, fpSource);  
        fwrite(buf, sizeof(char), 2048, fpTarget);
        fseek(fpSource, seek_ecc, SEEK_CUR);

        ::SendMessage(pth->hwnd, WM_THREAD_PROGRESS, 0, 
                (LPARAM) ((i+1)*100/source_length));
    }

    fclose(fpTarget);
    fclose(fpSource);

    return 0;
}

This function called as a new thread when Convert button pressed.

Further Information

For further information refer to the Distronics web site. They have very useful information about various CD/DVD technologies on their web site.

Enjoy!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
CEO Solaris Electronics LLC
United Arab Emirates United Arab Emirates
I was born in Shiraz, a very beautiful famous city in Iran. I started programming when I was 12 years old with GWBASIC. Since now, I worked with various programming languages from Basic, Foxpro, C/C++, Visual Basic, Pascal to MATLAB and now Visual C++.
I graduated from Iran University of Science & Technology in Communication Eng., and now work as a system programmer for a telecommunication industry.
I wrote several programs and drivers for Synthesizers, Power Amplifiers, GPIB, GPS devices, Radio cards, Data Acquisition cards and so many related devices.
I'm author of several books like Learning C (primary and advanced), Learning Visual Basic, API application for VB, Teach Yourself Object Oriented Programming (OOP) and etc.
I'm winner of January, May, August 2003 and April 2005 best article of month competition, my articles are:


You can see list of my articles, by clicking here


Comments and Discussions

 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey26-Feb-12 19:49
professionalManoj Kumar Choubey26-Feb-12 19:49 
GeneralCool Pin
Hard Coder28-Mar-10 6:07
Hard Coder28-Mar-10 6:07 
GeneralMegalicious!! Many thanks! Pin
cyborgjn14-Nov-07 5:41
cyborgjn14-Nov-07 5:41 
Generalthanx Pin
Duong11229-Sep-07 21:43
Duong11229-Sep-07 21:43 
GeneralYour Service Required Pin
Rohit Singal1-Aug-07 0:44
Rohit Singal1-Aug-07 0:44 
QuestionCD+ g formats Pin
wasif_Muhammad22-Apr-07 2:29
wasif_Muhammad22-Apr-07 2:29 
GeneralHelp needed urgently!!! Pin
Micktaxi14-Mar-07 23:48
Micktaxi14-Mar-07 23:48 
GeneralRe: Help needed urgently!!! Pin
Abbas_Riazi4-Mar-07 23:57
professionalAbbas_Riazi4-Mar-07 23:57 
GeneralRe: Help needed urgently!!! Pin
Micktaxi15-Mar-07 0:30
Micktaxi15-Mar-07 0:30 
Questionhi Pin
Member 383813816-Feb-07 23:59
Member 383813816-Feb-07 23:59 
GeneralPLEASE HELP!! Pin
budget010@yahoo.com22-Dec-06 22:31
budget010@yahoo.com22-Dec-06 22:31 
AnswerRe: PLEASE HELP!! Pin
Irek_gier30-Dec-06 4:47
Irek_gier30-Dec-06 4:47 
GeneralTotal Genius =) Pin
jonty_rocks325-Aug-06 22:24
jonty_rocks325-Aug-06 22:24 
GeneralRe: Total Genius =) Pin
Abbas_Riazi26-Aug-06 22:06
professionalAbbas_Riazi26-Aug-06 22:06 
GeneralRe: Total Genius =) Pin
budget010@yahoo.com22-Dec-06 22:36
budget010@yahoo.com22-Dec-06 22:36 
QuestionPure plagerism! Have you no shame A. Riazi? Pin
"Fish" (David B. Trout)3-Mar-06 1:32
"Fish" (David B. Trout)3-Mar-06 1:32 
AnswerRe: Pure plagerism! Have you no shame A. Riazi? Pin
Abbas_Riazi3-Mar-06 20:48
professionalAbbas_Riazi3-Mar-06 20:48 
Generalbin2iso Pin
hack3rGriMM25-Feb-06 3:08
hack3rGriMM25-Feb-06 3:08 
AnswerRe: bin2iso Pin
Abbas_Riazi25-Feb-06 6:42
professionalAbbas_Riazi25-Feb-06 6:42 
Questionbin2iso download? Pin
amirweb127-Aug-05 0:42
amirweb127-Aug-05 0:42 
AnswerRe: bin2iso download? Pin
Abbas_Riazi27-Aug-05 1:49
professionalAbbas_Riazi27-Aug-05 1:49 
AnswerRe: bin2iso download? Pin
ab raijin10-Dec-05 0:11
ab raijin10-Dec-05 0:11 
GeneralAwesome! Pin
Bartender21-May-05 7:32
Bartender21-May-05 7:32 
GeneralRe: Awesome! Pin
Abbas_Riazi21-May-05 8:27
professionalAbbas_Riazi21-May-05 8:27 
GeneralRe: Awesome! Pin
skittlemon27-Jun-05 8:31
skittlemon27-Jun-05 8:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.