Details

Version 1.2.1
Last updated 6th October 2009
Requirements
Demo View demo page
Links
License BSD License
Changelog
1.2.1
  • Added support for latest versions of Prototype & script.aculo.us (1.6.1.0 & 1.8.2 respectively). Changes provided by Tom Hirashima.
  • No-longer package prototype & script.aculo.us with the release
  • Changed tests to use google ajax libraries api to load prototype & script.aculo.us
  • Added option to not auto include the cropper CSS file
  • #00008 - Fixed bug: Dynamic include of cropper CSS expected cropper.js and failed when using cropper.uncompressed.js
  • #00028 - Fixed bug: Doesn't work with latest script.aculo.us - Fix by Tom Hirashima
  • #00030 - Fixed bug: Doesn't work in Firefox 3.5 (CSS include issue)
  • #00007 - Fixed bug: onEndCrop isn't called when moving with keys
  • #00011 - Fixed bug: The image that is to be cropped does not show in IE6.0 -- included CSS fix
  • Tidied up source code & fixed issues that jslint found so it will compress better
1.2.0
  • Added id to the preview image element using 'imgCrop_[originalImageID]'
  • #00001 - Fixed bug: Doesn't account for scroll offsets
  • #00009 - Fixed bug: Placing the cropper inside differently positioned elements causes incorrect co-ordinates and display
  • #00013 - Fixed bug: I-bar cursor appears on drag plane
  • #00014 - Fixed bug: If ID for image tag is not found in document script throws error
  • Fixed bug with drag start co-ordinates if wrapper element has moved in browser (e.g. dragged to a new position)
  • Fixed bug with drag start co-ordinates if image contained in a wrapper with scrolling - this may be buggy if image has other ancestors with scrolling applied (except the body)
  • #00015 - Fixed bug: When cropper removed and then reapplied onEndCrop callback gets called multiple times, solution suggestion from Bill Smith
  • Various speed increases & code cleanup which meant improved performance in Mac - which allowed removal of different overlay methods for IE and all other browsers, which led to a fix for:
  • #00010 - Fixed bug: Select area doesn't adhere to image size when image resized using img attributes
  • #00006 - Removed default behaviour of automatically setting a ratio when both min width & height passed, the ratioDimensions must be passed in
  • #00005 - Added ability to set maximum crop dimensions, if both min & max set as the same value then we'll get a fixed cropper size on the axes as appropriate and the resize handles will not be displayed as appropriate
  • Switched keydown for keypress for moving select area with cursor keys (makes for nicer action) - doesn't appear to work in Safari
1.1.3
  • Fixed wrong cursor on western handle in CSS
  • #00008 & #00003 - Added feature: Allow to set dimensions & position for cropper on load
  • #00002 - Fixed bug: Pressing 'remove cropper' twice removes image in IE
1.1.2
  • Fixed bugs with ratios when GCD is low (patch submitted by Andy Skelton)
1.1.1
  • Fixed bug with rendering issues fix in IE 5.5
  • Fixed bug with endCrop callback issues once cropper had been removed & reset in IE
1.1.0
  • Fixed bug with IE constantly trying to reload select area background image
  • Applied more robust fix to Safari & IE rendering issues
  • Added method to reset parameters - useful for when dynamically changing img the cropper is attached to
  • Added method to remove cropper from image
1.0.0
  • Initial verison

About

The JavaScript image cropper UI allows the user to crop an image using an interface with the same features and styling as found in commercial image editing software, and is is based on the Prototype JavaScript framework and script.aculo.us.

Initially I performed quite a lot of searching for some ready made solutions to meet my requirements, but found none that had the complete feature set that I required or any complete versions based on Prototype.

So after a week and a half of work, I present the JavaScript image cropper UI, built on Prototype & script.aculo.us.

Features

