summaryrefslogtreecommitdiff
path: root/src/modules/evas/image_loaders/bmp/evas_image_load_bmp.c
blob: aab48fb380640d7bbc0b8a30c7b532fe282470c5 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include <stdio.h>

#include <math.h>

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

typedef struct _BMP_Header BMP_Header;
struct _BMP_Header
{
   unsigned int bmpsize;
   unsigned short res1;
   unsigned short res2;
   unsigned int offset;
   unsigned int head_size;
   int width;
   int height;
   unsigned short bit_count;
   int comp;
   // hdpi
   // vdpi
   int palette_size;
   // important_colors

   unsigned int rmask;
   unsigned int gmask;
   unsigned int bmask;
   unsigned int amask;

   Eina_Bool hasa;
};

typedef struct _Evas_Loader_Internal Evas_Loader_Internal;
struct _Evas_Loader_Internal
{
   Eina_File *f;
   Evas_Image_Load_Opts *opts;
};

static Eina_Bool
read_short(unsigned char *map, size_t length, size_t *position, short *ret)
{
   unsigned char b[2];

   if (*position + 2 > length) return EINA_FALSE;
   b[0] = map[(*position)++];
   b[1] = map[(*position)++];
   *ret = (b[1] << 8) | b[0];
   return EINA_TRUE;
}

static Eina_Bool
read_ushort(unsigned char *map, size_t length, size_t *position, unsigned short *ret)
{
   unsigned char b[2];

   if (*position + 2 > length) return EINA_FALSE;
   b[0] = map[(*position)++];
   b[1] = map[(*position)++];
   *ret = (b[1] << 8) | b[0];
   return EINA_TRUE;
}

static Eina_Bool
read_int(unsigned char *map, size_t length, size_t *position, int *ret)
{
   unsigned char b[4];
   int i;

   if (*position + 4 > length) return EINA_FALSE;
   for (i = 0; i < 4; i++)
     b[i] = map[(*position)++];
   *ret = ARGB_JOIN(b[3], b[2], b[1], b[0]);
   return EINA_TRUE;
}

static Eina_Bool
read_uint(unsigned char *map, size_t length, size_t *position, unsigned int *ret)
{
   unsigned char b[4];
   int i;

   if (*position + 4 > length) return EINA_FALSE;
   for (i = 0; i < 4; i++)
     b[i] = map[(*position)++];
   *ret = ARGB_JOIN(b[3], b[2], b[1], b[0]);
   return EINA_TRUE;
}

static Eina_Bool
read_uchar(unsigned char *map, size_t length, size_t *position, unsigned char *ret)
{
   if (*position + 1 > length) return EINA_FALSE;
   *ret = map[(*position)++];
   return EINA_TRUE;
}

static Eina_Bool
read_skip(size_t length, size_t *position, int skip)
{
   if (*position + skip > length) return EINA_FALSE;
   *position += skip;
   return EINA_TRUE;
}

static Eina_Bool
read_mem(unsigned char *map, size_t length, size_t *position, void *buffer, int size)
{
   if (*position + size > length) return EINA_FALSE;
   memcpy(buffer, map + *position, size);
   *position += size;
   return EINA_TRUE;
}

