0
votes
5answers
84 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 …
0
votes
2answers
95 views
Crop whitespace from image in PHP
Is it possible to remove the whitespace surrounding an image in PHP?
NOTE: to clarify I mean something like photoshops trim feature.
Thanks.
0
votes
1answer
87 views
Crop image in flex using a non-rectangular shape
Hi
I've been following this tutorial to crop images in flex: http://code.mediablur.com/ImageCropper/ImageCropperDemo.html.
At the heart of its cropping is using a method called "c …
1
vote
1answer
98 views
Best resize and or crop logic
Hey guys,
I've come across this a few times and thought it would be good to put it out there. What's your best image resize and/or crop logic. The idea being that some method is …
2
votes
2answers
100 views
PHP - Mask polygon over image
Hi Everyone (this is my first post),
I am trying to figure a way of cropping a polygon out of an image. I have been reading other similar code. It seems that most code is based ar …
2
votes
6answers
341 views
How can I crop/scale user images so I can display fixed sized thumbnails without skewing and stretching?
I'm working on allowing users to upload profile pictures for my site. The classic example of what I'm trying to avoid is plentyoffish.com where each users image is skewed and look …
0
votes
2answers
315 views
Resize and crop images before displaying in UITableViewCells
Hello,
i have an UITableView in my app and i have to load some images that have a fixed width but different heights. I download the images async using an NSOperationQueue and for r …
1
vote
2answers
180 views
Using System.Drawing to make a selection tool, and cropping an image in vb.net
If i wanted to crop an image in VB.net, how would I go about doing it? I am trying to let the user drag out the box they want (system.drawing.rectangle), and it will automatically …
0
votes
3answers
159 views
Crop image using php
I want to crop an image. Is it possible to do like this. And if yes, how would the crop() function look like?
$imgURL is always a .jpg image.
$image = file_get_contents($imgURL); …
1
vote
1answer
106 views
How to crop a mp3 from x to x+n using ffmpeg?
Following this question I decided to use ffmpeg to crop MP3s. On another question I found this way of doing it:
ffmpeg -t 30 -acodec copy -i inputfile.mp3 outputfile.mp3
The pro …
2
votes
2answers
81 views
How to crop a mp3 in ASP.NET + C#?
I am in an ASP.NET project using C#. The users can upload their MP3 (I have no control over the encoding) and specify a sample size and a sample starting point. On save, the system …
1
vote
3answers
76 views
script for cropping images
Hi! I have many (about 1000) images (printscreens), and I need to crop these images (all cropped images are in the same region in the full image).
How can I do this in php? Or ma …
2
votes
9answers
698 views
Whats the algorithm to calculate aspect ratio? I need an output like: 4:3, 16:9
I plan to use it with javascript to crop an image to fit the entire window.
I appreciate all help you can provide.
Edit: I'll be using a 3rd part component that only accepts the …
1
vote
3answers
639 views
How can I crop images without changing their resolution in C#.Net ?
Hi everybody!
I'm trying to crop big images to small images.
But when I get image from photoshop program and crop it the new image appear to be bigger than original image.
I tr …
1
vote
1answer
115 views
PHP GD - Crop Shape
I want to crop images using the GD, but I want it to crop around a particular shape rather than just a square.
Is this possible?
