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.
0
votes
0answers
8 views
Save CGImageRef as PNG-8
I'm wondering how to save a CGImageRef as a palette-based PNG-8 file.
I have the following code for PNG-24:
CFURLRef url = (CFURLRef)[[NSURL alloc] initFileURLWithPath:path];
CGImageDestinationRef ...
1
vote
2answers
35 views
Using libpng in C#
if you want to save the image in PNG format you can use ImageFormat class of .Net.
But this class doesn't implemented compression for PNG files.
And for some reasons i can't save my file in JPEG ...
0
votes
1answer
13 views
pngcrush caught libping error, but only when building for device
I have some png files in my iPhone app project. They work fine when I build for the simulator. But when I build for the device, suddenly every single png file generates the dreaded "while reading ...
0
votes
2answers
52 views
embedding a PNG image in C++ as a vector or array
Can anyone point me in a direction so that I can take PNG images that I have and read them in and then store the data of the PNG Image into an array or vector (or some other data structure) so I can ...
0
votes
0answers
25 views
missing libjpeg, do i need to reinstall php?
I am having a issue with PHP by missing libjpeg.
i have installed it by
# apt-get install libjpeg8-dev libpng
And makes simbolic links to lib folder
# ln -s /usr/lib/i386-linux-gnu/libpng.so ...
0
votes
1answer
14 views
Loading texture in segments
I'm working on an Open GL app that uses 1 particularly large texture 2250x1000. Unfortunately, Open GL ES 2.0 doesn't support textures larger than 2048x2048. When I try to draw my texture, it appears ...
0
votes
0answers
21 views
libpng12 include file error
I am tring to compile a piece of code that includes the standard libpng12, but I keep on getting this error when compiling my code. (The code is not relevant, since the only thing I do is #include ...
0
votes
1answer
47 views
Extract OpenGL raw RGB(A) texture data from png data stored in NSData using libpng on iOS
Unfortunately, there appears to be no way to using a built-in method on iOS to extract 32 bit RGBA data from a PNG file without losing the alpha channel reference. Therefore, some people have been ...
0
votes
0answers
33 views
link error with libpng 12 and Xcode 4.6
Good day. Recently had an issue with libpng12, xcode 4.6, iOS 6.1. I builded libpng and linked libpng12.a to my project. When trying to build - there's an error which says:
ld: library not found for ...
0
votes
1answer
41 views
libpng error: read error (Visual Studio 2010)
i've been struggling to get libpng to work on my opengl c++ program. I am trying to load png's as textures. I have downloaded the libpng16 source code and built it using Visual Studio 2010. I have ...
1
vote
1answer
40 views
Add text/annotation to PNG image using C
I've written a small tool in C that generates images from data out of a database. The images are in PNG format and now I need to add some text to the image. I can't find any examples on how to create ...
2
votes
0answers
36 views
Application was compiled with png.h from libpng but running with another on different Linux systems
I develop application using QT + Opencv. These two libraries use libpng.
And when I run application on some platforms I get warning: "Application was compiled with ... png.h from libpng... but ...
0
votes
0answers
16 views
Unable to open PNG file with kview or PictureViewer; opens fine with other viewers
I have a PNG file created using libPNG library. The file opens perfectly on Windows picture viewer and MS Paint, but opening with kview (on Linux RHEL5) or QuickTime PictureViewer (on Windows) fails - ...
0
votes
1answer
64 views
MinGW: libpng won't build properly
So I need this libpng to be statically link with my dll to be used by my exe. This dll is already done before until I switch my compiler from MSVC to MinGW, then this dll won't work anymore so I think ...
0
votes
0answers
25 views
Whats this “zlib-sgd-x86.dll is missing”
I link this libpng I downloaded in here.
There are lots of it, I don't know which one should I pick so I link each one of them and finally link to the one that has no error. But when I try to run my ...
1
vote
1answer
20 views
How to build libpng using mingw
I cannot find on Google any easy way to do this . I try this but make says "no target found an no makefile found. Stop". First I did was go into the directory of lpng162/scripts where I can found ...
0
votes
0answers
66 views
how to update linpng15.15.dylib to 26.0.0?
when I try to use matplotlib, such message comes. I felt that 'import matplotlib.pyplot' doesn't worked. I feel like that something has different version. How can I solve it?
Traceback (most recent ...
1
vote
1answer
105 views
Code::Blocks w/ MinGW: statically link libpng into a dll
I'm trying to link libpng16.lib to my .dll file but I cannot get it to work. I included already libpng16.lib and zlib.lib into project dependencies (in right order, libpng first) but still get to ...
0
votes
0answers
25 views
Using libpng for Ubuntu
I can't compile an open-source project that uses libpng under Ubuntu using gcc.
I've installed with apt-get libpng3 and libpng12-dev, but autoconf says that 'libpng' isn't installed yet.
How to make ...
1
vote
1answer
22 views
reuse pngPtr and infoPtr in libpng
I am using libpng in a project I am working on. Right now, frames are read 1 by 1 into the memory, using the following commands to allocate memory to the read and info structs:
pngPtr = ...
0
votes
0answers
46 views
libz or/and libpng for Windows (Phone) 8 Apps
The problem is pretty simple. When building for W(P)8 you can't compile .c files or use old C syntax code (the one where function parameters are specified twice).
Libpng is easily compilable under ...
0
votes
0answers
37 views
libpng how to load images despite format
I need to know what kind of transformations shall I use to load all types of png (RGB, RGBA, ARGB, Indexed, Gray, etc.) into format RGBA to compare that images pixel by pixel (images has same width ...
0
votes
1answer
46 views
libpng warning in Eclipse
I am on Ubuntu 12.04 LTS using Eclipse 3.7.2 trying to use MathGL.
My simple, c++ looks like:
#include <iostream>
#include <mgl2/mgl.h>
using namespace std;
int main() {
mglGraph gr;
...
0
votes
0answers
69 views
png_set_palette_to_rgb changes a png palette color type image to white image
Hi I am trying to decompress a PNG image which has color type palette. what I am doing is
char* filename = (char*)source;
//header for testing if it is a png
png_byte header[8];
//open ...
0
votes
0answers
26 views
Exploiting redundancy among JPG images
I wish to exploit redundancy among a set of similar colored JPG images. Set redundancy compression has been used successfully for similar 8-bit grayscale images. They basically find the MAX and MIN of ...
0
votes
0answers
56 views
Display data from pnglib as an ximage
I need to import a PNG and display it on screen in a Motif application. For reasons best known to myself, I don't want to use any more libraries than I need to, and I'd like to stick with just Motif ...
1
vote
1answer
111 views
Python matplotlib and libpng Incompatibility issue
I'm really suffering from this problem for so long.
Originally, after plotting something with matplotlib, I could easily save the image.
However, after installing scipy, I couldn't save my image ...
0
votes
0answers
21 views
Anyone know the build options use to make “Libpng 1.2.37 for windows?”
I am trying to port some code from a linux box to windows, using the library found here:
http://gnuwin32.sourceforge.net/packages/libpng.htm
I am getting a "write access violation" during the call ...
1
vote
1answer
76 views
Capybara-webkit QtGui requires version 29.0.0 or later
Hi I'm trying to do some basic messing around with capybara-webkit.
When I try to include the Capybara::DSL I get the following error
dyld: Library not loaded: /usr/local/lib/libpng15.15.dylib
...
-1
votes
1answer
104 views
Unable to find libpng.so.2 under unbutu12.10 [closed]
I have run the matlab r2009b on the Ubuntu 12.10 which is installed in VMware,when I run a program ,I get the error warning:error while loading shared libraries:libpng.so.2.I have been found it for a ...
0
votes
1answer
148 views
read a png image in buffer
hi i have used libpng to convert grayscale png image to raw image using c. in that lib the function png_init_io needs file pointer to read the png. but i pass the png image as buffer is there any ...
1
vote
1answer
97 views
Image Processing Terminology: Bit Depth
I'm doing some image processing, and I'm a bit confused by some of the terminology. Particularly, I'm confused about the meaning of "bit depth".
I have a good understanding of the structure of a ...
0
votes
2answers
116 views
Creating a PNG from char buffer and size data using libpng
I am currently modifying Android Screenshot Library to accept outside connections. When it connects for Java, I know I can get the raw data and pass it into Java's Bitmap through ...
5
votes
2answers
141 views
JPEG image compression
I am looking at the problem of reducing storage space when storing multiple JPEG images together as a single bigger image. The basic intuition is that images tend to have some similarities (like ...
0
votes
1answer
56 views
Website API giving fatal libpng error
Hello so I'm currently working on a program that will upload an image to my website using the POST method and it's API. Right now everything is going fine and it is connecting to the server and trying ...
1
vote
1answer
154 views
How to load Photoshop png with LIBPNG?
I am facing some problems to load some specific png images. Here are some helpful images.
Image #1 www.silexars.com/image.png (Doesn't load properly)
Image #2 www.silexars.com/image2.png (Loads ...
-1
votes
1answer
161 views
Display image file using C programming
I want to read and display a png image using c programming. Please suggest some ways. Is it possible to use libPng library for displaying image ?
0
votes
1answer
70 views
Creating 2bits color depth PNG images with Libpng
I would like to generate PNG images with 1bits (2 colors) or 2bit (4 colors) depth with the library Libpng.
Does any one know how to do it ? I have tested examples, and they all seem to work with ...
0
votes
1answer
73 views
Using libpng filters
I want to read a PNG file with libpng and I want to use the filter png_set_rgb_to_gray_fixed to convert RGB values into grayscale. The original image has 8 bits per channel, hence 3 bytes per pixel. I ...
1
vote
1answer
75 views
libpng version 1.5.14 missing endif
I have tried compiling libpng 1.5.14 on a Cray x86_64 system using CC 5.10 and ran into frequent missing endif errors. I fixed many of these errors by adding an #endif to the end of the files, ...
0
votes
1answer
175 views
libpng load file from memory buffer
I tried looking through the libpng documentation, but didn't find what I was looking for.
I have a PNG file fully in a memory buffer, how can I load this file (apart from the obvious solution of ...
0
votes
0answers
103 views
Adding other function crashes function? [closed]
Well this is "weird". I have a function that converts a jpeg image to an PNG image - using boost::gil. I am writing this in microsoft visual studio 2010. This is working fine & no problems.
Now ...
0
votes
0answers
283 views
compiling libpng in visual studio 2010 problems
I'm having lots of troubles trying to compile libpng 1.5.13 using visual studio 2010.
I downloaded the source, and opened the pre-made projects under \projects\vstudio. First it had a lot of bad ...
0
votes
1answer
145 views
PNG image texture format for color type 3
I have a PNG image of 128x128 dimension. When I read its IHDR chunk with libpng it shows that the image has color type 3. The problem is I cant find anywhere what should be the texture format for this ...
-3
votes
1answer
138 views
Loading png image texture from char array or QByteArray with libpng [closed]
I have the image data as QByteArray. I want to load the texture of this image from that data using libpng. Everywhere I see reading the image texture from the file or from input stream. But how can I ...
1
vote
1answer
128 views
Libharu creates errors about pngtest.c with windows.h
I have faced with an easy-solvable problem with libharu which I asked here; but unfortunately when I fixed the first problem, a second one appeared.
I'm using Codeblocks IDE with GNU GCC C++ Compiler ...
1
vote
1answer
486 views
Adding libpng in android ndk project
I've searched a lot of topics about linking libpng to my android ndk project but I've found right answer for my problem and I hope somebody will help me.
This is hierarchy of my project:
jni
...
0
votes
2answers
163 views
How to use NPOT images as textures with libpng and OpenGL ES 1.1?
I'm trying to use NPOT-sized PNG images as textures in OpenGL ES 1.1 (so no GL_arb_texture_rectangle) using libpng 1.5. With SDL, I could just blit the NPOT image onto a NPOT texture, but I can't ...
1
vote
1answer
153 views
CImg not displaying transparent png images correctly?
I am using CImg combined with libpng in Visual Studio 2010 to display png images.
When I display the image using CImg, it appears to not correctly display the transparency.
I am not sue if this is me ...
0
votes
0answers
172 views
Unable to link libpng or zlib in Eclipse with MinGW C linker
I'm new to external static libraries in C, and i'm having trouble adding pnglib (or any library) to Eclipse. Im using Eclipse v3.3.2 with mingw on windows 7 64bit.
I first followed these instructions ...




