kopia lustrzana https://gitlab.com/sane-project/backends
				
				
				
			
		
			
				
	
	
		
			178 wiersze
		
	
	
		
			4.4 KiB
		
	
	
	
		
			C
		
	
	
			
		
		
	
	
			178 wiersze
		
	
	
		
			4.4 KiB
		
	
	
	
		
			C
		
	
	
| /* sane - Scanner Access Now Easy.
 | |
| 
 | |
|    Copyright (C) 2005, 2006 Pierre Willenbrock <pierre@pirsoft.dnsalias.org>
 | |
| 
 | |
|    This file is part of the SANE package.
 | |
|    
 | |
|    This program is free software; you can redistribute it and/or
 | |
|    modify it under the terms of the GNU General Public License as
 | |
|    published by the Free Software Foundation; either version 2 of the
 | |
|    License, or (at your option) any later version.
 | |
|    
 | |
|    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 GNU
 | |
|    General Public License for more details.
 | |
|    
 | |
|    You should have received a copy of the GNU General Public License
 | |
|    along with this program; if not, write to the Free Software
 | |
|    Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 | |
|    MA 02111-1307, USA.
 | |
|    
 | |
|    As a special exception, the authors of SANE give permission for
 | |
|    additional uses of the libraries contained in this release of SANE.
 | |
|    
 | |
|    The exception is that, if you link a SANE library with other files
 | |
|    to produce an executable, this does not by itself cause the
 | |
|    resulting executable to be covered by the GNU General Public
 | |
|    License.  Your use of that executable is in no way restricted on
 | |
|    account of linking the SANE library code into it.
 | |
|    
 | |
|    This exception does not, however, invalidate any other reasons why
 | |
|    the executable file might be covered by the GNU General Public
 | |
|    License.
 | |
|    
 | |
|    If you submit changes to SANE to the maintainers to be included in
 | |
|    a subsequent release, you agree by submitting the changes that
 | |
|    those changes may be distributed with this exception intact.
 | |
| 
 | |
|    If you write modifications of your own for SANE, it is your choice
 | |
|    whether to permit this exception to apply to your modifications.
 | |
|    If you do not wish that, delete this exception notice. 
 | |
| */
 | |
| 
 | |
| /*
 | |
|  * Conversion filters for genesys backend
 | |
|  */
 | |
| 
 | |
| 
 | |
| /*8 bit*/
 | |
| #define SINGLE_BYTE
 | |
| #define BYTES_PER_COMPONENT 1
 | |
| #define COMPONENT_TYPE u_int8_t
 | |
| 
 | |
| #define FUNC_NAME(f) f ## _8
 | |
| 
 | |
| #include "genesys_conv_hlp.c"
 | |
| 
 | |
| #undef FUNC_NAME
 | |
| 
 | |
| #undef COMPONENT_TYPE
 | |
| #undef BYTES_PER_COMPONENT
 | |
| #undef SINGLE_BYTE
 | |
| 
 | |
| /*16 bit*/
 | |
| #define DOUBLE_BYTE
 | |
| #define BYTES_PER_COMPONENT 2
 | |
| #define COMPONENT_TYPE u_int16_t
 | |
| 
 | |
| #define FUNC_NAME(f) f ## _16
 | |
| 
 | |
| #include "genesys_conv_hlp.c"
 | |
| 
 | |
| #undef FUNC_NAME
 | |
| 
 | |
| #undef COMPONENT_TYPE
 | |
| #undef BYTES_PER_COMPONENT
 | |
| #undef DOUBLE_BYTE
 | |
| 
 | |
| static SANE_Status
 | |
| genesys_reverse_bits(
 | |
|     u_int8_t *src_data, 
 | |
|     u_int8_t *dst_data, 
 | |
|     size_t bytes) 
 | |
| {
 | |
|     size_t i;
 | |
|     for(i = 0; i < bytes; i++) {
 | |
| 	*dst_data++ = ~ *src_data++;
 | |
|     }
 | |
|     return SANE_STATUS_GOOD;
 | |
| }
 | |
