Search:

Type: Posts; User: alina01

Search: Search took 0.00 seconds.

  1. Thread: bmp files

    by alina01
    Replies
    1
    Views
    2,669

    bmp files

    i have a bmp file; i declared some structures


    struct bmp_fileheader

    {...}



    I read the information:
  2. Thread: opening a file

    by alina01
    Replies
    1
    Views
    2,003

    opening a file

    hi. in a variable name I have the name of a file. how can I open it?


    char name[14]="name.bmp";
    FILE *image=fopen(name, "rb");
    this doesn' t work. it shows me "segmentation fault". why?
  3. Replies
    3
    Views
    1,861

    segmentation fault

    hello. i need some help with BMP images.
    i declared 3 structures

    struct bmp_fileheader
    {...}
    struct bmp_infoheader
    {....}
    struct bmp_bitmap
    { int blue;
    int green;
  4. Replies
    1
    Views
    2,938

    work with files

    I have a file named "file.txt" who looks like this
    " work.bmp
    12 14 15"
    I want to open file.txt, and than open the file named "work.bmp" in order to acces the BMP header.
    how do i do this?
    I...
  5. Replies
    5
    Views
    3,772

    yes, i have to do it in C and not using Windows...

    yes, i have to do it in C and not using Windows API, but Linux
  6. Replies
    5
    Views
    3,772

    image processing

    so I have some images(BMP format) where there are some numbers. I want to change the numbers' colour. the problem is that I can't understand how this thing works. I've searched on the internet and ...
Results 1 to 6 of 6