pngtopng.c 3.0 KB
Newer Older
1 2
/*- pngtopng
 *
3
 * COPYRIGHT: Written by John Cunningham Bowler, 2011, 2017.
4 5 6
 * To the extent possible under law, the author has waived all copyright and
 * related or neighboring rights to this work.  This work is published from:
 * United States.
7
 *
8
 * Last changed in libpng 1.6.29 [March 16, 2017]
9
 *
10 11
 * Read a PNG and write it out in a fixed format, using the 'simplified API'
 * that was introduced in libpng-1.6.0.
12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * This sample code is just the code from the top of 'example.c' with some error
 * handling added.  See example.c for more comments.
 */
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>

/* Normally use <png.h> here to get the installed libpng, but this is done to
 * ensure the code picks up the local libpng implementation:
 */
#include "../../png.h"
25 26
#if defined(PNG_SIMPLIFIED_READ_SUPPORTED) && \
    defined(PNG_SIMPLIFIED_WRITE_SUPPORTED)
27 28 29 30 31 32 33 34 35

int main(int argc, const char **argv)
{
   int result = 1;

   if (argc == 3)
   {
      png_image image;

36
      /* Only the image structure version number needs to be set. */
37
      memset(&image, 0, sizeof image);
38
      image.version = PNG_IMAGE_VERSION;
39 40 41 42

      if (png_image_begin_read_from_file(&image, argv[1]))
      {
         png_bytep buffer;
43 44 45 46

         /* Change this to try different formats!  If you set a colormap format
          * then you must also supply a colormap below.
          */
47 48 49 50 51 52 53
         image.format = PNG_FORMAT_RGBA;

         buffer = malloc(PNG_IMAGE_SIZE(image));

         if (buffer != NULL)
         {
            if (png_image_finish_read(&image, NULL/*background*/, buffer,
54
               0/*row_stride*/, NULL/*colormap for PNG_FORMAT_FLAG_COLORMAP */))
55 56
            {
               if (png_image_write_to_file(&image, argv[2],
57 58
                  0/*convert_to_8bit*/, buffer, 0/*row_stride*/,
                  NULL/*colormap*/))
59 60 61 62
                  result = 0;

               else
                  fprintf(stderr, "pngtopng: write %s: %s\n", argv[2],
63
                      image.message);
64 65 66
            }

            else
67 68 69
               fprintf(stderr, "pngtopng: read %s: %s\n", argv[1],
                   image.message);

J
John Bowler 已提交
70
            free(buffer);
71 72 73
         }

         else
J
John Bowler 已提交
74
         {
75 76
            fprintf(stderr, "pngtopng: out of memory: %lu bytes\n",
               (unsigned long)PNG_IMAGE_SIZE(image));
J
John Bowler 已提交
77 78 79 80 81 82 83 84

            /* This is the only place where a 'free' is required; libpng does
             * the cleanup on error and success, but in this case we couldn't
             * complete the read because of running out of memory and so libpng
             * has not got to the point where it can do cleanup.
             */
            png_image_free(&image);
         }
85 86 87 88 89 90 91 92 93 94 95 96 97
      }

      else
         /* Failed to read the first argument: */
         fprintf(stderr, "pngtopng: %s: %s\n", argv[1], image.message);
   }

   else
      /* Wrong number of arguments */
      fprintf(stderr, "pngtopng: usage: pngtopng input-file output-file\n");

   return result;
}
98
#endif /* READ && WRITE */