Ошибка дьявола 1290. Как я могу это исправить?

#c #devil

#c #дьявол

Вопрос:

Я хотел бы загрузить изображение в свое приложение, но у меня ошибка: http://img510.imageshack.us/img510/5814/blad07864.png

Это код этого приложения:

 #include <stdio.h>
#include <stdlib.h>

#undef _UNICODE
#include "il.h"

#pragma comment( lib, "DevIL.lib" )

// Wow. DevIL is amazing.

// From http://gpwiki.org/index.php/DevIL:Tutorials:Basics

// The library consists of three sub-libraries:
//  * IL - main DevIL library. It allows you to load and save images to files. Every function in this library have 'il' prefixed to their name.
//  * ILU - this library contains functions for altering images. Every function in this library have 'ilu' prefixed to their name.
//  * ILUT - this library connects DevIL with OpenGL. Every function in this library have 'ilut' prefixed to their name.

int main()
{
  ilInit();
  printf("DevIL has been initializedn");

  // Loading an image
  ILboolean result = ilLoadImage( "tex1.png" ) ;

  if( result == true )
  {
    printf("the image loaded successfullyn");
  }
  else
  {
    printf("The image failed to loadn" ) ;

    ILenum err = ilGetError() ;
    printf( "the error %dn", err );
    printf( "string is %sn", ilGetString( err ) );
  }

  int size = ilGetInteger( IL_IMAGE_SIZE_OF_DATA ) ;
  printf("Data size:  %dn", size );
  ILubyte * bytes = ilGetData() ;

  for( int i = 0 ; i < size; i   )
  {
    // see we should see the byte data of the image now.
    printf( "%dn", bytes[ i ] );
  }
}
 

Я нашел код с этого сайта: http://bobobobo.wordpress.com/2009/03/02/how-to-load-a-png-image-in-c /

Вы можете мне помочь?

Ответ №1:

Согласно этому сообщению, 1290 означает, что путь к изображению не найден. Попробуйте использовать абсолютный путь к файлу и посмотрите, сможет ли он тогда загрузиться.