Screen shot of cropper in action

  • Un-obtrusive
  • Based on Prototype and script.aculo.us
  • Image editing package styling & functionality, the crop area functions and looks like those found in popular image editing software
  • Dynamic inclusion of required styles
  • Drag to draw areas
  • Shift drag to draw/resize areas as squares
  • Selection area can be moved
  • Selection area can be resized using resize handles
  • Allows dimension ratio limited crop areas
  • Allows minimum dimension crop areas
  • Allows maximum dimensions crop areas, if both min & max set as the same value then we'll get a fixed cropper size on the axes as appropriate and the resize handles will not be displayed as appropriate
  • Allows dynamic preview of resultant crop (if minimum width & height are provided), this is implemented as a subclass so can be removed if not required
  • Movement of selection area by arrow keys (shift + arrow key will move selection area by 10 pixels)
  • All operations stay within bounds of image
  • All functionality & display compatible with most popular browsers supported by Prototype, tested in:
    • PC: IE 6 & 5.5, Firefox 1.5, Opera 8.5 (see known issues) & 9.0b
    • MAC: Camino 1.0, Firefox 1.5, Safari 2.0

Usage

Extract to a directory of your choosing e.g. 'scripts/cropper/' and include the script and the required Prototype & script.aculo.us scripts:

HTML:
  1. <script type="text/javascript" src="scripts/cropper/lib/prototype.js" language="javascript"></script>
  2. <script type="text/javascript" src="scripts/cropper/lib/scriptaculous.js?load=effects,builder,dragdrop" language="javascript"></script>
  3. <script type="text/javascript" src="scripts/cropper/cropper.js" language="javascript"></script>

Options

ratioDim obj
The pixel dimensions to apply as a restrictive ratio, with properties x & y.
minWidth int
The minimum width for the select area in pixels.
minHeight int
The mimimum height for the select area in pixels.
maxWidth int
The maximum width for the select areas in pixels (if both minWidth & maxWidth set to same the width of the cropper will be fixed)
maxHeight int
The maximum height for the select areas in pixels (if both minHeight & maxHeight set to same the height of the cropper will be fixed)
displayOnInit int
Whether to display the select area on initialisation, only used when providing minimum width & height or ratio.
onEndCrop func
The callback function to provide the crop details to on end of a crop.
captureKeys boolean
Whether to capture the keys for moving the select area, as these can cause some problems at the moment.
onloadCoords obj
A coordinates object with properties x1, y1, x2 & y2; for the coordinates of the select area to display onload

The callback function

The callback function is a function that allows you to capture the crop co-ordinates when the user finished a crop movement, it is passed two arguments:

  • coords, obj, coordinates object with properties x1, y1, x2 & y2; for the coordinates of the select area.
  • dimensions, obj, dimensions object with properities width & height; for the dimensions of the select area.

An example function which outputs the crop values to form fields:

JavaScript:
  1. function onEndCrop( coords, dimensions ) {
  2.     $( 'x1' ).value = coords.x1;
  3.     $( 'y1' ).value = coords.y1;
  4.     $( 'x2' ).value = coords.x2;
  5.     $( 'y2' ).value = coords.y2;
  6.     $( 'width' ).value = dimensions.width;
  7.     $( 'height' ).value = dimensions.height;
  8. }

Basic interface

This basic example will attach the cropper UI to the test image and return crop results to the provided callback function.

HTML:
  1. <img src="test.jpg" alt="Test image" id="testImage" width="500" height="333" />
  2.  
  3.     <script type="text/javascript" language="javascript">
  4.     Event.observe( window, 'load', function() {
  5.         new Cropper.Img(
  6.             'testImage',
  7.             { onEndCrop: onEndCrop }
  8.         );
  9.     } );
  10. </script>

Minimum dimensions

You can apply minimum dimensions to a single axis or both, this example applies minimum dimensions to both axis.

HTML:
  1. <img src="test.jpg" alt="Test image" id="testImage" width="500" height="333" />
  2.  
  3. <script type="text/javascript" language="javascript">
  4.     Event.observe( window, 'load', function() {
  5.         new Cropper.Img(
  6.             'testImage',
  7.             {
  8.                 minWidth: 220,
  9.                 minHeight: 120,
  10.                 onEndCrop: onEndCrop
  11.             }
  12.         );
  13.     } );
  14. </script>