static Eina_Bool
_evas_image_load_file_header(void *map, size_t fsize, size_t *position, int *image_size,
                             BMP_Header *header, int *error)
{
   if (strncmp(map, "BM", 2)) return EINA_FALSE; // magic number
   *position += 2;
   *error = EVAS_LOAD_ERROR_CORRUPT_FILE;
   if (!read_uint(map, fsize, position, &header->bmpsize)) return EINA_FALSE;
   if (!read_ushort(map, fsize, position, &header->res1)) return EINA_FALSE;
   if (!read_ushort(map, fsize, position, &header->res2)) return EINA_FALSE;
   if (!read_uint(map, fsize, position, &header->offset)) return EINA_FALSE;
   if (!read_uint(map, fsize, position, &header->head_size)) return EINA_FALSE;
   if (header->offset > fsize) return EINA_FALSE;

   switch (header->head_size)
     {
      case  12: // OS/2 V1 + Windows 3.0
        {
           short tmp;

           if (!read_short(map, fsize, position, &tmp)) return EINA_FALSE;
           header->width = tmp; // width
           if (!read_short(map, fsize, position, &tmp)) return EINA_FALSE;
           header->height = tmp; // height
           if (!read_short(map, fsize, position, &tmp)) return EINA_FALSE;
           //planes = tmp; // must be 1
           if (!read_short(map, fsize, position, &tmp)) return EINA_FALSE;
           header->bit_count = tmp; // bits per pixel: 1, 4, 8 & 24
           break;
        }
      case 64: // OS/2 V2
        {
           short tmp;
           int tmp2;

           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->width = tmp2; // width
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->height = tmp2; // height
           if (!read_short(map, fsize, position, &tmp)) return EINA_FALSE;
           //planes = tmp; // must be 1
           if (!read_short(map, fsize, position, &tmp)) return EINA_FALSE;
           header->bit_count = tmp; // bits per pixel: 1, 4, 8, 16, 24 & 32
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->comp = tmp2; // compression method
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           if (tmp2 <= *image_size) *image_size = tmp2; // bitmap data size, GIMP can handle image size error
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           //hdpi = (tmp2 * 254) / 10000; // horizontal pixels/meter
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           //vdpi = (tmp2 * 254) / 10000; // vertical pixles/meter
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->palette_size = tmp2; // number of palette colors power (2^n - so 0 - 8)
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           //important_colors = tmp2; // number of important colors - 0 if all
           if (!read_skip(fsize, position, 24)) return EINA_FALSE; // skip unused header
           if (*image_size == 0) *image_size = fsize - header->offset;
           break;
        }
      case 40: // Windows 3.0 + (v3)
        {
           short tmp;
           int tmp2;

           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->width = tmp2; // width
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->height = tmp2; // height
           if (!read_short(map, fsize, position, &tmp)) return EINA_FALSE;
           //planes = tmp; // must be 1
           if (!read_short(map, fsize, position, &tmp)) return EINA_FALSE;
           header->bit_count = tmp; // bits per pixel: 1, 4, 8, 16, 24 & 32
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->comp = tmp2; // compression method
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           if (tmp2 <= *image_size) *image_size = tmp2; // bitmap data size, GIMP can handle image size error
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           //hdpi = (tmp2 * 254) / 10000; // horizontal pixels/meter
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           //vdpi = (tmp2 * 254) / 10000; // vertical pixles/meter
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->palette_size = tmp2; // number of palette colors power (2^n - so 0 - 8)
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           //important_colors = tmp2; // number of important colors - 0 if all
           if (*image_size == 0) *image_size = fsize - header->offset;
           if ((header->comp == 6) && (header->bit_count == 32)) header->hasa = 1;
           break;
        }
      case 108: // Windows 95/NT4 + (v4)
        {
           short tmp;
           int tmp2;

           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->width = tmp2; // width
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->height = tmp2; // height
           if (!read_short(map, fsize, position, &tmp)) return EINA_FALSE;
           //planes = tmp; // must be 1
           if (!read_short(map, fsize, position, &tmp)) return EINA_FALSE;
           header->bit_count = tmp; // bits per pixel: 1, 4, 8, 16, 24 & 32
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->comp = tmp2; // compression method
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           if (tmp2 <= *image_size) *image_size = tmp2; // bitmap data size, GIMP can handle image size error
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           //hdpi = (tmp2 * 254) / 10000; // horizontal pixels/meter
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           //vdpi = (tmp2 * 254) / 10000; // vertical pixles/meter
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->palette_size = tmp2; // number of palette colors power (2^n - so 0 - 8)
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           //important_colors = tmp2; // number of important colors - 0 if all
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->rmask = tmp2; // red mask
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->gmask = tmp2; // green mask
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->bmask = tmp2; // blue mask
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->amask = tmp2; // alpha mask
           if (!read_skip(fsize, position, 36)) return EINA_FALSE; // skip unused cie
           if (!read_skip(fsize, position, 12)) return EINA_FALSE; // skip unused gamma
           if (*image_size == 0) *image_size = fsize - header->offset;
           if ((header->amask) && (header->bit_count == 32)) header->hasa = 1;
           break;
        }
      case 124: // Windows 98/2000 + (v5)
        {
           short tmp;
           int tmp2;

           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->width = tmp2; // width
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->height = tmp2; // height
           if (!read_short(map, fsize, position, &tmp)) return EINA_FALSE;
           //planes = tmp; // must be 1
           if (!read_short(map, fsize, position, &tmp)) return EINA_FALSE;
           header->bit_count = tmp; // bits per pixel: 1, 4, 8, 16, 24 & 32
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->comp = tmp2; // compression method
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           if (tmp2 <= *image_size) *image_size = tmp2; // bitmap data size, GIMP can handle image size error
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           //hdpi = (tmp2 * 254) / 10000; // horizontal pixels/meter
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           //vdpi = (tmp2 * 254) / 10000; // vertical pixles/meter
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->palette_size = tmp2; // number of palette colors power (2^n - so 0 - 8)
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           //important_colors = tmp2; // number of important colors - 0 if all
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->rmask = tmp2; // red mask
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->gmask = tmp2; // green mask
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->bmask = tmp2; // blue mask
           if (!read_int(map, fsize, position, &tmp2)) return EINA_FALSE;
           header->amask = tmp2; // alpha mask
           if (!read_skip(fsize, position, 36)) return EINA_FALSE; // skip unused cie
           if (!read_skip(fsize, position, 12)) return EINA_FALSE; // skip unused gamma
           if (!read_skip(fsize, position, 16)) return EINA_FALSE; // skip others
           if (*image_size == 0) *image_size = fsize - header->offset;
           if ((header->amask) && (header->bit_count == 32)) header->hasa = 1;
           break;
        }
      default:
         return EINA_FALSE;
     }

   return EINA_TRUE;
}

static void *
evas_image_load_file_open_bmp(Eina_File *f, Eina_Stringshare *key EINA_UNUSED,
                              Evas_Image_Load_Opts *opts,
                              Evas_Image_Animated *animated EINA_UNUSED,
                              int *error)
{
   Evas_Loader_Internal *loader;

   loader = calloc(1, sizeof (Evas_Loader_Internal));
   if (!loader)
     {
        *error = EVAS_LOAD_ERROR_RESOURCE_ALLOCATION_FAILED;
        return NULL;
     }

   loader->f = f;
   loader->opts = opts;

   return loader;
}

static void
evas_image_load_file_close_bmp(void *loader_data)
{
   free(loader_data);
}

