From: kramm Date: Wed, 17 Nov 2004 17:46:25 +0000 (+0000) Subject: The user's clip box is now taken as-is, instead of being clipped against X-Git-Tag: release-0-6-3~158 X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=889a37bd64170bee7fa7a75e47d18ab2ca058976;hp=bce6204356ab92395b4e44c8a46333b53c553baa;p=swftools.git The user's clip box is now taken as-is, instead of being clipped against the PDF's bounding box. --- diff --git a/pdf2swf/SWFOutputDev.cc b/pdf2swf/SWFOutputDev.cc index 6832a51..c4d4be4 100644 --- a/pdf2swf/SWFOutputDev.cc +++ b/pdf2swf/SWFOutputDev.cc @@ -956,10 +956,10 @@ void SWFOutputDev::startPage(int pageNum, GfxState *state, double crop_x1, doubl /* apply user clip box */ if(user_clipx1|user_clipy1|user_clipx2|user_clipy2) { - if(user_clipx1 > x1) x1 = user_clipx1; - if(user_clipx2 < x2) x2 = user_clipx2; - if(user_clipy1 > y1) y1 = user_clipy1; - if(user_clipy2 < y2) y2 = user_clipy2; + /*if(user_clipx1 > x1)*/ x1 = user_clipx1; + /*if(user_clipx2 < x2)*/ x2 = user_clipx2; + /*if(user_clipy1 > y1)*/ y1 = user_clipy1; + /*if(user_clipy2 < y2)*/ y2 = user_clipy2; } if(!outputstarted) {