Select area ratio

You can apply a ratio to the selection area, this example applies a 4:3 ratio to the select area.

HTML:
  1. <img src="test.jpg" alt="Test image" id="testImage" width="500" height="333" />
  2.  
  3. <script type="text/javascript" language="javascript">
  4.     Event.observe( window, 'load', function() {
  5.         new Cropper.Img(
  6.             'testImage',
  7.             {
  8.                 ratioDim: {
  9.                     x: 220,
  10.                     y: 165
  11.                 },
  12.                 displayOnInit: true,
  13.                 onEndCrop: onEndCrop
  14.             }
  15.         );
  16.     } );
  17. </script>

With crop preview

You can display a dynamically produced preview of the resulting crop by using the ImgWithPreview subclass, a preview can only be displayed when we have a fixed size (set via minWidth & minHeight options). Note that the displayOnInit option is not required as this is the default behaviour when displaying a crop preview.

HTML:
  1. <img src="test.jpg" alt="Test image" id="testImage" width="500" height="333" />
  2. <div id="previewWrap"></div>
  3.  
  4. <script type="text/javascript" language="javascript">
  5.     Event.observe( window, 'load', function() {
  6.         new Cropper.ImgWithPreview(
  7.             'testImage',
  8.             {
  9.                 previewWrap: 'previewWrap',
  10.                 minWidth: 120,
  11.                 minHeight: 120,
  12.                 ratioDim: { x: 200, y: 120 },
  13.                 onEndCrop: onEndCrop
  14.             }
  15.         );
  16.     } );
  17. </script>

Known Issues

  • Safari animated gifs, only one of each will animate, this seems to be a known Safari issue.
  • After drawing an area and then clicking to start a new drag in IE 5.5 the rendered height appears as the last height until the user drags, this appears to be the related to another IE error (which has been fixed) where IE does not always redraw the select area properly.
  • Lack of CSS opacity support in Opera before version 9 mean we disable those style rules, if Opera 8 support is important you & you want the overlay to work then you can use the Opera rules in the CSS to apply a black PNG with 50% alpha transparency to replicate the effect.
  • Styling & borders on image, any CSS styling applied directly to the image itself (floats, borders, padding, margin, etc.) will cause problems with the cropper. The use of a wrapper element to apply these styles to is recommended.
  • overflow: auto or overflow: scroll on parent will cause cropper to burst out of parent in IE and Opera when applied (maybe Mac browsers too) I'm not sure why yet.

SEO Agency advanced JavaScript experience can enhance your site functionality. Adding the JavaScript Image Cropper is a good way to improve the user experience.

Next Steps

Feature Requests & Bug Reports

Please check the existing list of feature requests & bugs and the discussion list before posting requests or reporting bugs.

Leave a Tip

If you find this code useful you can leave a donation towards the continued development & support.

Discussion

Note: Please only use the comments for general comments and the discussion list to discuss this code project (e.g. implementation queries, change suggestions etc.).

Comments

There have been 667 comments so far, join the discussion.

Pages: « 3429 28 27 26 25 [24] 23 22 21 20 191 » Show All

480. shakeeb khan - 28th May 2008 - 4:28 pm

Well, i have read all the comments but my question is can i upload an image with one size and instead of cropping image on server side while uploading the images can i will be able to do upload original size of my image and display in different size like image gallery usually shows on the client side because recently i am facing problems while uploading images and then crop them on server side so it make server slow and if we talking about millions of people uploading bunch of file so server will kneel down can any body suggest me best possible approach i will be thank full to him
thank you all in advance :)

479. Killer Bunny - 13th May 2008 - 11:17 am

I think i solved the table problem:
if you place the image in a div with a absolute height, it works.
So what you do is as follow:

478. Corey - 27th Apr 2008 - 2:25 am

