EXAMPLE.C
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:17k
源码类别:

图片显示

开发平台:

Visual C++

  1. /* example.c - an example of using libpng */
  2. /* this is an example of how to use libpng to read and write
  3.    png files.  The file libpng.txt is much more verbose then
  4.    this.  If you have not read it, do so first.  This was
  5.    designed to be a starting point of an implementation.
  6.    This is not officially part of libpng, and therefore
  7.    does not require a copyright notice.
  8.    This file does not currently compile, because it is missing
  9.    certain parts, like allocating memory to hold an image.
  10.    You will have to supply these parts to get it to compile.
  11.    */
  12. #include <png.h>
  13. /* check to see if a file is a png file using png_check_sig() */
  14. int check_png(char * file_name)
  15. {
  16.    FILE *fp;
  17.    char buf[8];
  18.    int ret;
  19.    fp = fopen(file_name, "rb");
  20.    if (!fp)
  21.       return 0;
  22.    ret = fread(buf, 1, 8, fp);
  23.    fclose(fp);
  24.    if (ret != 8)
  25.       return 0;
  26.    ret = png_check_sig(buf, 8);
  27.    return (ret);
  28. }
  29. /* read a png file.  You may want to return an error code if the read
  30.    fails (depending upon the failure). */
  31. void read_png(char *file_name)
  32. {
  33.    FILE *fp;
  34.    png_structp png_ptr;
  35.    png_infop info_ptr;
  36.    /* open the file */
  37.    fp = fopen(file_name, "rb");
  38.    if (!fp)
  39.       return;
  40.    /* Create and initialize the png_struct with the desired error handler
  41.       functions.  If you want to use the default stderr and longjump method,
  42.       you can supply NULL for the last three parameters.  We also check that
  43.       the header file is compatible with the library version.
  44.     */
  45.    png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING,
  46.       (void *)user_error_ptr, user_error_fn, user_warning_fn);
  47.    if (!png_ptr)
  48.    {
  49.       fclose(fp);
  50.       return;
  51.    }
  52.    info_ptr = png_create_info_struct();
  53.    if (!info_ptr)
  54.    {
  55.       fclose(fp);
  56.       png_destroy_read_struct(&png_ptr,  (png_infopp)NULL, (png_infopp)NULL);
  57.       return;
  58.    }
  59.    /* set error handling if you are using the setjmp/longjmp method */
  60.    if (setjmp(png_ptr->jmpbuf))
  61.    {
  62.       /* Free all of the memory associated with the png_ptr and info_ptr */
  63.       png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
  64.       fclose(fp);
  65.       /* If we get here, we had a problem reading the file */
  66.       return;
  67.    }
  68.    /* set up the input control if you are using standard C streams */
  69.    png_init_io(png_ptr, fp);
  70.    /* if you are using replacement read functions, instead of calling
  71.       png_init_io() here you would call */
  72.    png_set_read_fn(png_ptr, (void *)user_io_ptr, user_read_fn);
  73.    /* where user_io_ptr is a structure you want available to the callbacks */
  74.    /* read the file information */
  75.    png_read_info(png_ptr, info_ptr);
  76.    /* set up the transformations you want.  Note that these are
  77.       all optional.  Only call them if you want them */
  78.    /* expand paletted colors into true RGB triplets */
  79.    if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  80.       png_set_expand(png_ptr);
  81.    /* expand grayscale images to the full 8 bits */
  82.    if (info_ptr->color_type == PNG_COLOR_TYPE_GRAY && info_ptr->bit_depth < 8)
  83.       png_set_expand(png_ptr);
  84.    /* expand paletted or RGB images with transparency to full alpha channels
  85.     * so the data will be available as RGBA quartets */
  86.    if (info_ptr->valid & PNG_INFO_tRNS)
  87.       png_set_expand(png_ptr);
  88.    /* Set the background color to draw transparent and alpha
  89.       images over.  It is possible to set the red, green, and blue
  90.       components directly for paletted images. */
  91.    png_color_16 my_background;
  92.    if (info_ptr->valid & PNG_INFO_bKGD)
  93.       png_set_background(png_ptr, &(info_ptr->background),
  94.                          PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
  95.    else
  96.       png_set_background(png_ptr, &my_background,
  97.                          PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
  98.    /* tell libpng to handle the gamma conversion for you */
  99.    if (info_ptr->valid & PNG_INFO_gAMA)
  100.       png_set_gamma(png_ptr, screen_gamma, info_ptr->gamma);
  101.    else
  102.       png_set_gamma(png_ptr, screen_gamma, 0.45);
  103.    /* tell libpng to strip 16 bit/color files down to 8 bits/color */
  104.    if (info_ptr->bit_depth == 16)
  105.       png_set_strip_16(png_ptr);
  106.    /* dither rgb files down to 8 bit palette & reduce palettes
  107.       to the number of colors available on your screen */
  108.    if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
  109.    {
  110.       if (info_ptr->valid & PNG_INFO_PLTE)
  111.          png_set_dither(png_ptr, info_ptr->palette, info_ptr->num_palette,
  112.                         max_screen_colors, info_ptr->histogram);
  113.       else
  114.       {
  115.          png_color std_color_cube[MAX_SCREEN_COLORS] =
  116.             {/* ... colors ... */};
  117.          png_set_dither(png_ptr, std_color_cube, MAX_SCREEN_COLORS,
  118.             MAX_SCREEN_COLORS, NULL);
  119.       }
  120.    }
  121.    /* invert monocrome files to have 0 as white and 1 as black */
  122.    if (info_ptr->bit_depth == 1 && info_ptr->color_type == PNG_COLOR_GRAY)
  123.       png_set_invert(png_ptr);
  124.    /* shift the pixels down to their true bit depth */
  125.    if (info_ptr->valid & PNG_INFO_sBIT &&
  126.       info_ptr->bit_depth > info_ptr->sig_bit)
  127.       png_set_shift(png_ptr, &(info_ptr->sig_bit));
  128.    /* pack multiple pixels with bit depths of 1, 2, and 4 into bytes
  129.       (useful only for paletted and grayscale images) */
  130.    if (info_ptr->bit_depth < 8)
  131.       png_set_packing(png_ptr);
  132.    /* flip the rgb pixels to bgr */
  133.    if (info_ptr->color_type == PNG_COLOR_TYPE_RGB ||
  134.       info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
  135.       png_set_bgr(png_ptr);
  136.    /* swap bytes of 16 bit files to least significant bit first */
  137.    if (info_ptr->bit_depth == 16)
  138.       png_set_swap(png_ptr);
  139.    /* add a filler byte to RGB files (before or after each RGB triplet) */
  140.    if (info_ptr->bit_depth == 8 && info_ptr->color_type == PNG_COLOR_TYPE_RGB)
  141.       png_set_filler(png_ptr, 0xff, PNG_FILLER_AFTER);
  142.    /* turn on interlace handling if you are not using png_read_image() */
  143.    number_passes = png_set_interlace_handling(png_ptr);
  144.    /* optional call to gamma correct and add the background to the palette
  145.       and update info structure. */
  146.    png_read_update_info(png_ptr, info_ptr);
  147.    /* allocate the memory to hold the image using the fields
  148.       of png_info. */
  149.    /* the easiest way to read the image */
  150.    png_bytep row_pointers[height];
  151.    for (row = 0; row < height; row++)
  152.    {
  153.      row_pointers[row] = malloc(info_ptr->rowbytes);
  154.    }
  155.    png_read_image(png_ptr, row_pointers);
  156.    /* the other way to read images - deal with interlacing */
  157.    for (pass = 0; pass < number_passes; pass++)
  158.    {
  159.       /* Read the image using the "sparkle" effect. */
  160.       png_read_rows(png_ptr, row_pointers, NULL, number_of_rows);
  161.       /* If you are only reading on row at a time, this works */
  162.       for (y = 0; y < height; y++)
  163.       {
  164.          png_bytep row_pointers = row[y];
  165.          png_read_rows(png_ptr, &row_pointers, NULL, 1);
  166.       }
  167.       /* to get the rectangle effect, use the third parameter */
  168.       png_read_rows(png_ptr, NULL, row_pointers, number_of_rows);
  169.       /* if you want to display the image after every pass, do
  170.          so here */
  171.    }
  172.    /* read the rest of the file, getting any additional chunks in info_ptr */
  173.    png_read_end(png_ptr, info_ptr);
  174.    /* clean up after the read, and free any memory allocated */
  175.    png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
  176.    /* close the file */
  177.    fclose(fp);
  178.    /* that's it */
  179.    return;
  180. }
  181. /* progressively read a file */
  182. int
  183. initialize_png_reader(png_structp *png_ptr, png_infop *info_ptr)
  184. {
  185.    /* Create and initialize the png_struct with the desired error handler
  186.       functions.  If you want to use the default stderr and longjump method,
  187.       you can supply NULL for the last three parameters.  We also check that
  188.       the library version is compatible in case we are using dynamically
  189.       linked libraries.
  190.     */
  191.    *png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING,
  192.        (void *)user_error_ptr, user_error_fn, user_warning_fn);
  193.    if (! *png_ptr)
  194.    {
  195.       *info_ptr = NULL;
  196.       return ERROR;
  197.    }
  198.    *info_ptr = png_create_info_struct(png_ptr);
  199.    if (! *info_ptr)
  200.    {
  201.       png_destroy_read_struct(png_ptr, info_ptr, (png_infopp)NULL);
  202.       return ERROR;
  203.    }
  204.    if (setjmp((*png_ptr)->jmpbuf))
  205.    {
  206.       png_destroy_read_struct(png_ptr, info_ptr, (png_infopp)NULL);
  207.       return ERROR;
  208.    }
  209.    /* this one's new.  You will need to provide all three
  210.       function callbacks, even if you aren't using them all.
  211.       These functions shouldn't be dependent on global or
  212.       static variables if you are decoding several images
  213.       simultaneously.  You should store stream specific data
  214.       in a separate struct, given as the second parameter,
  215.       and retrieve the pointer from inside the callbacks using
  216.       the function png_get_progressive_ptr(png_ptr). */
  217.    png_set_progressive_read_fn(*png_ptr, (void *)stream_data,
  218.       info_callback, row_callback, end_callback);
  219.    return OK;
  220. }
  221. int
  222. process_data(png_structp *png_ptr, png_infop *info_ptr,
  223.    png_bytep buffer, png_uint_32 length)
  224. {
  225.    if (setjmp((*png_ptr)->jmpbuf))
  226.    {
  227.       /* Free the png_ptr and info_ptr memory on error */
  228.       png_destroy_read_struct(png_ptr, info_ptr, (png_infopp)NULL);
  229.       return ERROR;
  230.    }
  231.    /* this one's new also.  Simply give it chunks of data as
  232.       they arrive from the data stream (in order, of course).
  233.       On Segmented machines, don't give it any more than 64K.
  234.       The library seems to run fine with sizes of 4K, although
  235.       you can give it much less if necessary (I assume you can
  236.       give it chunks of 1 byte, but I haven't tried with less
  237.       than 256 bytes yet).  When this function returns, you may
  238.       want to display any rows that were generated in the row
  239.       callback, if you aren't already displaying them there. */
  240.    png_process_data(*png_ptr, *info_ptr, buffer, length);
  241.    return OK;
  242. }
  243. info_callback(png_structp png_ptr, png_infop info)
  244. {
  245. /* do any setup here, including setting any of the transformations
  246.    mentioned in the Reading PNG files section.  For now, you _must_
  247.    call either png_start_read_image() or png_read_update_info()
  248.    after all the transformations are set (even if you don't set
  249.    any).  You may start getting rows before png_process_data()
  250.    returns, so this is your last chance to prepare for that. */
  251. }
  252. row_callback(png_structp png_ptr, png_bytep new_row,
  253.    png_uint_32 row_num, int pass)
  254. {
  255. /* this function is called for every row in the image.  If the
  256.    image is interlacing, and you turned on the interlace handler,
  257.    this function will be called for every row in every pass.
  258.    Some of these rows will not be changed from the previous pass.
  259.    When the row is not changed, the new_row variable will be NULL.
  260.    The rows and passes are called in order, so you don't really
  261.    need the row_num and pass, but I'm supplying them because it
  262.    may make your life easier.
  263.    For the non-NULL rows of interlaced images, you must call
  264.    png_progressive_combine_row() passing in the row and the
  265.    old row.  You can call this function for NULL rows (it will
  266.    just return) and for non-interlaced images (it just does the
  267.    memcpy for you) if it will make the code easier.  Thus, you
  268.    can just do this for all cases: */
  269.    png_progressive_combine_row(png_ptr, old_row, new_row);
  270. /* where old_row is what was displayed for previous rows.  Note
  271.    that the first pass (pass == 0 really) will completely cover
  272.    the old row, so the rows do not have to be initialized.  After
  273.    the first pass (and only for interlaced images), you will have
  274.    to pass the current row, and the function will combine the
  275.    old row and the new row. */
  276. }
  277. end_callback(png_structp png_ptr, png_infop info)
  278. {
  279. /* this function is called when the whole image has been read,
  280.    including any chunks after the image (up to and including
  281.    the IEND).  You will usually have the same info chunk as you
  282.    had in the header, although some data may have been added
  283.    to the comments and time fields.
  284.    Most people won't do much here, perhaps setting a flag that
  285.    marks the image as finished. */
  286. }
  287. /* write a png file */
  288. void write_png(char *file_name, ... other image information ...)
  289. {
  290.    FILE *fp;
  291.    png_structp png_ptr;
  292.    png_infop info_ptr;
  293.    /* open the file */
  294.    fp = fopen(file_name, "wb");
  295.    if (!fp)
  296.       return;
  297.    /* Create and initialize the png_struct with the desired error handler
  298.       functions.  If you want to use the default stderr and longjump method,
  299.       you can supply NULL for the last three parameters.  We also check that
  300.       the library version is compatible in case we are using dynamically
  301.       linked libraries.
  302.     */
  303.    png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING,
  304.       (void *)user_error_ptr, user_error_fn, user_warning_fn);
  305.    if (!png_ptr)
  306.    {
  307.       fclose(fp);
  308.       return;
  309.    }
  310.    info_ptr = png_create_info_struct(png_ptr);
  311.    if (!info_ptr)
  312.    {
  313.       fclose(fp);
  314.       png_destroy_write_struct(&png_ptr,  (png_infopp)NULL);
  315.       return;
  316.    }
  317.    /* set error handling */
  318.    if (setjmp(png_ptr->jmpbuf))
  319.    {
  320.       /* If we get here, we had a problem reading the file */
  321.       fclose(fp);
  322.       png_destroy_write_struct(&png_ptr,  (png_infopp)NULL);
  323.       return;
  324.    }
  325.    /* set up the output control if you are using standard C streams */
  326.    png_init_io(png_ptr, fp);
  327.    /* if you are using replacement message functions, here you would call */
  328.    png_set_message_fn(png_ptr, (void *)msg_ptr, user_error_fn, user_warning_fn);
  329.    /* where msg_ptr is a structure you want available to the callbacks */
  330.    /* set the file information here */
  331.    info_ptr->width = ;
  332.    info_ptr->height = ;
  333.    etc.
  334.    /* set the palette if there is one */
  335.    info_ptr->valid |= PNG_INFO_PLTE;
  336.    info_ptr->palette = malloc(256 * sizeof (png_color));
  337.    info_ptr->num_palette = 256;
  338.    ... set palette colors ...
  339.    /* optional significant bit chunk */
  340.    info_ptr->valid |= PNG_INFO_sBIT;
  341.    /* if we are dealing with a grayscale image then */
  342.    info_ptr->sig_bit.gray = true_bit_depth;
  343.    /* otherwise, if we are dealing with a color image then */
  344.    info_ptr->sig_bit.red = true_red_bit_depth;
  345.    info_ptr->sig_bit.green = true_green_bit_depth;
  346.    info_ptr->sig_bit.blue = true_blue_bit_depth;
  347.    /* if the image has an alpha channel then */
  348.    info_ptr->sig_bit.alpha = true_alpha_bit_depth;
  349.   
  350.    /* optional gamma chunk is strongly suggested if you have any guess
  351.       as to the correct gamma of the image */
  352.    info_ptr->valid |= PNG_INFO_gAMA;
  353.    info_ptr->gamma = gamma;
  354.    /* other optional chunks like cHRM, bKGD, tRNS, tEXt, tIME, oFFs, pHYs, */
  355.    /* write the file header information */
  356.    png_write_info(png_ptr, info_ptr);
  357.    /* set up the transformations you want.  Note that these are
  358.       all optional.  Only call them if you want them */
  359.    /* invert monocrome pixels */
  360.    png_set_invert(png_ptr);
  361.    /* shift the pixels up to a legal bit depth and fill in
  362.       as appropriate to correctly scale the image */
  363.    png_set_shift(png_ptr, &(info_ptr->sig_bit));
  364.    /* pack pixels into bytes */
  365.    png_set_packing(png_ptr);
  366.    /* flip bgr pixels to rgb */
  367.    png_set_bgr(png_ptr);
  368.    /* swap bytes of 16 bit files to most significant bit first */
  369.    png_set_swap(png_ptr);
  370.    /* get rid of filler bytes, pack rgb into 3 bytes.  The
  371.       filler number is not used. */
  372.    png_set_filler(png_ptr, 0, PNG_FILLER_BEFORE);
  373.    /* turn on interlace handling if you are not using png_write_image() */
  374.    if (interlacing)
  375.       number_passes = png_set_interlace_handling(png_ptr);
  376.    else
  377.       number_passes = 1;
  378.    /* the easiest way to write the image (you may choose to allocate the
  379.       memory differently, however) */
  380.    png_byte row_pointers[height][width];
  381.    png_write_image(png_ptr, row_pointers);
  382.    /* the other way to write the image - deal with interlacing */
  383.    for (pass = 0; pass < number_passes; pass++)
  384.    {
  385.       /* Write a few rows at a time. */
  386.       png_write_rows(png_ptr, row_pointers, number_of_rows);
  387.       /* If you are only writing one row at a time, this works */
  388.       for (y = 0; y < height; y++)
  389.       {
  390.          png_bytep row_pointers = row[y];
  391.          png_write_rows(png_ptr, &row_pointers, 1);
  392.       }
  393.    }
  394.    /* You can write optional chunks like tEXt, tIME at the end as well.
  395.     * Note that if you wrote tEXt or zTXt chunks before the image, and
  396.     * you aren't writing out more at the end, you have to set
  397.     * info_ptr->num_text = 0 or they will be written out again.
  398.     */
  399.    /* write the rest of the file */
  400.    png_write_end(png_ptr, info_ptr);
  401.    /* if you malloced the palette, free it here */
  402.    if (info_ptr->palette)
  403.       free(info_ptr->palette);
  404.    /* if you allocated any text comments, free them here */
  405.    /* clean up after the write, and free any memory allocated */
  406.    png_destroy_write_struct(&png_ptr,  (png_infopp)NULL);
  407.    /* close the file */
  408.    fclose(fp);
  409.    /* that's it */
  410.    return;
  411. }