-1
votes
0answers
21 views

How to get filename UberUploadCropper [closed]

I have been strugling to find a good script for uploading image then resize and crop it. I found this script "UberUploadCropper" and it does everything I want. But I dont understad how to save this in ...
0
votes
0answers
52 views

How do I get Jcrop to work with AjaxUpload?

I have read other questions about this problem on SO before and I tried to do the suggestions, but to no avail. Still doesn't work. I even tried to just get Jcrop to work on an img file coded into ...
0
votes
0answers
78 views

PHP Image upload crop error

i'm trying to use an upload/crop php script for an image upload form I want on a website. It uses ImageManipulator.php for anyone who's heard of it and the upload works fine but the actual trim/crop ...
0
votes
0answers
106 views

PHP class.upload Crop off top or bottom of image

I have used the fabulous verot.net class.upload.php class for some time now, but could never work out how to get it to crop an image in such a way that it shaves off the bottom, OR the top of an ...
-2
votes
1answer
217 views

PHP Advanced image processing on upload. No interactive jQuery cropper [closed]

I'm looking for an advanced all-in-one PHP script that makes everything automatically from the upload of the picture to the file processing and saving. But I do not want a script with interactive ...
0
votes
0answers
74 views

Image up loader with re sizing, cropping and positioning

I'm looking to create a wysiwyg interface where an image can be uploaded, re sized and cropped. Kind of like creating your own magazine cover type concept. To be honest, I don't know where to start. I ...
-1
votes
1answer
557 views

How to upload image with jQuery re-size and crop (jrac)

Help me please, I need to use jrac or some jQuery plugins then upload it using PHP. Using jrac I can only re-size and crop, I'm stuck in uploading.
1
vote
1answer
515 views

Suggest a good image upload-and-crop tool

I'd like to know which up-and-crop tool you suggest to me. I tried couple of scripts like JCrop but I always get stack with some type of extensions like bmp. I either can't upload or I upload but ...
2
votes
1answer
724 views

Ajax or jquery client side crop and resize library which sends the cropped file to server with http request

I am planning to use it for uploading user pictures and saving thumbnail copies. I am using php for handling files. My request is, please link me to some libraries or plug ins.
0
votes
3answers
7k views

PHP Image uploader (with resize and crop) [closed]

I'm creating a form which should allow a user to upload a photo (along with other form elements such as text boxes) but I'm in need of a PHP script which will allow the photo to be uploaded, and if ...
0
votes
0answers
269 views

Face in a hole - iPhone [closed]

User takes an image or uses an image from their gallery -> then there will be an image with a cut out hole for their face, they can resize their image and move it etc -> then a saving function to ...
0
votes
0answers
888 views

PHP & Jquery image upload & crop with 2 cropping process

I'm trying to create an image upload, re-size and crop. The idea is when people select an image, the script than upload and re-size that image with max width=400px. After upload and re-size, the ...
0
votes
1answer
695 views

PHP AJAX - upload and crop

I found a script - Upload and Crop image on this website http://onlinewebapplication.com/2011/08/image-upload-cropping-php-jquery.html Everything works fine, but I need to add my new name for new ...
0
votes
1answer
219 views

Wordpress Image Cropper JS Error

I'm getting the following error when attempting to use WP's image cropper to select thumbnail areas. Error: Image corrupt or truncated: http://www.mywordpress.com/wp-admin/admin-ajax.php? ...
2
votes
3answers
4k views

Upload, resize, and crop center of image with PHP

I'm wanting to create a very very basic upload, resize, and crop PHP script. The functionality to this will be identical (last i checked anyway) to the method Twitter uses to upload avatar pictures. ...
2
votes
3answers
537 views

php crop image without upload it

//Your Image $imgSrc = "image.jpg"; list($width, $height) = getimagesize($imgSrc); $myImage = imagecreatefromjpeg($imgSrc); if ($width > $height) { $y = 0; $x = ($width - $height) / ...
0
votes
4answers
2k views

PHP: crop with PNG and trans

Im having issue when a user uploads and try's to crop a PNG or transparent image( with .gif) I am getting: Warning: imagecreatefromjpeg(): gd-jpeg: JPEG library reports unrecoverable error: in ...
4
votes
1answer
5k views

upload and crop image before sending it to the server

is there some client components (jquery/swf) that will give the possibility to upload and crop (user should be able to select the area to crop) an image in the browser and then send the cropped image ...
0
votes
1answer
2k views

Image uploader + crop

I'm running a web application built on Seam. I would like to have an image upload + crop component.Preferably on client side, so the image uploaded to the server would be the result of the crop. I ...
2
votes
2answers
2k views

Flash image upload with mandatory crop?

Anyone know of a Flash file (image) uploader that will force a user to resize and/or crop their image BEFORE uploading it? To then upload it as well. Basically, I don't want my server processing the ...
1
vote
5answers
2k views

PHP Memory Limit 25MB Exhausted - File Upload/Crop/Resize

I'm using a single image upload/crop/resize script for files up to 10MB. When testing, I set php_ini memory limit to 25M and that is exhausted when uploading a file only about 1.4MB. "Allowed ...