libpngインストールと配置(Win 7+VSB 2010)

17545 ワード

ダウンロード
libpng:http://libmng.com/pub/png/libpng.html
zlib:http://www.zlib.net/
IDE:VVS 2010
二、コンパイル
ダウンロードした二つのzipを同じディレクトリに解凍します.
ibpngディレクトリ下のproject\vstudio内のプロジェクトファイルを開きます.
コンパイル運転は、出力ディレクトリ(DebugまたはRealse)で出力ファイルlibpng 16 dl、libpng 16 lib、zlib.libを取得します.
三、プロジェクトの作成
プロジェクトを作成し、プロジェクト名を右クリックしてPropties(プロパティ)ダイアログを開きます.
C/C+->General(一般)->Additional Include Directores(ディレクトリを含む)にlibpngディレクトリを追加します.
Linker->General->>Additional Library Directoriaes(ライブラリディレクトリを追加)に、生成したばかりのlibファイルがある経路を追加します.
Linker->Input(入力)->Additional Dependencies(追加依存項)にlibpng 16 lib、zlib.libの2つのファイルを追加します.
四、運転
ここには簡単な例があります.

/*

 * Copyright 2002-2010 Guillaume Cottenceau.

 *

 * This software may be freely redistributed under the terms

 * of the X11 license.

 *

 */



#include <unistd.h>

#include <stdlib.h>

#include <stdio.h>

#include <string.h>

#include <stdarg.h>



#define PNG_DEBUG 3

#include <png.h>



void abort_(const char * s, ...)

{

        va_list args;

        va_start(args, s);

        vfprintf(stderr, s, args);

        fprintf(stderr, "
"); va_end(args); abort(); } int x, y; int width, height; png_byte color_type; png_byte bit_depth; png_structp png_ptr; png_infop info_ptr; int number_of_passes; png_bytep * row_pointers; void read_png_file(char* file_name) { char header[8]; // 8 is the maximum size that can be checked /* open file and test for it being a png */ FILE *fp = fopen(file_name, "rb"); if (!fp) abort_("[read_png_file] File %s could not be opened for reading", file_name); fread(header, 1, 8, fp); if (png_sig_cmp(header, 0, 8)) abort_("[read_png_file] File %s is not recognized as a PNG file", file_name); /* initialize stuff */ png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); if (!png_ptr) abort_("[read_png_file] png_create_read_struct failed"); info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) abort_("[read_png_file] png_create_info_struct failed"); if (setjmp(png_jmpbuf(png_ptr))) abort_("[read_png_file] Error during init_io"); png_init_io(png_ptr, fp); png_set_sig_bytes(png_ptr, 8); png_read_info(png_ptr, info_ptr); width = png_get_image_width(png_ptr, info_ptr); height = png_get_image_height(png_ptr, info_ptr); color_type = png_get_color_type(png_ptr, info_ptr); bit_depth = png_get_bit_depth(png_ptr, info_ptr); number_of_passes = png_set_interlace_handling(png_ptr); png_read_update_info(png_ptr, info_ptr); /* read file */ if (setjmp(png_jmpbuf(png_ptr))) abort_("[read_png_file] Error during read_image"); row_pointers = (png_bytep*) malloc(sizeof(png_bytep) * height); for (y=0; y<height; y++) row_pointers[y] = (png_byte*) malloc(png_get_rowbytes(png_ptr,info_ptr)); png_read_image(png_ptr, row_pointers); fclose(fp); } void write_png_file(char* file_name) { /* create file */ FILE *fp = fopen(file_name, "wb"); if (!fp) abort_("[write_png_file] File %s could not be opened for writing", file_name); /* initialize stuff */ png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); if (!png_ptr) abort_("[write_png_file] png_create_write_struct failed"); info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) abort_("[write_png_file] png_create_info_struct failed"); if (setjmp(png_jmpbuf(png_ptr))) abort_("[write_png_file] Error during init_io"); png_init_io(png_ptr, fp); /* write header */ if (setjmp(png_jmpbuf(png_ptr))) abort_("[write_png_file] Error during writing header"); png_set_IHDR(png_ptr, info_ptr, width, height, bit_depth, color_type, PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE); png_write_info(png_ptr, info_ptr); /* write bytes */ if (setjmp(png_jmpbuf(png_ptr))) abort_("[write_png_file] Error during writing bytes"); png_write_image(png_ptr, row_pointers); /* end write */ if (setjmp(png_jmpbuf(png_ptr))) abort_("[write_png_file] Error during end of write"); png_write_end(png_ptr, NULL); /* cleanup heap allocation */ for (y=0; y<height; y++) free(row_pointers[y]); free(row_pointers); fclose(fp); } void process_file(void) { if (png_get_color_type(png_ptr, info_ptr) == PNG_COLOR_TYPE_RGB) abort_("[process_file] input file is PNG_COLOR_TYPE_RGB but must be PNG_COLOR_TYPE_RGBA " "(lacks the alpha channel)"); if (png_get_color_type(png_ptr, info_ptr) != PNG_COLOR_TYPE_RGBA) abort_("[process_file] color_type of input file must be PNG_COLOR_TYPE_RGBA (%d) (is %d)", PNG_COLOR_TYPE_RGBA, png_get_color_type(png_ptr, info_ptr)); for (y=0; y<height; y++) { png_byte* row = row_pointers[y]; for (x=0; x<width; x++) { png_byte* ptr = &(row[x*4]); printf("Pixel at position [ %d - %d ] has RGBA values: %d - %d - %d - %d
", x, y, ptr[0], ptr[1], ptr[2], ptr[3]); /* set red value to 0 and green value to the blue one */ ptr[0] = 0; ptr[1] = ptr[2]; } } } int main(int argc, char **argv) { if (argc != 3) abort_("Usage: program_name <file_in> <file_out>"); read_png_file(argv[1]); process_file(); write_png_file(argv[2]); return 0; }
シンプルexample
コンパイルが間違っている場合、C言語では変数は関数またはステートメントブロックの開始宣言と定義が必要です.
実行時にヒントが足りない場合は、作成したばかりのlibpng 16 dllファイルをプロジェクトディレクトリ(DebugまたはRealse)にコピーすればいいです.システムディレクトリWindows\System 32(64ビットオペレーティングシステムはWindows\SysWOW 64にコピーする必要があります.)にもコピーできます.
png_を実行しているならread_.info(pngutr、info utr)でエラーが発生した場合、「Unhanded exception at 0 x 7 c 928 fea in myApp.exe:0 xC 00005:Access violation writing location 0 x 00000.」という文を引用します.
I sound someone on LibPNG's maling who had the same proble m.The soution is relatively simple:just be sure that the project in Libping Libsing compled with the same「Radstrant」and a lot of projjectis ararsingle threaded by default.This setting can be found in the project's property under C+/Code Generation(in VC 7.1).So、jusinsure ththe setting the setting the same for boboth the boboboth thethe boboboth the proproproproproproperaaaaath Prath proproproproprorererererererererererererererererererererererererererererererererererererererererererererererererererereaat t t t t t t t t t t t nts somewhere(I know that GnuWin 32 does not make any documents、but maybe a quick readme with the installer).Anyway、thanks!--Yop 83
つまり、Libpngをコンパイルしたり、プログラムを呼び出したりする場合は、同じ「Runtime Library」で設定しなければなりません.
ここで私もこの問題に遭遇しました.コンパイルの時にVSL 2010を使って、工事用のVSL 2008を作成しました.その後VSL 2010のためのプロジェクトに変更しました.大丈夫です.
 
転載は出典を明記してください.http://zarb.org/~gc/html/libpng.