3 * Detlev Zundel, DENX Software Engineering, dzu@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * BMP handling routines
29 #include <bmp_layout.h>
32 #if (CONFIG_COMMANDS & CFG_CMD_BMP)
34 static int bmp_info (ulong addr);
35 static int bmp_display (ulong addr);
40 * Description: Handler for 'bmp' command..
42 * Inputs: argv[1] contains the subcommand
47 int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
52 case 2: /* use load_addr as default address */
55 case 3: /* use argument */
56 addr = simple_strtoul(argv[2], NULL, 16);
59 printf ("Usage:\n%s\n", cmdtp->usage);
63 /* Allow for short names
64 * Adjust length if more sub-commands get added
66 if (strncmp(argv[1],"info",1) == 0) {
67 return (bmp_info(addr));
68 } else if (strncmp(argv[1],"display",1) == 0) {
69 return (bmp_display(addr));
71 printf ("Usage:\n%s\n", cmdtp->usage);
78 "bmp - manipulate BMP image data\n",
79 "info <imageAddr> - display image info\n"
80 "bmp display <imageAddr> - display image\n"
84 * Subroutine: bmp_info
86 * Description: Show information about bmp file in memory
88 * Inputs: addr address of the bmp file
93 static int bmp_info(ulong addr)
95 bmp_image_t *bmp=(bmp_image_t *)addr;
96 if (!((bmp->header.signature[0]=='B') &&
97 (bmp->header.signature[1]=='M'))) {
98 printf("There is no valid bmp file at the given address\n");
101 printf("Image size : %d x %d\n", le32_to_cpu(bmp->header.width),
102 le32_to_cpu(bmp->header.height));
103 printf("Bits per pixel: %d\n", le16_to_cpu(bmp->header.bit_count));
104 printf("Compression : %d\n", le32_to_cpu(bmp->header.compression));
109 * Subroutine: bmp_display
111 * Description: Display bmp file located in memory
113 * Inputs: addr address of the bmp file
118 static int bmp_display(ulong addr)
120 extern int lcd_display_bitmap (ulong);
122 return (lcd_display_bitmap (addr));
125 #endif /* (CONFIG_COMMANDS & CFG_CMD_BMP) */