AWARE [SYSTEMS] Imaging expertise for the Delphi developer
AWare Systems, Imaging expertise for the Delphi developer, Home TIFF and LibTiff Mailing List Archive

LibTiff Mailing List

TIFF and LibTiff Mailing List Archive
October 2004

Previous Thread
Next Thread

Previous by Thread
Next by Thread

Previous by Date
Next by Date

Contact

The TIFF Mailing List Homepage
This list is run by Frank Warmerdam
Archive maintained by AWare Systems



Valid HTML 4.01!



Thread

2004.10.18 19:25 "Hello's and Urgent problem!!!", by Elzumba Sefue
2004.10.18 19:41 "Re: Hello's and Urgent problem!!!", by Frank Warmerdam
2004.10.18 19:45 "Re: Hello's and Urgent problem!!!", by Andrey Kiselev

2004.10.18 19:25 "Hello's and Urgent problem!!!", by Elzumba Sefue

Hello to all!!! Before nothing, my name is Matias
Nicolas Sommi, and I'm a newbie in the TIFF
programming, I'm interesting in it for my work. The
first problem that I have is "unresolved symbol to
TIFFOpen"...(See the source code below)
I'm using windows 2k OS, and the compiler is Dev-C++
4.9.9
Thank you very much, and I'm waiting for your answers.

#include "tiffio.h"
#include <stdio.h>
#include <math.h> //In linux is necessary to compile,
but I'm windows...
int main() {
    TIFF *tif;
    printf("\nMANUAL BREAKPOINT");
    tif = TIFFOpen("1.tif", "r"); //It's the error
    printf("\nMANUAL BREAKPOINT 2");
    TIFFClose(tif);
    printf("\nMANUAL BREAKPOINT 3");
    return 0;
}