Tagged Questions

"FreeImage is an Open Source library project for developers who would like to support popular graphics image formats like PNG, BMP, JPEG, TIFF and others as needed by today's multimedia applications."

learn more… | top users | synonyms

2
votes
1answer
386 views

Use external DLL in cmake build

I'm working on the cmake scripts for my project and I've run into a problem: My project uses a 3rd party library (FreeImage), which has its own Makefile-based build system. I can build FreeImage just ...
2
votes
1answer
2k views

Android NDK linker error 'Undefined reference to std::ios_base' when using FreeImage

I am trying to statically link against the open frameworks build of libfreeimage.a for the Android NDK (using the native-activity sample as a template). When I compile and link my project I get a lot ...
2
votes
0answers
143 views

How to find out the compression of a TIFF image in FreeImage?

I use FreeImage to work with multipage TIFF files and at some point I have a TIFF page, in a FIBITMAP and I need to know its compression. Any idea how to do this?
2
votes
2answers
582 views

Help changing DPI in a TIFF file with JPEG compression

I have a Tiff file that comes from a scanner. It has a resolution of 300 dpi to start with. But later I need to change it to a different value, say 100. What's the best way to do this without losing ...
2
votes
1answer
340 views

What libraries are available for manipulating super large images in .Net

I have some really large files for example 320 MB tif file with 14000 X 9000 pixels. The operations I need to perform are basically scaling the images to get smaller versions of it and breaking the ...
1
vote
1answer
114 views

How STATIC LINK FreeImage Library?

This is for people using FreeImage Library - an open source C library to manage images: http://freeimage.sourceforge.net/ This question has been submitting many times in different forums, but I ...
1
vote
1answer
110 views

Showing EXR/HDR in WPF

How can I show EXR/HDR using FreeImage (Wrapper for .NET) as a WPF's Image? And PNG, TIFF, TGA? I'm trying and searching in the net, but I'm not able to show these images... I'm using Visual Studio ...
1
vote
2answers
161 views

Retrieving image data from memory

I'm using the FreeImage Library to handle loading images and passing them to OpenGL. Currently, I have support for reading an image from a file. However, I'd like to extend this to being able to ...
1
vote
1answer
355 views

Change image resolution in FreeImage

I open a multipage TIFF file using FreeImage and lock a specific page. After that, I use the following code to change the image resolution of the page: FreeImage.SetResolutionX(page, ...
1
vote
0answers
157 views

Cannot read JP2 file with FreeImage .NET wrapper

I'm trying to read and convert JP2 images using the FreeImage accepted answer from this question but getting a 0 byte JOEG file. When I step through I see that the line FIBITMAP dib = ...
1
vote
1answer
309 views

Which is faster, GDI+ or libpng?

I have an HBITMAP and i would like to convert it to png format(in memory i have malloc'd)as fast as possible, so my question is should i go with GDI+ or libpng? I've tried using GDI+, but it doesn't ...
1
vote
0answers
290 views

FreeImage - Write zTXt tag to PNG

This is really causing me a headache. For some reason or another, I can add a specific tag to a PNG file, but it's not adding the way I'd like and I don't know how to get it to write the way I want ...
1
vote
0answers
1k views

How could ProcessStartInfo.UseShellExecute = false result in odd behavior by FreeImageNet on a separate thread?

I am running a Process in a BackgroundWorker to resize images. If I set UseShellExecute = false on the process's startinfo, I get odd behaviour if I do any simultaneous image manipulation with the ...
1
vote
2answers
389 views

how to make transparent background with freeimage?

I use freeimage.net in my web project. I rotate a picture(.jpg) with RotateClassic function,but after that the background is black. How to make it transparent? thanks for any help.
0
votes
0answers
11 views

FreeImage RBBQuad for white?

I am using FreeImage to add a white canvas to an image. However, when I do RGBQuad.create(255, 255, 255) it creates a blue canvas, not a white one. What am I doing wrong? This is for Ruby. bitmap = ...
0
votes
1answer
141 views

Convert floating point RGBA bitmap to standard Dotnet Bitmap

I'm trying to use the FreeImage.Net library to open the image and convert it to a standard bitmap, but either there must be a step I'm missing, or FreeImage simply can not convert floating point RGBA ...
0
votes
1answer
174 views

FreeImage: Get pixel color

I'm writing a little application that reads color of each pixel in image and writes it to file. First I did it in Python, buit it's too slow on big images. Then I discovered FreeImage library, which I ...
0
votes
0answers
157 views

ImageScience w/ Rails 3

I'm trying to get ImageScience working w/ my rails 3 app. When I try to do require 'image_science' in one of my controllers I get: LoadError in Api::ImagesController#server require on ...
0
votes
1answer
60 views

Runtime error in openframworks code I'm not even using

I'm starting a project using the Aubio library within openFrameworks, so I'm copying in code to my project from Aubio demos, modifting, etc. The Aubio function new_aubio_pitchdetection() works great, ...
0
votes
2answers
476 views

Copy OpenCV IplImage or Mat into Freeimage FIBITMAP

I need to exchange data between FreeImage (FIBITMAP) and OpenCV format (IplImage and/or Mat). I'm fine with getting data from a FIBITMAP into an IplImage or Mat since FreeImage gives you a function ...
0
votes
1answer
289 views

FreeImage portable float map (PFM) RGB channel order

I'm currently using FreeImage to load PFMs into a program that otherwise uses IplImages (the old data type for OpenCV). Here's a sample of what I'm doing (ignore the part about img being an array of ...
0
votes
2answers
372 views

Transparency in FreeImage

I am successfully converting a 24-bit PNG image which has a transparent background to 4-bit PNG image using FreeImage C# wrapper. However, the 4-bit image's background becomes black instead of being ...
0
votes
1answer
103 views

FreeImage dll nor working for batch process

I need to load batches of image files and change their dimensions. I'm doing it through FreeImage.dll in C++. Each batch contains JPG and TIF files. The problem is the exe processes the first batch ...
0
votes
1answer
146 views

Lightweight command-line image resizer?

I'm looking for an image resizer / thumbnailer that is lightweight and efficient. Something that does a good job with all image types, but most importantly jpeg and png. I've looked into ImageMagick ...
0
votes
1answer
278 views

Issues with rake after installing FreeImage on Mac OS X 10.6

I am trying to setup my dev environment on my Mac (running Mac OS X 10.6) for my work's rails application. It requires FreeImage and now that I have installed that, I run rake db:migrate and receive ...
0
votes
1answer
180 views

FreeImage license in project published under MIT License

if I want to publish a project under the MIT license, and the project will use FreeImage under its public license, do I simply include that license seperatly so that my own code is released under MIT, ...
0
votes
1answer
824 views

#include <FreeImage.h> not found

I have compiled FreeImage from source and installed it. When I run sudo make install in installs the following files on my system /usr/local/include/FreeImage.h ...
0
votes
1answer
164 views

How to know the compress rate of a jpeg image?

Is there any method to know the compress rate of a jpeg image? When I am using photoshop, I can set the compress rate when saving a jpeg image, When I am opening a jpeg image, can I read the compress ...