summaryrefslogtreecommitdiff
path: root/src/lib/evas/common/evas_image_save.c
blob: 9a6a7621c11530110a54a6dcf481a4ae87fd89e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include "evas_options.h"

#include "evas_common_private.h"
#include "evas_private.h"


int
evas_common_save_image_to_file(RGBA_Image *im, const char *file, const char *key,
                               int quality, int compress, const char *encoding)
{
   Evas_Image_Save_Func *evas_image_save_func = NULL;
   char *p;
   char *saver = NULL;

   p = strrchr(file, '.');
   if (p)
     {
        p++;

        if (!strcasecmp(p, "png"))
          saver = "png";
        if ((!strcasecmp(p, "jpg")) || (!strcasecmp(p, "jpeg")) ||
            (!strcasecmp(p, "jfif")))
          saver = "jpeg";
        if ((!strcasecmp(p, "eet")) || (!strcasecmp(p, "edj")) ||
            (!strcasecmp(p, "eap")))
          saver = "eet";
        if (!strcasecmp(p, "webp"))
          saver = "webp";
        if (!strcasecmp(p, "tgv"))
          saver = "tgv";
     }

   if (saver)
     {
        Evas_Module *em;

        em = evas_module_find_type(EVAS_MODULE_TYPE_IMAGE_SAVER, saver);
        if (em)
          {
             evas_module_use(em);
             if (evas_module_load(em))
               {
                  evas_image_save_func = em->functions;
                  return evas_image_save_func->image_save(im, file, key, quality,
                                                          compress, encoding);
               }
          }
     }
   return 0;
}