
6 Dec
2010
6 Dec
'10
8:10 a.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