
6 Dec
2010
6 Dec
'10
3:10 p.m.
Hi Kenny,
I accomplish this using Boost.IOStreams...something like this works for me:
using namespace boost::iostreams; stream< array_source > bufferStream( buffer, size ); read_image( bufferStream, dest, jpeg_tag() );
Cool this is what I was looking for. No extra copying involved? Thanks, Christian