Flash based cropper like this, but with source or customizable?

后端 未结 9 1196
南方客
南方客 2021-01-05 06:29

I am looking for a Flash based image uploader with resize and possibly rotate function. I have checked many possibilities, and the very best in simplicity and unser experie

相关标签:
9条回答
  • 2021-01-05 07:07

    http://www.adylevy.com/index.php/2009/07/22/multiple-files-uploader-with-preview-on-client-side/

    OR

    http://www.resize-before-upload.com/

    ...took a bit of searching =)

    0 讨论(0)
  • 2021-01-05 07:09

    I found these three image utilities during my search:

    • Flex Image Cropping Component
    • HOW TO CROP AND RESIZE AN IMAGE USED AS BACKGROUND FOR CANVAS
    • Building an image-viewing widget with ActionScript 3.0

    The first one is an open source flex component using an MIT license. The second one is a how to,with full source available. It doesn't have a sizable box, but it seems ok otherwise. The last one is also a how to article from adobe.com with source available.

    0 讨论(0)
  • 2021-01-05 07:14

    Something like this? http://matrixoft.infunity.com/agents/calvin/tmp/forPekka.html

    I'm perfectly happy to pay money for a tool as great as that

    To carry out the responsibility of posting the answer for stackoverflow users, here is part of the crop image code:

    var tNewImage:BitmapData=new BitmapData(mouseX-vCropX,mouseY-vCropY,true,0);
    iImg.getChildAt(0).x = vSize/2 -vCropX;
    iImg.getChildAt(0).y =  vSize/2 -vCropY;
    tNewImage.draw(iImg);
    

    Where iImg is the movieclip containing the image with the image center positioned at (0,0) , vSize is the image dimension, vCropX and vCropY is the top left cropping coordinate. The tNewImage BitmapData is used for constructing the new Cropped Bitmap image

    0 讨论(0)
  • 2021-01-05 07:16

    http://www.shift8creative.com/projects/agile-uploader/index.html

    Still doesn't have image rotation/cropping. I most definitely do plan to add that, but after checking out all the things I could find I still wasn't happy. I researched out all the particulars and just ended up building my own. You're welcome to use it if you like and haven't found something else by now. Keep checking the link, I'll update it to include the rotation and crop feature along with multiple image uploads.

    0 讨论(0)
  • 2021-01-05 07:19

    This is also a nice once and its only $10.

    0 讨论(0)
  • 2021-01-05 07:20

    Here is a list of good javascript based croppers:

    • Yahoo! UI ImageCropper
    • Jcrop
    • MooCrop
    • UvumiTools
    • PHP & jQuery Image Upload and Crop

    Here is a list of action script based croppers:

    • Flex Image Cropping Component
    • Image Crop
    0 讨论(0)
提交回复
热议问题