Awesome job on the cropper i love it!

I have a slight problem that popped up and searched some of the results but didn’t see a solution to it.

I have the script working on a page perfectly if i go directly to that page, but if i load that page via AJAX then I get 3 errors and it blanks the entire page.

  • “Event.observe is not a function” – and its pointing to a CSS file.
  • “Class is not defined
    var CropDraggable=Class.create();” – cropper.js

  • Class is not defined
    var Draggable = Class.create(); -dragdrop.js

    Thanks again!

    -Corey

477. gatto - 23rd Apr 2008 - 12:48 am

by the way you don’t have to save the coordinates like i’m doing. i do that to post to a PHP script which crops the image. you could just have an empty function which does nothing…

476. gatto - 23rd Apr 2008 - 12:45 am

kacior:

I disabled that in my implementation. See here:

http://gattomatto.net/work/jsCropperUI/

download the source here:

http://gattomatto.net/work/jsCropperUI.zip

var CropImageManager = {
curCrop: null,

init: function() {
this.attachCropper();
},

attachCropper: function() {
if (this.curCrop == null) {
this.curCrop = new Cropper.ImgWithPreview(
‘event_image’,
{
onEndCrop: onEndCrop,
(all the other args u choose)
}
);
}
else {
this.curCrop.reset();
}
}
};

// the cropper calls this function on the end of each resize or move
function onEndCrop( coords, dimensions ) {
$(‘cropForm’)[‘x1’].value = coords.x1;
$(‘cropForm’)[‘x2’].value = coords.x2;
$(‘cropForm’)[‘y1’].value = coords.y1;
$(‘cropForm’)[‘y2’].value = coords.y2;
}

function loadCropper() {
CropImageManager.init();
}

Event.observe( window, ‘load’, function() { loadCropper(); } );

475. Dave - 22nd Apr 2008 - 10:53 pm

kacior:

Thanks for your solution and adding it to the issue on the Google code page, but for the reasons that I’ve mentioned in my comment on the issue I don’t think the solution is that, but only adding the onEndCrop listener when manipulating the crop area.

474. kacior - 22nd Apr 2008 - 10:19 pm

As it seems no one has posted a visible solution to the problem with the onEndCrop function always beeing called when mouse is clicked somewhere, I checked it myself. The solution is very simple, it’s just to change “document” to “this.dragArea” on line 116 and 118 in the compressed file, so it becomes:
116: Event.observe(this.dragArea,”mousemove”,this.onDragBind);
118: Event.observe(this.dragArea,”mouseup”,this.endCropBind);
instead of:
116: Event.observe(document,”mousemove”,this.onDragBind);
118: Event.observe(document,”mouseup”,this.endCropBind);

473. TheIceman5 - 16th Apr 2008 - 10:35 pm

@Don R
Yes it has been asnwered before, search the entire list, i dont see why u cant, just hit Ctrl + F and it brings up a search box once the entire listing is bought up, thats what i do.

472. Don R - 16th Apr 2008 - 6:58 pm

Hi,
I am using the latest version of scriptaculous/Prototype (v1.8.1). Does Cropper work with the latest version?

(I apologize if the question has already been answered before. I was unable to search the full comments list).

thanks much.
Don.

471. Dave - 13th Apr 2008 - 9:52 am

John/Jimmy:
Could you please move this discussion regarding multiple croppers to the Google group as I’d like these kind of discussions to be held there from now on (with the aim of being easier for others to find answers on topics in the future—rather than searching through 100’s of disjointed comments). I’ve taken the liberty of setting up a thread within the group for this discussion and copied your relevant comments to get the thread started. Hope you don’t mind this request.

470. John - 12th Apr 2008 - 8:09 pm

Jimmy:

When I add the img.id to the line in the cropper.js, the image cropper behaves strangely. The cropping area jumps to the border of the image when you try to increase the cropping area.

Also, just duplicating the “new Cropper.img { ... }” functions to have multiple cropping areas does not work in Internet Explorer. (I am using Opera)

