Show
Ignore:
Timestamp:
04/05/08 21:26:14 (9 months ago)
Author:
benmoores
Message:

Experimental pdf output using wxPdfDoc:

  • wxpdfdoc patches
  • mapnik patches
  • visual studio build instructions / project files

see /msvc/readme.txt for build instructions

The scons makefiles have not been updated, the new files are in /pdf, /include/pdf, /demo/pdf/, and /bindings/python

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/experimental-pdf/include/mapnik/png_io.hpp

    r606 r689  
    103103            unsigned val = row[x]; 
    104104            mapnik::rgb c((val)&0xff, (val>>8)&0xff, (val>>16) & 0xff); 
    105             uint8_t index = tree.quantize(c); 
     105            boost::uint8_t index = tree.quantize(c); 
    106106            row_out[x] = index; 
    107107         } 
     
    124124            unsigned val = row[x]; 
    125125            mapnik::rgb c((val)&0xff, (val>>8)&0xff, (val>>16) & 0xff); 
    126             uint8_t index = tree.quantize(c); 
     126            boost::uint8_t index = tree.quantize(c); 
    127127            if (x%2 >  0) index = index<<4; 
    128128            row_out[x>>1] |= index;