mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 02:58:26 +08:00
63 lines
1.7 KiB
C
63 lines
1.7 KiB
C
/**
|
|
* File: main.c
|
|
* Author: AWTK Develop Team
|
|
* Brief: res to c source
|
|
*
|
|
* Copyright (c) 2018 - 2018 Guangzhou ZHIYUAN Electronics Co.,Ltd.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* License file for more details.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* History:
|
|
* ================================================================
|
|
* 2018-04-01 Li XianJing <xianjimli@hotmail.com> created
|
|
*
|
|
*/
|
|
|
|
#include "base/mem.h"
|
|
#include "common/utils.h"
|
|
#include "base/resource_manager.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
uint32_t size = 0;
|
|
uint8_t* input_buff = NULL;
|
|
const char* input_filename = NULL;
|
|
const char* output_filename = NULL;
|
|
|
|
TKMEM_INIT(4 * 1024 * 1024);
|
|
|
|
if (argc != 3) {
|
|
printf("Usage: %s input_filename output_filename\n", argv[0]);
|
|
return 0;
|
|
}
|
|
|
|
input_filename = argv[1];
|
|
output_filename = argv[2];
|
|
|
|
input_buff = (uint8_t*)read_file(input_filename, &size);
|
|
return_value_if_fail(input_buff != NULL, 0);
|
|
if (end_with(input_filename, ".ttf")) {
|
|
output_res_c_source(output_filename, RESOURCE_TYPE_FONT, RESOURCE_TYPE_FONT_TTF, input_buff,
|
|
size);
|
|
} else if (end_with(input_filename, ".png")) {
|
|
output_res_c_source(output_filename, RESOURCE_TYPE_IMAGE, RESOURCE_TYPE_IMAGE_PNG, input_buff,
|
|
size);
|
|
} else if (end_with(input_filename, ".jpg")) {
|
|
output_res_c_source(output_filename, RESOURCE_TYPE_IMAGE, RESOURCE_TYPE_IMAGE_JPG, input_buff,
|
|
size);
|
|
} else {
|
|
printf("Not supported file type!\n");
|
|
}
|
|
|
|
TKMEM_FREE(input_buff);
|
|
|
|
printf("done\n");
|
|
|
|
return 0;
|
|
}
|