469. Jimmy - 11th Apr 2008 - 6:12 pm

John:

I modified the onEndCrop (handler?) in “cropper.js” to return the imageID that the particular cropper instance is referring to as the first thing returned… look for the line with:
“this.options.onEndCrop(this.areaCoords,{width:this.calcW(),height:this.calcH()});”
and change it to:
“this.options.onEndCrop(this.img.id,this.areaCoords,{width:this.calcW(),height:this.calcH()});”

So, when your crop ends, you know the image that the returned x1/x2/etc refers to.

With Dave’s help, I also have a “manager” to keep track of which items are being cropped: http://pastie.org/179269

Then, to add/remove croppers at will, its something like:
CropImageManager.attachCropper(theImageID,{ratioDim: {x: myX,y: myY}, onloadCoords:{x1:theX1,y1:theY1,x2:theX2,y2:theY2},displayOnInit:true, onEndCrop:onEndCrop});

Hope that helps!

468. Dave - 11th Apr 2008 - 6:07 pm

John:

Just give the onEndCrop a different callback for each of your images, then they can set different hidden form fields for each of your images.

467. John - 11th Apr 2008 - 6:00 pm

Okay, so I found out that I can just repeat the quoted code and all the images get a cropping overlay.

So how do I need to adjust the x1 / x2 and y1 / y2 values in the script and the HTML, so that I can thumb multiple images?

466. John - 11th Apr 2008 - 2:48 pm

This looks so great. I need it to run with multiple images, though.
The code that Dave Schlaegel posted is incomplete, unfortunately.
It is missing the initialization of the individual Cropper.img objects.

new Cropper.Img(
‘testImage’,
{
ratioDim: { x: 220, y: 124 },
displayOnInit: true,
//onEndCrop: onEndCrop
}
)

How can I adjust this code to show the cropper on multiple images?
I don’t know how to write that.

465. aaron - 7th Apr 2008 - 2:23 pm

How do I displayoninit without having the ratio defined? I need to do this because alot of the users don’t understand that they need to click on the picture to begin cropping so it will be better if i can specify a startcoords on the picture and then immediately load the overlay when the page finishes loading. It will be much easier if the user enters the page and then sees the handlers and he will understand he can just drag and then crop.

464. Dave - 2nd Apr 2008 - 10:54 pm

All:

For all those who are subscribed to these comments I have just made some improvements to how I plan to maintain this code (this is part of the V2 phase) this evening they are as follows:

1. Setup a Google Code Project (http://code.google.com/p/javascript-image-cropper-ui/) to hold the issues (and allow reporting of issues) and to hold the documentation (which I’ve started off with an FAQ http://code.google.com/p/javascript-image-cropper-ui/wiki/FAQs).

2. Setup a Google Group for discussion of the project, this will allow new and current users to get help and find answers to previously asked questions etc. in a much better way than having things added to the comments.

The comments will remain open for general comments but I hope any future questions/improvement ideas/bugs/feature requests etc. come through via the group or the issues list on the Google Code project.

Hope this helps everyone a little bit.

-D

463. TheIceman5 - 2nd Apr 2008 - 8:17 pm

@ram,

Your answer, SEARCH!!!!!! been answered here before.

462. ram - 2nd Apr 2008 - 1:50 pm

how can I save crop image?

461. Jonathan - 1st Apr 2008 - 1:19 pm

Absolutely fantastic code!! Will definitely be donating.

In reply to 454. Jonny Muir post – I get the same bug but the fix almost does it … just the mouse pointer and resize handles don’t match up.

Also it would be great for extra paramaters for the width/height of the preview window instead of min width/height as I may want to crop smaller than that but still have the preview window a certain size.

Thanks again!

Jonathan

Pages:« 3429 28 27 26 25 [24] 23 22 21 20 191 » Show All

Leave a comment

No HTML please, only textile. For code please use [lang]...[/lang] tags (e.g. [html]...[/html] for HTML)