static Eina_Bool
evas_image_load_file_head_bmp(void *loader_data,
                              Emile_Image_Property *prop,
                              int *error)
{
   Evas_Loader_Internal *loader;
   Evas_Image_Load_Opts *load_opts;
   Eina_File *f;
   void *map = NULL;
   size_t position = 0;
   BMP_Header header;
   int image_size = 0;
   size_t fsize;
   Eina_Bool r = EINA_FALSE;

   loader = loader_data;
   f = loader->f;
   load_opts = loader->opts;

   *error = EVAS_LOAD_ERROR_UNKNOWN_FORMAT;
   fsize = eina_file_size_get(f);
   if (fsize < 2) goto close_file;

   map = eina_file_map_all(f, EINA_FILE_RANDOM);
   if (!map) goto close_file;

   memset(&header, 0, sizeof (header));

   if (!_evas_image_load_file_header(map, fsize, &position, &image_size, &header, error))
     goto close_file;

   if (header.height < 0)
     {
        header.height = -header.height;
        //right_way_up = 1;
     }

   if ((header.width < 1) || (header.height < 1) ||
       (header.width > IMG_MAX_SIZE) || (header.height > IMG_MAX_SIZE) ||
       IMG_TOO_BIG(header.width, header.height))
     {
        if (IMG_TOO_BIG(header.width, header.height))
          *error = EVAS_LOAD_ERROR_RESOURCE_ALLOCATION_FAILED;
        else
          *error = EVAS_LOAD_ERROR_GENERIC;
	goto close_file;
     }

   if (load_opts->emile.region.w > 0 && load_opts->emile.region.h > 0)
     {
        if ((load_opts->emile.region.w + load_opts->emile.region.x > header.width) ||
            (load_opts->emile.region.h + load_opts->emile.region.y > header.height))
          {
             *error = EVAS_LOAD_ERROR_GENERIC;
             goto close_file;
          }
        header.width = load_opts->emile.region.w;
        header.height = load_opts->emile.region.h;
     }

   /* It is not bad idea that bmp loader support scale down decoding
    * because of memory issue in mobile world.*/
   if (load_opts->emile.scale_down_by > 1)
     {
        header.width /= load_opts->emile.scale_down_by;
        header.height /= load_opts->emile.scale_down_by;
     }

   if (header.bit_count < 16)
     {
        //if ((palette_size < 0) || (palette_size > 256)) pal_num = 256;
        //else pal_num = palette_size;
        if (header.bit_count == 1)
          {
             if (header.comp == 0) // no compression
               {
               }
             else
               goto close_file;
          }
        else if (header.bit_count == 4)
          {
             if (header.comp == 0) // no compression
               {
               }
             else if (header.comp == 2) // rle 4bit/pixel
               {
               }
             else
               goto close_file;
          }
        else if (header.bit_count == 8)
          {
             if (header.comp == 0) // no compression
               {
               }
             else if (header.comp == 1) // rle 8bit/pixel
               {
               }
             else
               goto close_file;
          }
     }
   else if ((header.bit_count == 16) || (header.bit_count == 24) || (header.bit_count == 32))
     {
        if (header.comp == 0) // no compression
          {
             // handled
          }
        else if (header.comp == 3) // bit field
          {
             // handled
          }
        else if (header.comp == 4) // jpeg - only printer drivers
          goto close_file;
        else if (header.comp == 5) // png - only printer drivers
          goto close_file;
        else
          goto close_file;
     }
   else
     goto close_file;

   prop->w = header.width;
   prop->h = header.height;
   if (header.hasa) prop->alpha = 1;

   *error = EVAS_LOAD_ERROR_NONE;
   r = EINA_TRUE;

 close_file:
   if (map) eina_file_map_free(f, map);
   return r;
}