| 
 | |
| static SANE_Status
 | |
| genesys_gray_lineart(
 | |
|     u_int8_t *src_data, 
 | |
|     u_int8_t *dst_data, 
 | |
|     size_t pixels,
 | |
|     size_t channels,
 | |
|     size_t lines,
 | |
|     u_int8_t threshold)
 | |
| {
 | |
|     size_t x,y,c,b;
 | |
|     for(y = 0; y < lines; y++) {
 | |
|  	for(x = 0; x < pixels; x+=8) {
 | |
| 	    for(c = 0; c < channels; c++) 
 | |
| 		*(dst_data + c) = 0;
 | |
| 	    for(b = 0; b < 8 && x+b < pixels; b++) {
 | |
| 		for(c = 0; c < channels; c++) {
 | |
| 		    if (*src_data++ < threshold) 
 | |
| 			*(dst_data + c) |= (0x80 >> b);
 | |
| 		}
 | |
| 	    }
 | |
| 	    dst_data += channels;
 | |
| 	}
 | |
|     }
 | |
|     return SANE_STATUS_GOOD;
 | |
| }
 | |
| 
 | |
| static SANE_Status 
 | |
| genesys_shrink_lines_1 (
 | |
|     u_int8_t *src_data, 
 | |
|     u_int8_t *dst_data, 
 | |
|     unsigned int lines, 
 | |
|     unsigned int src_pixels,
 | |
|     unsigned int dst_pixels, 
 | |
|     unsigned int channels) 
 | |
| {
 | |
| /*in search for a correct implementation*/
 | |
|     unsigned int dst_x, src_x, y, c, cnt;
 | |
|     unsigned int avg[3];
 | |
|     u_int8_t *src = (u_int8_t *)src_data;
 | |
|     u_int8_t *dst = (u_int8_t *)dst_data;
 | |
| 
 | |
|     src_pixels /= 8;
 | |
|     dst_pixels /= 8;
 | |
| 
 | |
|     if (src_pixels > dst_pixels) {
 | |
| /*take first _byte_*/
 | |
| 	for(y = 0; y < lines; y++) {
 | |
| 	    cnt = src_pixels / 2;
 | |
| 	    src_x = 0;
 | |
| 	    for (dst_x = 0; dst_x < dst_pixels; dst_x++) {
 | |
| 		while (cnt < src_pixels && src_x < src_pixels) {
 | |
| 		    cnt += dst_pixels;
 | |
| 
 | |
| 		    for (c = 0; c < channels; c++)
 | |
| 			avg[c] = *src++;
 | |
| 		    src_x++;
 | |
| 		}
 | |
| 		cnt -= src_pixels;
 | |
| 
 | |
| 		for (c = 0; c < channels; c++) 
 | |
| 		    *dst++ = avg[c];
 | |
| 	    }
 | |
| 	}
 | |
|     } else {
 | |
| /*interpolate. copy pixels*/
 | |
| 	for(y = 0; y < lines; y++) {
 | |
| 	    cnt = dst_pixels / 2;
 | |
| 	    dst_x = 0;
 | |
| 	    for (src_x = 0; src_x < src_pixels; src_x++) {
 | |
| 		for (c = 0; c < channels; c++) 
 | |
| 		    avg[c] = *src++;
 | |
| 		while (cnt < dst_pixels && dst_x < dst_pixels) {
 | |
| 		    cnt += src_pixels;
 | |
| 
 | |
| 		    for (c = 0; c < channels; c++) 
 | |
| 			*dst++ = avg[c];
 | |
| 		    dst_x++;
 | |
| 		}
 | |
| 		cnt -= dst_pixels;
 | |
| 	    }
 | |
| 	}
 | |
|     }
 | |
| 
 | |
|     return SANE_STATUS_GOOD;
 | |
| }
 | |
| 
 |