Tagged Questions
libpng is the offical PNG reference library, supporting most all of PNG's features, is extensible, and has been widely used and tested for over 16 years.
10
votes
2answers
101 views
Rendering waveform in PHP - How to produce a more compressed render?
I am rendering a waveform in PHP by downsampling it with the lame encoder and then drawing the waveform from the resulting data points. I am currently getting images like this:
What I would like ...
6
votes
1answer
113 views
Linking libraries with incompatible dependecies
I'm working on a C++ project that needs two third party libraries (libfoo.so and libbar.so). My operating system is Linux.
libfoo.so is dynamically linked to libpng14.so.14 (1.4.8) (EDIT 1)
...
6
votes
1answer
916 views
Determining the CPU architecture of a static library (LIB) on Windows
I just built libpng on a 64-bit Windows machine using VS2008. It produces a libpng.lib file inside the \projects\visualc71\Win32_Lib_Release directory (Configuration used being "LIB Release").
I ...
3
votes
0answers
134 views
Why do I have a compatibility version issue using libpng with Xcode?
I'm having trouble using libpng with Xcode 4.2 on OS X 10.7.1.
My program fails to launch with the error:
dyld: Library not loaded: /usr/X11/lib/libpng15.15.dylib
and:
Reason: Incompatible ...
3
votes
2answers
3k views
How to encode PNG to buffer using libpng?
I'm currently using the following to write a PNG to a file:
#include <png.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
/* Pixels in this bitmap structure are ...
2
votes
1answer
40 views
Linking with libpng in Qt
I'm trying to compile a project that uses both the Qt framework and libpng. I was having errors with a previous version of libpng so I downloaded a newer code-base and now I get the following errors ...
2
votes
1answer
51 views
how to link lpng package
I use VC++, boost::gil package and lpng package to read a png image. After debuging I have
following linking problem:
Error 3 error LNK2001: unresolved external symbol _png_set_swap ...
2
votes
1answer
131 views
write png quickly
Summary
I want to write a .png file as quickly as possible, without a concern for compression. That is, I don't care much about the file size, but I do care that the write happens as quickly as ...
2
votes
2answers
294 views
Find out png color type using png++
I'm using png++, which is working ok, but you need to set the pixel type as a template parameter:
png::image< png::rgb_pixel > image("input.png");
The problem is I don't know at compile time ...
2
votes
1answer
363 views
Help converting a bitmap to a png in memory using libpng
Basically I would like to convert a bitmap to a png using libpng but rather than outputting it to a FILE* I would like to output it to a char*. I have already seen this related post but I don't see ...
2
votes
2answers
2k views
Linking with libpng & zlib?
I'm trying to compile a project that uses both libjpeg and libpng. I know that libpng needs zlib, so I compiled all the three independently and put them (libjpeg.a, libpng.a and libz.a) on a folder ...
2
votes
2answers
1k views
Building Cairo for Windows with MinGW (Problems linking libpng)
I'm trying to build cairo on Windows using MinGW (and MSYS). I am following the instrucions on Compiling GTK+ 2.16.4 for Windows, except that I'm using the latest versions whenever possible, i.e:
...
2
votes
2answers
629 views
is libpng a png file decoder
I'm looking for a way to decode some png file, I heard about libpng, but I don't understand how this one works. Does it convert the png file into an array of bytes in the ARGB8888 format or something ...
1
vote
1answer
51 views
How can I draw a png ontop of another png?
How can I "draw"\"merge" a png top of another png (background) using libpng, while keeping the alpha section of the png being drawn on top of the backhround png. There does not seem to be any ...
1
vote
4answers
69 views
Upgrade a package whose newer version is not still in the distribution repository
I need to upgrade libpng from version 1.2 to 1.5. I need to do so because of this: libpng warning: Application built with libpng-1.2.26 but running with 1.5.2. I am using Lubuntu 11.10 and in the ...
1
vote
1answer
44 views
Why, while compiling a program, it is unable to find tesseract?
I'm trying to compile OCR 0.4, an optical recognizing program by Google.
As written in the readme file they require to:
1) make sure you have these packages installed (current Ubuntu/Debian
...
1
vote
1answer
34 views
How to run a ./configure script inside makefile
I have tried the following:
$(shell ./libpng/configure)
./libpng/configure
under this context
all : build_jpeg build_libpng
#JPEG BUILD RULES
build_jpeg :
make -C ./jpeg
#LIB PNG ...
1
vote
0answers
42 views
Need help installing python package autopy on mac os x - difficulty with libpng and png.h
I was wondering if anyone could help me figure this out. When i try to python setup.py build (or pip install, or easy_install), this happens
the gist is
src/png_io.c:3:17: error: png.h: No such file ...
1
vote
1answer
97 views
Convert raw image using open-source library with permissive license
I need to convert a raw, rgb32-formatted image to a PNG with a library (written in, in order of preference, Java, C, C++) having a permissive (e.g. BSD or Apache) license.
I'm able to convert the ...
1
vote
1answer
208 views
cmake hierarchy zlib, libpng and my own app
I'm trying to create a CMake hierarchy for an application that uses libpng. Libpng requires zlib.
Since a CMakeLists.txt is distributed with both zlib and libpng my first idea was to make the ...
1
vote
3answers
139 views
libpng size of png
My program reads from a data stream of indeterminate length. When it reads a PNG file it needs to store it for later and not decode it. Does libpng provide any function for providing the size of the ...
1
vote
2answers
773 views
Unresolved external png_set_longjmp_fn in libpng
When loading libpng.dll dynamically, after upgrading from libpng13.dll to version 1.5, the compiler started reporting this unresolved external: png_set_longjmp_fn
How come and how do I fix it?
1
vote
1answer
134 views
graphicsmagick is doubling the size of “some” PNG files
Using GraphicsMagick to read in a PNG file and write it out under a different name is causing the file size to increase by more than double. This only happens to some PNG files and I can't figure out ...
1
vote
1answer
335 views
Using libpng to “split” an image into segments
I'm trying to use libpng to split an image into different chunks. The reason being I can't load a texture larger than 512x512 on the hardware I'm working on currently. I accomplished this before with ...
1
vote
2answers
423 views
How to use libpng with OpenGL for a 2D game?
I am beginning with OpenGL, and I want to make a very simple game with airplanes. Now I have a PNG of an airplane seen from above, and I want to draw this on the screen. Currently I only know how to ...
1
vote
1answer
310 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
1answer
325 views
Problem linking SDL_Image against libpng
I'm trying to compile SDL_Image 1.2.10 with MinGW + MSys (gcc 4.5.0) on Windows, I have compiled all the requires libs (zlib 1.2.5, libpng 1.4.2, libjpeg 8a, libtiff 3.9.2). SDL_Image compiles fine, ...
1
vote
1answer
178 views
How do I read an arbitrary chunk from a PNG file?
I've got some custom metadata to put into a PNG file. It's being saved through libpng, and it's not difficult to write out a custom chunk. I just call png_write_chunk with the name, length and data. ...
1
vote
1answer
519 views
Trouble compiling libpng (& zlib) using RVCT 4.0's armcc compiler
I'm trying to compile libpng & zlib using the RVCT 4.0 armcc compiler. However armcc cannot find 'fcntl.h', which I assume is a standard C library. Cygwin has fcntl.h (and the associated files ...
1
vote
2answers
2k views
LibPNG + Boost::GIL: png_infopp_NULL not found
I always get this error when trying to compile my file with Boost::GIL PNG IO support:
(I'm running Mac OS X Leopard and Boost 1.42, LibPNG 1.4)
...
1
vote
3answers
363 views
When I try to make php with --with-gd, I get an error that “configure: error: libpng.(a|so) not found.” What's wrong?
So far, I've made sure I've installed libpng and libjpeg with DarwinPorts (I'm running on OS X Leopard), but that doesn't seem to do the trick. I've read in a number of places that you need the ...
0
votes
1answer
13 views
Issue linking to libpng when trying to make pngnq on Linux
I am trying to install pngnq, which relies on libpng >= 1.2.8. I have installed libpng 1.5.7 via ./configure, make, sudo make install (without problems), because the libpng version in the Software ...
0
votes
0answers
17 views
Interpreting consolle error [glclass.o] while compiling ocropus
I'm willing to install Ocropus, I've asked a question regard it here:
Why, while compiling a program, it is unable to find tesseract?
And I got one step further by solving that error thanks to an ...
0
votes
1answer
38 views
16 bit grayscale png
I'm trying to write (using libpng) an 16-bit grayscale image where each point color equals to sum of its coordinates. The following code should produce a 16-bit PNG, but instead produces 8-bit like ...
0
votes
1answer
41 views
What's the quickest and easiest way of getting libpng available for development in VisualStudio2008?
I have some C++ code which uses boost's GIL image library, and wants to write files using boost::gil::png_write_view from boost/gil/extension/io/png_io.hpp. That header itself includes png.h, and of ...
0
votes
0answers
32 views
How to write palette image use libpng on C?
How to write palette image use libpng on C?
My code :
FILE *fp = fopen(file_name, "wb");
png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
info_ptr = ...
0
votes
0answers
39 views
Libpng and Cimg - VC2010 Link errors when trying to use both
So I have been trying to use CImg to load png images. I copied all needed zlib and libpng headers to VC/include , created libpng15.lib and zlib.lib as Release and Debug Libraries.
The link errors I ...
0
votes
0answers
32 views
Libpng dll error on windows
I have build a source code in which I use PNG file format functions from the libpng library using Microsoft Visual C++ 2010 express(free version) on Win-7. I have also installed the LibPNG for windows ...
0
votes
1answer
62 views
How can I read a png image using libpng?
#include "stdafx.h"
#include <boost/gil/gil_all.hpp>
#include <boost/gil/extension/io/png_io.hpp>
namespace gil = boost::gil;
int _tmain(int argc, _TCHAR* argv[])
{
...
0
votes
1answer
56 views
Is libpng12.dll not compatible with Win7 (64-bits)?
I use libpng package in VisualStudio 2008 to read the png images and my program has to use the libpng12.dll. I putted the libpng12.dll in Windows\System32 and Windows\SysWOW64 and wanted to use ...
0
votes
0answers
54 views
How to fix “libpng12.dll not founded”
I use VisualStudio 2008 and want to read png image by using package libpng and zlib.
The Debugging was successful but when I ran the .exe file the problem "libpng12.dll not founded" is coming. How can ...
0
votes
3answers
96 views
libpng warning: Application built with libpng-1.2.26 but running with 1.5.2
I have a problem on my mac when trying in R to produce png images.
I am getting this warnings:
libpng warning: Application built with libpng-1.2.26 but running with 1.5.2
I am running the R 2.14 ...
0
votes
1answer
165 views
generation slow pdf (yii framework)
i reviewed similar questions, but not found solution for my problem
Environment of our web-project using:
List item
yii framework (Zend Engine v2.3.0)
php 5.3.8
server os Fedora15
java 1.6.0_22
...
0
votes
1answer
46 views
Is it possible to use Qt's built-in libpng library directly?
I'm saving a QImage to a PNG file and QPNGHandler isn't customizable enough (I need png_set_filter) so I need to write my own PNG handler. If Qt was configured without -system-libpng, is it possible ...
0
votes
1answer
57 views
How to set a pixel as transparent for 8-bit pngs when encoding with libpng?
I'm trying to mark pixels as transparent when encoding rgb data to 8-bit png image (palette) using libpng. If I create a separate alpha channel in this case, the alpha channel is getting ignored. Is ...
0
votes
0answers
323 views
OpenGL textures + libpng is causing distorted images
I can't figure out why my PNG images are loading as distorted images when I try to render them with the NDK & OpenGL. The PNGs are in my assets folder, and they have an alpha layer. Here's how I'm ...
0
votes
2answers
174 views
highgui complaining that it needs >=17.0.0 when I have 20.0
This is kind of an ugly one, but I am stuck so here it goes:
I am writing a dynamic library (henceforth 'mylib.dylib') that uses opencv (highgui and other parts) and is ultimately loaded by ffmpeg ...
0
votes
1answer
56 views
libpng error under VC6.0
I'm using libpng in my OpenGL project to load texture of png file with VC6.0 under windows xp.
It's OK to build and error occurs during running.
The error is
the instruction at 0x0040b4a3 referenced ...
0
votes
1answer
266 views
PNG validation on iOS
Writing a mapping application on iOS, making use of OpenStreetMap tiles.
Map tile images are downloaded asynchronously and stored in a dictionary, or persisted in a SQLite DB.
Occasionally, for ...
0
votes
0answers
56 views
RGB 888 array to gray8 png output
Does anybody know how to convert an RGB 888 array to a png gray 8 image using libpng.