static Eina_Bool
evas_image_load_file_data_bmp(void *loader_data,
                              Emile_Image_Property *prop,
			      void *pixels,
			      int *error)
{
   Evas_Loader_Internal *loader;
   Evas_Image_Load_Opts *opts;
   Eina_File *f;
   BMP_Header header;
   void *map = NULL;
   size_t position = 0;
   unsigned char *buffer = NULL, *buffer_end = NULL, *p;
   int x = 0, y = 0, image_size = 0;
   unsigned int *pal = NULL, pal_num = 0, *pix = NULL, fix, *surface = pixels;
   int right_way_up = 0;
   unsigned char r, g, b, a;
   size_t fsize;

   /* for scale decoding */
   unsigned int *scale_surface = NULL, *scale_pix = NULL;
   int scale_ratio = 1, image_w = 0, image_h = 0;
   int region_set = 0, region_x = 0, region_y = 0, region_w, region_h;
   int row_size = 0; /* Row size is rounded up to a multiple of 4bytes */
   int read_line = 0; /* total read line */

   loader = loader_data;
   f = loader->f;
   opts = loader->opts;

   *error = EVAS_LOAD_ERROR_UNKNOWN_FORMAT;
   fsize = eina_file_size_get(f);
   if (fsize < 2) goto close_file;

   map = eina_file_map_all(f, EINA_FILE_SEQUENTIAL);
   if (!map) goto close_file;

   memset(&header, 0, sizeof (header));
   header.palette_size = -1;

   if (!_evas_image_load_file_header(map, fsize, &position, &image_size, &header, error))
     goto close_file;

   *error = EVAS_LOAD_ERROR_GENERIC;
   if (header.height < 0)
     {
        header.height = -header.height;
        right_way_up = 1;
     }
   if ((header.width < 1) || (header.height < 1) || (header.width > IMG_MAX_SIZE) || (header.height > IMG_MAX_SIZE) ||
       IMG_TOO_BIG(header.width, header.height))
     {
        if (IMG_TOO_BIG(header.width, header.height))
          *error = EVAS_LOAD_ERROR_RESOURCE_ALLOCATION_FAILED;
        else
          *error = EVAS_LOAD_ERROR_GENERIC;
        goto close_file;
     }
   image_w = region_w = header.width;
   image_h = region_h = header.height;

   if (opts->emile.region.w > 0 && opts->emile.region.h > 0)
     {
        if ((opts->emile.region.w + opts->emile.region.x > header.width) ||
            (opts->emile.region.h + opts->emile.region.y > header.height))
          {
             *error = EVAS_LOAD_ERROR_GENERIC;
             goto close_file;
          }
        region_set = 1;
        region_x = opts->emile.region.x;
        region_y = image_h - (opts->emile.region.h + opts->emile.region.y);
        region_w = opts->emile.region.w;
        region_h = opts->emile.region.h;

        header.width = opts->emile.region.w;
        header.height = opts->emile.region.h;
     }
   /* It is not bad idea that bmp loader support scale down decoding
    * because of memory issue in mobile world. */
   if (opts->emile.scale_down_by > 1)
     scale_ratio = opts->emile.scale_down_by;

   if (scale_ratio > 1)
     {
        header.width /= scale_ratio;
        header.height /= scale_ratio;

        if ((header.width < 1) || (header.height < 1) )
          {
             *error = EVAS_LOAD_ERROR_GENERIC;
             goto close_file;
          }
     }

   if ((header.width != (int)prop->w) || (header.height != (int)prop->h))
     {
	*error = EVAS_LOAD_ERROR_GENERIC;
        goto close_file;
     }

   row_size = ceil((double)(image_w * header.bit_count) / 32) * 4;

   //If the file is not downloaded perfactly, image_size can be smaller (row_size * header.height).
   //in this case, image_size should be filesize-offset size.

   if (image_size > row_size * header.height)
     image_size = row_size * header.height;

   if (region_set)
     read_line = region_y;

   if (header.bit_count < 16)
     {
        unsigned int i;

        if (header.bit_count == 1)
          {
             if ((header.palette_size <= 0) || (header.palette_size > 2)) pal_num = 2;
             else pal_num = header.palette_size;
          }
        else if (header.bit_count == 4)
          {
             if ((header.palette_size <= 0) || (header.palette_size > 16)) pal_num = 16;
             else pal_num = header.palette_size;
          }
        else if (header.bit_count == 8)
          {
             if ((header.palette_size <= 0) || (header.palette_size > 256)) pal_num = 256;
             else pal_num = header.palette_size;
          }
        pal = alloca(256 * 4);
        for (i = 0; i < pal_num; i++)
          {
             if (!read_uchar(map, fsize, &position, &b)) goto close_file;
             if (!read_uchar(map, fsize, &position, &g)) goto close_file;
             if (!read_uchar(map, fsize, &position, &r)) goto close_file;
             if ((header.head_size != 12) /*&& (palette_size != 0)*/)
               { // OS/2 V1 doesn't do the pad byte
                  if (!read_uchar(map, fsize, &position, &a)) goto close_file;
               }
             a = 0xff; // fillin a as solid for paletted images
             pal[i] = ARGB_JOIN(a, r, g, b);
          }
        position = header.offset;

        if ((!region_set && scale_ratio == 1) || (header.comp != 0))
          {
             if (image_size < (int)(fsize - position))
               image_size = fsize - position;
             buffer = malloc(image_size + 8); // add 8 for padding to avoid checks
          }
        else
          {
             scale_surface = malloc(image_w * sizeof(DATA32)); //for one line decoding
             if (!scale_surface)
               {
                  *error = EVAS_LOAD_ERROR_RESOURCE_ALLOCATION_FAILED;
                  goto close_file;
               }
             buffer = malloc(row_size); // scale down is usually set because of memory issue, so read line by line
          }

        if (!buffer)
          {
             *error = EVAS_LOAD_ERROR_RESOURCE_ALLOCATION_FAILED;
             goto close_file;
          }
        if ((!region_set && scale_ratio == 1) || (header.comp != 0))
          {
             buffer_end = buffer + image_size;
             if (!read_mem(map, fsize, &position, buffer, image_size)) goto close_file;
          }
        else
          {
             if (region_set)
               position += row_size * region_y;

             if (!read_mem(map, fsize, &position, buffer, row_size)) goto close_file;
             buffer_end = buffer + row_size;
          }
        p = buffer;

        if (header.bit_count == 1)
          {
             if (header.comp == 0) // no compression
               {
                  pix = surface;

                  for (y = 0; y < header.height; y++)
                    {
                       if (!right_way_up) pix = surface + ((header.height - 1 - y) * header.width);
                       if (scale_ratio > 1 || region_set) pix = scale_surface; // one line decoding

                       for (x = 0; x < image_w; x++)
                         {
                            if ((x & 0x7) == 0x0)
                              {
                                 *pix = pal[*p >> 7];
                              }
                            else if ((x & 0x7) == 0x1)
                              {
                                 *pix = pal[(*p >> 6) & 0x1];
                              }
                            else if ((x & 0x7) == 0x2)
                              {
                                 *pix = pal[(*p >> 5) & 0x1];
                              }
                            else if ((x & 0x7) == 0x3)
                              {
                                 *pix = pal[(*p >> 4) & 0x1];
                              }
                            else if ((x & 0x7) == 0x4)
                              {
                                 *pix = pal[(*p >> 3) & 0x1];
                              }
                            else if ((x & 0x7) == 0x5)
                              {
                                 *pix = pal[(*p >> 2) & 0x1];
                              }
                            else if ((x & 0x7) == 0x6)
                              {
                                 *pix = pal[(*p >> 1) & 0x1];
                              }
                            else
                              {
                                 *pix = pal[*p & 0x1];
                                 p++;
                              }
                            if (p >= buffer_end) break;
                            pix++;
                         }

                       if (scale_ratio > 1 || region_set)
                         {
                            if (!right_way_up) scale_pix = surface + ((header.height - 1 - y) * header.width);
                            else scale_pix = surface + (y * header.width);

                            if (region_set)
                              pix = scale_surface + region_x;
                            else
                              pix = scale_surface;

                            for (x = 0; x < header.width; x++)
                              {
                                 *scale_pix = *pix;
                                 scale_pix ++;
                                 pix += scale_ratio;
                              }
                            read_line += scale_ratio;
                            if (read_line >= image_h) break;

                            position += row_size * (scale_ratio - 1);
                            if (!read_mem(map, fsize, &position, buffer, row_size)) goto close_file;
                            p = buffer;
                            buffer_end = buffer + row_size;
                         }
                       else
                         {
                            if ((x & 0x7) != 0) p++;
                            fix = (int)(((uintptr_t)p) & 0x3);
                            if (fix > 0) p += 4 - fix; // align row read
                            if (p >= buffer_end) break;
                         }
                    }
               }
             else
               goto close_file;
          }
        else if (header.bit_count == 4)
          {
             if (header.comp == 0) // no compression
               {
                  pix = surface;
                  for (y = 0; y < header.height; y++)
                    {
                       if (!right_way_up) pix = surface + ((header.height - 1 - y) * header.width);
                       if (scale_ratio > 1 || region_set) pix = scale_surface; // one line decoding
                       for (x = 0; x < image_w; x++)
                         {
                            if ((x & 0x1) == 0x1)
                              {
                                 *pix = pal[*p & 0x0f];
                                 p++;
                              }
                            else
                              {
                                 *pix = pal[*p >> 4];
                              }
                            if (p >= buffer_end) break;
                            pix++;
                         }
                       if (scale_ratio > 1 || region_set)
                         {
                            if (!right_way_up) scale_pix = surface + ((header.height - 1 - y) * header.width);
                            else scale_pix = surface + (y * header.width);

                            if (region_set)
                              pix = scale_surface + region_x;
                            else
                              pix = scale_surface;

                            for (x = 0; x < header.width; x++)
                              {
                                 *scale_pix = *pix;
                                 scale_pix ++;
                                 pix += scale_ratio;
                              }
                            read_line += scale_ratio;
                            if (read_line >= image_h) break;

                            position += row_size * (scale_ratio - 1);
                            if (!read_mem(map, fsize, &position, buffer, row_size)) goto close_file;
                            p = buffer;
                            buffer_end = buffer + row_size;
                         }
                       else
                         {
                            if ((x & 0x1) != 0) p++;
                            fix = (int)(((uintptr_t)p) & 0x3);
                            if (fix > 0) p += 4 - fix; // align row read
                            if (p >= buffer_end) break;
                         }
                    }
               }
             else if (header.comp == 2) // rle 4bit/pixel
               {
                  int count = 0, done = 0, wpad;
                  int scale_x = 0, scale_y = 0;
                  Eina_Bool scale_down_line = EINA_TRUE;

                  pix = surface;
                  if (region_set && region_y > 0) scale_down_line = EINA_FALSE;

                  if (!right_way_up) pix = surface + ((header.height - 1 - y) * header.width);
                  wpad = ((image_w + 1) / 2) * 2;
                  while (p < buffer_end)
                    {
                       if (p[0])
                         {
                            if (scale_down_line)
                              {
                                 if ((x + p[0]) <= wpad)
                                   {
                                      unsigned int col1 = pal[p[1] >> 4];
                                      unsigned int col2 = pal[p[1] & 0xf];

                                      count = p[0] / 2;
                                      while (count > 0)
                                        {
                                           if (x < header.width)
                                             {
                                                if ((x >= region_x) && ((x % scale_ratio) == 0) && (scale_x < header.width))
                                                  {
                                                     *pix = col1;
                                                     pix++;
                                                     scale_x++;
                                                  }
                                                x++;
                                             }
                                           if (x < header.width)
                                             {
                                                if ((x >= region_x) && ((x % scale_ratio) == 0) && (scale_x < header.width))
                                                  {
                                                     *pix = col2;
                                                     pix++;
                                                     scale_x++;
                                                  }
                                                x++;
                                             }
                                           count--;
                                        }
                                      if (p[0] & 0x1)
                                        {
                                           if ((x >= region_x) && ((x % scale_ratio) == 0) && (scale_x < header.width))
                                             {
                                                *pix = col1;
                                                pix++;
                                                scale_x++;
                                             }
                                           x++;
                                        }
                                   }
                              }
                            p += 2;
                         }
                       else
                         {
                            switch (p[1])
                              {
                               case 0: // EOL
                                  x = 0;
                                  scale_x = 0;
                                  y++;
                                  if (y >= region_y && (y % scale_ratio) == 0)
                                    {
                                       scale_y++;
                                       scale_down_line = EINA_TRUE;
                                       if (!right_way_up)
                                         pix = surface + ((header.height - 1 - scale_y) * header.width);
                                       else
                                         pix = surface + (scale_y * header.width);
                                    }
                                  else
                                    scale_down_line = EINA_FALSE;
                                  if (scale_y >= header.height)
                                    {
                                       p = buffer_end;
                                    }
                                  p += 2;
                                  break;
                               case 1: // EOB
                                  p = buffer_end;
                                  break;
                               case 2: // DELTA
                                  x += p[2];
                                  y += p[3];
                                  scale_x = x / scale_ratio;
                                  scale_y = y / scale_ratio;
                                  if ((scale_x >= header.width) || (scale_y >= header.height))
                                    {
                                       p = buffer_end;
                                    }
                                  if (!right_way_up)
                                    pix = surface + scale_x + ((header.height - 1 - scale_y) * header.width);
                                  else
                                    pix = surface + scale_x + (scale_y * header.width);
                                  p += 4;
                                  break;
                               default:
                                  count = p[1];
                                  if (((p + count) > buffer_end) ||
                                      ((x + count) > header.width))
                                    {
                                       p = buffer_end;
                                       break;
                                    }
                                  p += 2;
                                  done = count;
                                  count /= 2;
                                  while (count > 0)
                                    {
                                       if ((y >= region_y) && (x >= region_x) && ((x % scale_ratio) == 0) && (scale_x < header.width))
                                         {
                                            *pix = pal[*p >> 4];
                                            pix++;
                                            scale_x++;
                                         }
                                       x++;
                                       if ((y >= region_y) && (x >= region_x) && ((x % scale_ratio) == 0) && (scale_x < header.width))
                                         {
                                            *pix = pal[*p & 0xf];
                                            pix++;
                                            scale_x++;
                                         }
                                       x++;

                                       p++;
                                       count--;
                                    }

                                  if (done & 0x1)
                                    {
                                       if (((y >= region_y) && (x >= region_x) && (x % scale_ratio) == 0) && (scale_x < header.width))
                                         {
                                            *pix = pal[*p >> 4];
                                            scale_x++;
                                         }
                                       x++;
                                       p++;
                                    }
                                  if ((done & 0x3) == 0x1)
                                    p += 2;
                                  else if ((done & 0x3) == 0x2)
                                    p += 1;
                                  break;
                              }
                         }
                    }
               }
             else
               goto close_file;
          }
        else if (header.bit_count == 8)
          {
             if (header.comp == 0) // no compression
               {
                  pix = surface;
                  for (y = 0; y < header.height; y++)
                    {
                       if (!right_way_up) pix = surface + ((header.height - 1 - y) * header.width);
                       if (region_set) p += region_x;
                       for (x = 0; x < header.width; x++)
                         {
                            *pix = pal[*p];
                            p += scale_ratio;
                            if (p >= buffer_end) break;
                            pix++;
                         }
                       if (scale_ratio > 1 || region_set)
                         {
                            read_line += scale_ratio;
                            if (read_line >= image_h) break;

                            position += row_size * (scale_ratio - 1);
                            if (!read_mem(map, fsize, &position, buffer, row_size)) goto close_file;
                            p = buffer;
                            buffer_end = buffer + row_size;
                         }
                       else
                         {
                            fix = (int)(((uintptr_t)p) & 0x3);
                            if (fix > 0) p += 4 - fix; // align row read
                            if (p >= buffer_end) break;
                         }
                    }
               }
             else if (header.comp == 1) // rle 8bit/pixel
               {
                  int count = 0, done = 0;
                  int scale_x = 0, scale_y = 0;
                  Eina_Bool scale_down_line = EINA_TRUE;
                  pix = surface;
                  if (region_set && 0 < region_y)
                    scale_down_line = EINA_FALSE;

                  if (!right_way_up) pix = surface + ((header.height - 1 - y) * header.width);

                  while (p < buffer_end)
                    {
                       if (p[0])
                         {
                            if (scale_down_line)
                              {
                                 if ((x + p[0]) <= image_w)
                                   {
                                      unsigned int col = pal[p[1]];

                                      count = p[0];
                                      while (count > 0)
                                        {
                                           if ((x >= region_x) && ((x % scale_ratio) == 0) && (scale_x < header.width))
                                             {
                                                *pix = col;
                                                pix++;
                                                scale_x ++;
                                             }
                                           x++;
                                           count--;
                                        }
                                   }
                              }
                            p += 2;
                         }
                       else
                         {
                            switch (p[1])
                              {
                               case 0: // EOL
                                  x = 0;
                                  scale_x = 0;
                                  y++;
                                  if (y >= region_y && (y % scale_ratio) == 0)
                                    {
                                       scale_y++;
                                       scale_down_line = EINA_TRUE;
                                       if (!right_way_up)
                                         pix = surface + ((header.height - 1 - scale_y) * header.width);
                                       else
                                         pix = surface + (scale_y * header.width);
                                    }
                                  else
                                    scale_down_line = EINA_FALSE;

                                  if (scale_y >= header.height)
                                    {
                                       p = buffer_end;
                                    }
                                  p += 2;
                                  break;
                               case 1: // EOB
                                  p = buffer_end;
                                  break;
                               case 2: // DELTA
                                  x += p[2];
                                  y += p[3];
                                  scale_x = x / scale_ratio;
                                  scale_y = y / scale_ratio;
                                  if ((scale_x >= header.width) || (scale_y >= header.height))
                                    {
                                       p = buffer_end;
                                    }
                                  if (!right_way_up)
                                    pix = surface + scale_x + ((header.height - 1 - scale_y) * header.width);
                                  else
                                    pix = surface + scale_x + (scale_y * header.width);
                                  p += 4;
                                  break;
                               default:
                                  count = p[1];
                                  if (((p + count) > buffer_end) ||
                                      ((x + count) > image_w))
                                    {
                                       p = buffer_end;
                                       break;
                                    }
                                  p += 2;
                                  done = count;
                                  while (count > 0)
                                    {
                                       if ((x >= region_x) && ((x % scale_ratio) == 0) && (scale_x < header.width))
                                         {
                                            *pix = pal[*p];
                                            pix++;
                                            scale_x ++;
                                         }
                                       p++;
                                       x++;
                                       count--;
                                    }
                                  if (done & 0x1) p++;
                                  break;
                              }
                         }
                    }
               }
             else
               goto close_file;
          }
     }
   else if ((header.bit_count == 16) || (header.bit_count == 24) || (header.bit_count == 32))
     {
        if (header.comp == 0) // no compression
          {
             position = header.offset;
             if (!region_set && scale_ratio == 1)
               buffer = malloc(image_size + 8); // add 8 for padding to avoid checks
             else
               buffer = malloc(row_size); // scale down is usually set because of memory issue, so read line by line
             if (!buffer)
               {
                  *error = EVAS_LOAD_ERROR_RESOURCE_ALLOCATION_FAILED;
                  goto close_file;
               }
             if (!region_set && scale_ratio == 1)
               buffer_end = buffer + image_size;
             else
               buffer_end = buffer + row_size;

             p = buffer;
             if (!region_set && scale_ratio == 1)
               {
                  if (!read_mem(map, fsize, &position, buffer, image_size)) goto close_file;
               }
             else
               {
                  if (region_set) position += row_size * region_y;
                  if (!read_mem(map, fsize, &position, buffer, row_size)) goto close_file;
               }
             if (header.bit_count == 16)
               {
                  unsigned short tmp;

                  pix = surface;
                  for (y = 0; y < header.height; y++)
                    {
                       if (!right_way_up) pix = surface + ((header.height - 1 - y) * header.width);
                       if (region_set) p += 2 * region_x;
                       for (x = 0; x < header.width; x++)
                         {
                            tmp = *((unsigned short *)(p));

                            r = (tmp >> 7) & 0xf8; r |= r >> 5;
                            g = (tmp >> 2) & 0xf8; g |= g >> 5;
                            b = (tmp << 3) & 0xf8; b |= b >> 5;
                            *pix = ARGB_JOIN(0xff, r, g, b);

                            p += 2 * scale_ratio;

                            if (p >= buffer_end) break;
                            pix++;
                         }
                       if (scale_ratio > 1 || region_set)
                         {
                            read_line += scale_ratio;
                            if (read_line >= image_h) break;

                            position += row_size * (scale_ratio - 1);
                            if (!read_mem(map, fsize, &position, buffer, row_size)) goto close_file;
                            p = buffer;
                            buffer_end = buffer + row_size;
                         }
                       else
                         {
                            fix = (int)(((uintptr_t)p) & 0x3);
                            if (fix > 0) p += 4 - fix; // align row read
                            if (p >= buffer_end) break;
                         }
                    }
               }
             else if (header.bit_count == 24)
               {
                  pix = surface;
                  for (y = 0; y < header.height; y++)
                    {
                       if (!right_way_up) pix = surface + ((header.height - 1 - y) * header.width);
                       if (region_set) p += 3 * region_x;
                       for (x = 0; x < header.width; x++)
                         {
                            b = p[0];
                            g = p[1];
                            r = p[2];
                            *pix = ARGB_JOIN(0xff, r, g, b);
                            p += 3 * scale_ratio;
                            if (p >= buffer_end) break;
                            pix++;
                         }
                       if (scale_ratio > 1 || region_set)
                         {
                            read_line += scale_ratio;
                            if (read_line >= image_h) break;

                            position += row_size * (scale_ratio - 1);
                            if (!read_mem(map, fsize, &position, buffer, row_size)) goto close_file;
                            p = buffer;
                            buffer_end = buffer + row_size;
                         }
                       else
                         {
                            fix = (int)(((uintptr_t)p) & 0x3);
                            if (fix > 0) p += 4 - fix; // align row read
                            if (p >= buffer_end) break;
                         }
                    }
               }
             else if (header.bit_count == 32)
               {
                  int none_zero_alpha = 0;
                  pix = surface;
                  for (y = 0; y < header.height; y++)
                    {
                       if (!right_way_up) pix = surface + ((header.height - 1 - y) * header.width);
                       if (region_set) p += 4 * region_x;
                       for (x = 0; x < header.width; x++)
                         {
                            b = p[0];
                            g = p[1];
                            r = p[2];
                            a = p[3];
                            if (a) none_zero_alpha = 1;
                            if (!header.hasa) a = 0xff;
                            *pix = ARGB_JOIN(a, r, g, b);
                            p += 4 * scale_ratio;

                            if (p >= buffer_end) break;
                            pix++;
                         }
                       if (scale_ratio > 1 || region_set)
                         {
                            read_line += scale_ratio;
                            if (read_line >= image_h) break;

                            position += row_size * (scale_ratio - 1);
                            if (!read_mem(map, fsize, &position, buffer, row_size)) goto close_file;
                            p = buffer;
                            buffer_end = buffer + row_size;
                         }
                       else
                         {
                            fix = (int)(((uintptr_t)p) & 0x3);
                            if (fix > 0) p += 4 - fix; // align row read
                            if (p >= buffer_end) break;
                         }
                    }
                  if (!none_zero_alpha)
                    {
                       prop->alpha = 0;
                       if (header.hasa)
                         {
                            unsigned int *pixend = surface + (header.width * header.height);

                            for (pix = surface; pix < pixend; pix++)
                               A_VAL(pix) = 0xff;
                         }
                    }
               }
             else
               goto close_file;
          }
        else if (header.comp == 3) // bit field
          {
             position = header.offset;
             if (!region_set && scale_ratio == 1)
               buffer = malloc(image_size + 8); // add 8 for padding to avoid checks
             else
               buffer = malloc(row_size); // scale down is usually set because of memory issue, so read line by line

             if (!buffer)
               {
                  *error = EVAS_LOAD_ERROR_RESOURCE_ALLOCATION_FAILED;
                  goto close_file;
               }
             if (!region_set && scale_ratio == 1)
               buffer_end = buffer + image_size;
             else
               buffer_end = buffer + row_size;

             p = buffer;
             if (!region_set && scale_ratio == 1)
               {
                  if (!read_mem(map, fsize, &position, buffer, image_size)) goto close_file;
               }
             else
               {
                  if (region_set)
                       position += row_size * region_y;
                  if (!read_mem(map, fsize, &position, buffer, row_size)) goto close_file;
               }

             if ((header.bit_count == 16) &&
                 (header.rmask == 0xf800) && (header.gmask == 0x07e0) && (header.bmask == 0x001f)
                 )
               {
                  unsigned short tmp;

                  pix = surface;
                  for (y = 0; y < header.height; y++)
                    {
                       if (!right_way_up) pix = surface + ((header.height - 1 - y) * header.width);
                       if (region_set) p += 2 * region_x;
                       for (x = 0; x < header.width; x++)
                         {
                            tmp = *((unsigned short *)(p));

                            r = (tmp >> 8) & 0xf8; r |= r >> 5;
                            g = (tmp >> 3) & 0xfc; g |= g >> 6;
                            b = (tmp << 3) & 0xf8; b |= b >> 5;
                            *pix = ARGB_JOIN(0xff, r, g, b);

                            p += 2 * scale_ratio;

                            if (p >= buffer_end) break;
                            pix++;
                         }
                       if (scale_ratio > 1 || region_set)
                         {
                            read_line += scale_ratio;
                            if (read_line >= image_h) break;

                            position += row_size * (scale_ratio - 1);
                            if (!read_mem(map, fsize, &position, buffer, row_size)) goto close_file;
                            p = buffer;
                            buffer_end = buffer + row_size;
                         }
                       else
                         {
                            fix = (int)(((uintptr_t)p) & 0x3);
                            if (fix > 0) p += 4 - fix; // align row read
                            if (p >= buffer_end) break;
                         }
                    }
               }
             else if ((header.bit_count == 16) &&
                      (header.rmask == 0x7c00) && (header.gmask == 0x03e0) && (header.bmask == 0x001f)
                     )
               {
                  unsigned short tmp;
                  pix = surface;
                  for (y = 0; y < header.height; y++)
                    {
                       if (!right_way_up) pix = surface + ((header.height - 1 - y) * header.width);
                       if (region_set) p += 2 * region_x;
                       for (x = 0; x < header.width; x++)
                         {
                            tmp = *((unsigned short *)(p));

                            r = (tmp >> 7) & 0xf8; r |= r >> 5;
                            g = (tmp >> 2) & 0xf8; g |= g >> 5;
                            b = (tmp << 3) & 0xf8; b |= b >> 5;
                            *pix = ARGB_JOIN(0xff, r, g, b);
                            p += 2 * scale_ratio;

                            if (p >= buffer_end) break;
                            pix++;
                         }
                       if (scale_ratio > 1 || region_set)
                         {
                            read_line += scale_ratio;
                            if (read_line >= image_h) break;

                            position += row_size * (scale_ratio - 1);
                            if (!read_mem(map, fsize, &position, buffer, row_size)) goto close_file;
                            p = buffer;
                            buffer_end = buffer + row_size;
                         }
                       else
                         {
                            fix = (int)(((uintptr_t)p) & 0x3);
                            if (fix > 0) p += 4 - fix; // align row read
                            if (p >= buffer_end) break;
                         }
                    }
               }
             else if (header.bit_count == 32)
               {
                  pix = surface;
                  for (y = 0; y < header.height; y++)
                    {
                       if (!right_way_up) pix = surface + ((header.height - 1 - y) * header.width);
                       if (region_set) p += 4 * region_x;
                       for (x = 0; x < header.width; x++)
                         {
                            b = p[0];
                            g = p[1];
                            r = p[2];
                            a = p[3];
                            if (!header.hasa) a = 0xff;
                            *pix = ARGB_JOIN(a, r, g, b);

                              p += 4 * scale_ratio;

                            if (p >= buffer_end) break;
                            pix++;
                         }
                       if (scale_ratio > 1 || region_set)
                         {
                            read_line += scale_ratio;
                            if (read_line >= image_h) break;

                            position += row_size * (scale_ratio - 1);
                            if (!read_mem(map, fsize, &position, buffer, row_size)) goto close_file;
                            p = buffer;
                            buffer_end = buffer + row_size;
                         }
                       else
                         {
                            fix = (int)(((uintptr_t)p) & 0x3);
                            if (fix > 0) p += 4 - fix; // align row read
                            if (p >= buffer_end) break;
                         }
                    }
               }
             else
               goto close_file;
          }
        else if (header.comp == 4) // jpeg - only printer drivers
          {
             goto close_file;
          }
        else if (header.comp == 5) // png - only printer drivers
          {
             goto close_file;
          }
        else
          goto close_file;
     }
   else
     goto close_file;

   if (buffer) free(buffer);
   if (scale_surface) free(scale_surface);

   eina_file_map_free(f, map);

   prop->premul = EINA_TRUE;
   *error = EVAS_LOAD_ERROR_NONE;
   return EINA_TRUE;

 close_file:
   if (buffer) free(buffer);
   if (scale_surface) free(scale_surface);
   if (map) eina_file_map_free(f, map);
   return EINA_FALSE;
}

static Evas_Image_Load_Func evas_image_load_bmp_func =
{
  EVAS_IMAGE_LOAD_VERSION,
  evas_image_load_file_open_bmp,
  evas_image_load_file_close_bmp,
  (void*) evas_image_load_file_head_bmp,
  NULL,
  (void*) evas_image_load_file_data_bmp,
  NULL,
  EINA_TRUE,
  EINA_FALSE
};

static int
module_open(Evas_Module *em)
{
   if (!em) return 0;
   em->functions = (void *)(&evas_image_load_bmp_func);
   return 1;
}

static void
module_close(Evas_Module *em EINA_UNUSED)
{
}

static Evas_Module_Api evas_modapi =
{
   EVAS_MODULE_API_VERSION,
   "bmp",
   "none",
   {
     module_open,
     module_close
   }
};

EVAS_MODULE_DEFINE(EVAS_MODULE_TYPE_IMAGE_LOADER, image_loader, bmp);

#ifndef EVAS_STATIC_BUILD_BMP
EVAS_EINA_MODULE_DEFINE(image_loader, bmp);
#endif