Tagged Questions
Developer's Image Library (DevIL) is a programmer's library to develop applications with very powerful image loading capabilities, yet is easy for a developer to learn and use
2
votes
1answer
117 views
Issue with texture loading using the DevIl library
I am working with the DevIl library and trying to use it to load a texture to OpenGL to apply to a sprite. The code is directly out of the C# Game Programming for Serious Game Design book (if that ...
2
votes
1answer
370 views
DevIL and OpenGL in C++
This is my problem. I am writing a C++ OpenGL project using DevIL and I am getting compile-time errors while trying to work out how to load an image to use as a texture.
So far I have this
...
2
votes
1answer
889 views
devIL causes program to be unable to start correctly
I just tried to use devIL and ULIT to help me with opengl texture loading. However, whenever the program starts, I get the error:
"The application was unable to start correctly (0xc000007b). Click OK ...
1
vote
1answer
23 views
Why generate resource names in OpenGL and DevIL?
Just reading the DevIL manual here. Also reminded me of glGenBuffers. Why did they choose to have the user of each library generate names (pg. 6 in the DevIL manual), rather than specifying names for ...
1
vote
1answer
76 views
How do i convert the DevIL in NEHE Lesson07 to Slick libraries?
I'm trying to learn how to use LWJGL libraries. Took me forever to find lessons. I eventually stumbled upon the NEHE lessons that teach OpenGL across many programming languages. I downloaded the LWJGL ...
1
vote
2answers
201 views
Use a 32-bit assembly in 64-bit environment
I am trying to integrate DevIL.NET into 3ds Max to automatically convert my images to a single format. To do so, I created a class library in C# that accepts a string and returns the new file path
...
1
vote
2answers
569 views
Loading an image using DevIL and OpenGL in C++
As the title suggests, I am trying to load an image using DevIL, before passing it to OpenGL. I am using this piece of code as error control
const char* filename = "back.bmp";
if ...
1
vote
2answers
290 views
OpenGL and DevIL white textures problem under some Windows systems
I'm having some problems trying to load images with DevIL and creating textures in OpenGL. When a friend of mine tested my program on his Windows, all the rects, whom were supposed to contain ...
1
vote
3answers
1k views
OpenGL textures appear just black
I am trying to apply a texture to a quad, but I only get a black box instead of the texture. I am using DevIL to load images from files and OpenGL does the rest.
Here is what I am doing so far:
The ...
1
vote
1answer
461 views
Transform OpenCV image data type to Devil image format and vice-verca
I want to use a CUDA-enabled SIFT library but I am using the OpenCV driver to get images from the webcam? The Cuda library is using the Devil Library for image data types.
Should I transofrm the ...
0
votes
0answers
43 views
Segmentation fault at 'ilutGLLoadImage'
Anyone happen to know why I'm getting a segmentation fault at line 2 below (this is after all my glInit stuff)? I've tried different image formats (.jpeg, .png, .bmp, all from internet). Debug tips or ...
0
votes
1answer
30 views
can't call any functions with devIL
I would like to be able to use the devIL library for a project I am working on, but for some reason I cannot get it set up correctly. In my project, I have:
#include <IL/il.h>
#include ...
0
votes
0answers
29 views
Linking ilutOgl functions
Is there something else besides ilut.h I have to #include to get ilutOgl functions to work? Because ilutRenderer(ILUT_OPENGL) is recognized, but ilutOglLoadImage("myimage.jpeg") "was not declared in ...
0
votes
1answer
72 views
Installing C++ library on Ubuntu [closed]
I must be a noob, always have trouble installing on Linux. I'm trying to install from: http://openil.sourceforge.net/download.php. So I followed the manual ...
0
votes
1answer
58 views
DevIL error 1290. How can I fix it?
I would like to load image to my application, but I have an error:
http://img510.imageshack.us/img510/5814/blad07864.png
This is a code of this application:
#include <stdio.h>
#include ...
0
votes
1answer
49 views
Errors in the use of the Devil libraries
I found this tutorial, but when I copy code to my C++ project, there are many errors:
-------------- Build: Debug in Tekstury123 ---------------
Compiling: main.cpp
...
0
votes
1answer
125 views
Load a cubemap in a DDS file with DevIL
I only get the first face in a cubemap. How do I access/load the other ones?
With DevIL 1.7.8 on Ubuntu Natty:
I use ilLoad or ilLoadImage to load a dds-file with 6 textures, but only the first face ...
0
votes
0answers
160 views
DevIL segfault, issues with png's, bmp's
I am on mingw (gcc version 4.5.2).
I get a segfault when opening certain files, including PNGs and BMPs. It was working fine on a 128x128 PNG but when I started testing with larger files I started ...
0
votes
1answer
127 views
How to save an image in vc++ using DevIL
I am using DevIL in my vc++ application. I need to save an image. I have the bitmap image which is generated programatically. How can I save the image in a png format to a specific location?
0
votes
1answer
69 views
Error in DevIL. cannot open file 'il_wrap.lib'
I am using DevIL in my vc++ application. When build the application I get an error fatal error LNK1104: cannot open file 'il_wrap.lib'. There is no such file (il_wrap.lib). I am using ...
0
votes
1answer
306 views
Unable to load Tao.DevIl.dll
Windows 7 64 Bit
i have downloaded Tao framework to work with Opengl and DevIl together. the problem is when i try to use devIl library i get this error under 64 bit platform ( settings > build > ...
0
votes
0answers
167 views
C# OpenGL Load Texture Error
I am having difficulty loading a texture using the following code:
if (!Il.ilLoadImage("test.jpg"))
{
System.Diagnostics.Debug.Assert(false,"Could not open file, [" + path + ...
0
votes
8answers
1k views
DevIL library files and dependencies
Okay, here's the thing. I have all the IL files I need, namely
DevIL.dll
DevIL.lib
ILU.dll
ILU.lib
ILUT.dll
ILUT.lib
config.h
config.h.in
devil_cpp_wrapper.h
devil_internal_exports.h
il.h
ilu.h
...
0
votes
2answers
183 views
error C2664 and C2597 in OpenGL and DevIL in C++
I guess this is a two part problem, which is why I couldn't find a more suitable title for the post.
I am loading an image using DevIL and then converting it to a familiar format. Here is the part of ...
0
votes
3answers
804 views
Loading a BMP into an OpenGL textures switches the red and blue colors. (C++/Windows)
I'm trying to load a bitmap into an OpenGL texture and display it to the screen, but when I do so, the red and blue values seem to switch (e.g.: a blue image appears orange, green images remain ...
0
votes
2answers
63 views
Develop me something that I can use to waste paper FASTER [closed]
I wish there was a legal regulation that limits the programmatic printing (on paper) to a maximum number?
This is no joke, my client wants an option that will enable them to print say a 100 invoices ...
0
votes
1answer
314 views
C++ “File format not recognized”?
I'm trying to run the code located here:
http://r3dux.org/2010/11/single-call-opengl-texture-loader-in-devil/
And it requires me to use DevIL, so I installed it to my c:\usr\ folder using the Win32 ...
0
votes
0answers
207 views
internet explorer 7&8 print layout problems
I have created a print button on my site which launches the print dialogue box. I also have a print.css file which is used to layout the print document. In this print.css file I have discarded ...
0
votes
4answers
262 views
Linker Error: Undefined reference
I'm fairly new to C++ and am trying out working with OpenGL, so I opted to try out the source code in this article:
...
0
votes
1answer
29 views
My mail_type attribute is getting updated.. but i can't figure out why?
def update
debugger
@email_blast = EmailBlast.find(params[:id])
if @email_blast.update_attributes(params[:email_blast])
debugger
# changes mail_type here
flash[:notice] = ...
0
votes
1answer
814 views
Using a dynamic library (DevIL/OpenIL) in a Xcode project
i am trying to compile example source code which is using the OpenGL, SDL and IL aka DevIL aka OpenIL libraries. OpenGL and SDL are available as native frameworks, but DevIL isn't. So here is what i ...
0
votes
4answers
522 views
C++, how to load images and count pixels of certain colours
here's my problem:
I'm looking for a way to import an image into C++ then traverse its pixels, incrementing a counter every time a pixel of a certain colour is found.
I've done some research, but I ...
0
votes
1answer
638 views
Issue on using CMAKE with MSYS/MinGW linking dll files using DevIL image library
actually i create a CMake script to localize the DevIL library using MSYS/MinGW on win32 platform. I've extend the origin FindDevIL CMake script to regard the MinGW root when try to find DevIL:
...
0
votes
1answer
87 views
Image format question
I'm using an image loader (DevIL) for image loading. Im just wondering if the image format (the uncompressed format in memory) loaded from files (.jpg, .png, .bmp etc) is determined by the image ...
0
votes
1answer
499 views
Static library for DevIL?
I really need a static version of the DevIL DLLs for windows as I need to statically link my program to it. Anyone got one?
I, unfortunately, don't have the toolchain to compile from source :/
...
-3
votes
0answers
48 views
image sharpen process with pure pure c program
I don't know a clue about image processing, I am using devil to load up the image, then I got nothing to do next, for example, in order to achieve image sharpen effect,what to start? I can access each ...