[ 3 posts ]

Bob Vaughan

  • Username: bobvaun
  • Joined: Thu May 17, 2012 1:18 pm
  • Posts: 5
  • Offline
  • Profile

Crop marks missing from ImageCropper

Post Posted: Thu May 17, 2012 1:33 pm
+0-
I am trying to use the sample code for ImageCropper. In my case the graphic to be cropped displays but I don't see the dotted line crop window you can resize to crop the image. I assume it is overlaid by YAHOO.widget.ImageCropper but I'm not sure.

Code:
function setup()
         {
            var Dom = YAHOO.util.Dom,
            Event = YAHOO.util.Event;
            results = null;
                        
            results = Dom.get('results');     
         
            var crop = new YAHOO.widget.ImageCropper('yui_img',
            {
               initialXY: [20, 20],
               keyTick: 5,
               shiftKeyTick: 50
            });

            crop.on('moveEvent', function()
            {
               var region = crop.getCropCoords();
               results.firstChild.style.top = '-' + region.top + 'px';
               results.firstChild.style.left = '-' + region.left + 'px';
               results.style.height = region.height + 'px';
               results.style.width = region.width + 'px';
               Dom.get('t').innerHTML = region.top;
               Dom.get('l').innerHTML = region.left;
               Dom.get('h').innerHTML = region.height;
               Dom.get('w').innerHTML = region.width;
            });             
         }


Any ideas why the crop window is not showing?

Dav Glass

  • Username: davglass
  • Joined: Thu Aug 28, 2008 9:28 am
  • Posts: 2088
  • Location: Marion, IL, US
  • Twitter: davglass
  • GitHub: davglass
  • Gists: davglass
  • IRC: davglass
  • Offline
  • Profile
Tags:

Re: Crop marks missing from ImageCropper

Post Posted: Thu May 17, 2012 1:42 pm
+0-
Make sure you have added the `yui-skin-sam` class to the body of your page.

Bob Vaughan

  • Username: bobvaun
  • Joined: Thu May 17, 2012 1:18 pm
  • Posts: 5
  • Offline
  • Profile

Re: Crop marks missing from ImageCropper

Post Posted: Thu May 17, 2012 1:49 pm
+0-
That was it! Thank you. :)
  [ 3 posts ]
Display posts from previous:  Sort by  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum