1 /* Project 16 Source Code~
\r
2 * Copyright (C) 2012-2017 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover
\r
4 * This file is part of Project 16.
\r
6 * Project 16 is free software; you can redistribute it and/or modify
\r
7 * it under the terms of the GNU General Public License as published by
\r
8 * the Free Software Foundation; either version 3 of the License, or
\r
9 * (at your option) any later version.
\r
11 * Project 16 is distributed in the hope that it will be useful,
\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 * GNU General Public License for more details.
\r
16 * You should have received a copy of the GNU General Public License
\r
17 * along with this program. If not, see <http://www.gnu.org/licenses/>, or
\r
18 * write to the Free Software Foundation, Inc., 51 Franklin Street,
\r
19 * Fifth Floor, Boston, MA 02110-1301 USA.
\r
25 #include "src/lib/16_vl.h"
\r
26 #include "src/lib/planar.h"
\r
27 //#include "src/lib/bitmap.h"
\r
32 //---- planar_buf_t *p;
\r
39 /* get the size we want */
\r
40 /*printf("Width: ");
\r
41 scanf("%d", &bmp.width);
\r
43 scanf("%d", &bmp.height);
\r
45 scanf("%x", &color);*/
\r
47 /* allocate the bmp and fill it with 42 */
\r
48 /*size = bmp.width * bmp.height;
\r
49 bmp.data = malloc(size);
\r
50 for(i=0; i<size; i++) {
\r
51 bmp.data[i] = color;
\r
54 bmp = bitmapLoadPcx("data/koishi^^.pcx");
\r
56 /* create the planar buffer */
\r
57 p = planar_buf_from_bitmap(&bmp);
\r
59 /* print out the contents of each plane */
\r
60 for(plane=0; plane < 4; plane++) {
\r
62 printf("Plane %d\n", plane);
\r
63 for(y=0; y < p->height; y++) {
\r
64 for(x=0; x < p->pwidth; x++) {
\r
65 printf("%02X ", (int) p->plane[plane][i++]);
\r
76 // file = fopen("ptmp0.pcx", "wb");
\r
78 /* write the data to the file */
\r
79 //fwrite(p, 1, p->width*p->height, file);
\r