may be this is ok:
ofFbo fbo;
fbo.allocate(src.getWidth()/8,src.getHeight()/8);
fbo.begin();
ofScale(1.0/8,1.0/8);
src.draw(0,0);
fbo.end();
ofPixels pix;
fbo.readToPixels(pix);
dst.setFromPixels(pix);
may be this is ok:
ofFbo fbo;
fbo.allocate(src.getWidth()/8,src.getHeight()/8);
fbo.begin();
ofScale(1.0/8,1.0/8);
src.draw(0,0);
fbo.end();
ofPixels pix;
fbo.readToPixels(pix);
dst.setFromPixels(pix);