File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -881,7 +881,7 @@ RendererAgg::draw_image(const Py::Tuple& args) {
881881 throw Py::ValueError (" origin must be upper|lower" );
882882
883883 bool isUpper = origin==" upper" ;
884- std::cout << " agg says isupper " << origin << " " << isUpper << std::endl;
884+ // std::cout << "agg says isupper " << origin << " " << isUpper << std::endl;
885885
886886
887887 // todo: handle x and y
@@ -891,7 +891,7 @@ RendererAgg::draw_image(const Py::Tuple& args) {
891891 size_t thisx, thisy;
892892 size_t oy = isUpper ? y : height-y;
893893 // if (isUpper) oy -= image->rowsOut; //start at top
894- std::cout << " params " << height << " " << y << " " << oy << " " << image->rowsOut << std::endl;
894+ // std::cout << "params " << height << " " << y << " " << oy << " " << image->rowsOut << std::endl;
895895 for (size_t j=0 ; j<image->rowsOut ; j++) {
896896 for (size_t i=0 ; i<image->colsOut ; i++) {
897897 thisx = i+x;
You can’t perform that action at this time.
0 commit comments