Lines Matching defs:height

35 					int height,
40 int height,
45 int height,
57 int height,
166 short height; /* how many pixels high is this data */
206 unsigned short width = 0, height = 0;
337 height = image_header.height;
340 printf("Image info: width: %d height: %d depth: %d...\n", width, height, depth);
342 if (!(width && height && depth)) {
343 fprintf(stderr,"Err: Invalid image file header (width, height, or depth is 0)\n");
374 pixels = convert24to8bitIndex( data, height, width, &data );
386 pixels = convert8bitIndexto24( data, height, width, &data );
392 pixels = convert8bitIndexto8( data, height, width, &data );
428 height = image.pd_height;
431 printf("Image info: width: %d height: %d depth: %d...\n", image.pd_width, image.pd_height, image.pd_depth);
433 if (!(width && height && depth)) {
434 fprintf(stderr,"Err: Invalid image file header (width, height, or depth is 0)\n");
485 for (line=0; line < height; line++) {
528 WriteQTRawFile( ostream, data, height, width, depth, pixels );
580 fwrite(&height, sizeof(height), 1, ostream);
639 fprintf( out_stream, "%d, ", height); /* panic dialog y */
1304 convert24to8bitIndex( unsigned char * data, int height, int width, unsigned char ** dout )
1311 size = height * width;
1315 for (i24=0,i8=0,row=0; row<height; row++)
1338 convert8bitIndexto8( unsigned char * data, int height, int width, unsigned char ** dout )
1346 size = height * width;
1349 for (i8=0,row=0; row<height; row++)
1372 convert8bitIndexto24( unsigned char * data, int height, int width, unsigned char ** dout )
1380 size = height * width;
1383 for (i24=0,i8=0,row=0; row<height; row++)
1468 WriteQTRawFile( FILE * ostream, unsigned char * data, int height, int width, int depth, unsigned int size )
1478 csize = height*depth*(width+adj);
1491 for (line=0; line<height; line++)
1516 image_header.height = height;