Crop refers to any issues relating to cropping images.
9
votes
4answers
10k views
How to select and crop an image in android?
Hey, I am currently working on a live wallpaper and I allow the user to select an image which will go behind my effects.
Currently I have:
Intent i = new Intent(Intent.ACTION_PICK, ...
9
votes
2answers
5k views
Simple cropping with Paperclip
I would like to crop images on upload using Paperclip to get square thumbs from the center of the original picture. I find out a method in documentation that seems to do exactly what I want:
...
6
votes
1answer
130 views
Image resize with Crop
I want to create a function that after an image upload, will allow a user to resize an image. But the image must be behind a crop frame and the user must be able to drag/move/resize the image behind ...
6
votes
1answer
376 views
Python script to remove blank pages using pyPDF
I am trying to write a couple of python scripts using pyPDF to split PDF pages into six separate pages, order them correctly (usually printed front and back, so every other page needs to have its ...
6
votes
9answers
8k 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 aspect ratio in the ...
5
votes
6answers
334 views
How to crop an image using jquery ajax and php?
Hi I am doing an social networking project ,where i have an option to add/edit photos ,When user clicks the button the image will be uploaded to the database and it will be updated...but then when ...
5
votes
1answer
1k views
MATLAB: how do I crop out a circle from an image
I need to crop a circle in MATLAB.
I need to perform iris segmentation, and I´ve identified the center point and the radius of the iris, and I need to cut it off from the image.
I have a vector ci ...
5
votes
1answer
1k 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 problem is that I don't ...
5
votes
2answers
737 views
How to crop huge image
I need to process large images (20,000x20,000pixels) in C#. Opening these images directly isn't the way to go because of memory limitations, but what I want to do is split the image into smaller ...
5
votes
5answers
16k views
JQuery Crop Image
I'm trying to figure out how to fixed the selection box size under JCrop, he mentions how to set an initial selection area but not how to make it fixed size. Does anybody knows how could I make it ...
4
votes
2answers
228 views
Crop/trim a JPG file with empty space with Java
Is there a framework which is able to remove the white space (rectangular) of an image. We create Image Thumbnails from technical drawings which are unfortunately in PDF format. We convert the PDF to ...
4
votes
2answers
1k views
Crop image ala Google Goggles
I'm trying to do some ROI (region of interest) selection in my app, but I don´t know, how to create some kind of resizeable (by fingers) rectangle like you can see in Google Goggles.
Can you help me? ...
4
votes
5answers
236 views
Avoid an image to go outside a div?
I have:
<div style="height:15px">
<img src="image" />
</div>
The image is bigger than 15px, so it's outside the div when you see it. How do I "crop" the image (show only the ...
4
votes
1answer
636 views
Silverlight 4.0 - image cropping with mouse events
I have a task to build image cropping functionality in Silverlight 4.0 application. What I need to do is to have user on the left button mouse click select area to remain after cropping is applied and ...
4
votes
3answers
942 views
Image cropping like facebook
For those that have been on facebook it allows you to upload an image to use as your avatar, and if that image is too large you can drag it around in a container to set the co-ordinates of the crop.
...
4
votes
2answers
1k 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 around the following ...
4
votes
1answer
759 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?
4
votes
1answer
2k views
how to change the UIImagePickerController crop frame
when opening working with an UIImagePickerController and setting allowsImageEditing = YES; there is a default cropping frame that is 320x320. In my case, I would like to setup that cropping frame to ...
4
votes
3answers
1k views
Python's PIL crop problem: color of cropped image screwed
I have a probably very basic problem with PIL's crop function: The cropped image's colors are totally screwed. Here's the code:
>>> from PIL import Image
>>> img = ...
4
votes
4answers
852 views
What's a more elegant rephrasing of this cropping algorithm? (in Python)
I want to crop a thumbnail image in my Django application, so that I get a quadratic image that shows the center of the image. This is not very hard, I agree.
I have already written some code that ...
3
votes
1answer
82 views
how to crop image with particular shape in Blackberry?
Hi all thanks to read my answer hope you can help me
I am working on Image cropping in blackberry. In my application contain 3 main things.
1)Load the image on the screen
2)select the shape of the ...
3
votes
2answers
427 views
How do I make java's ImageBuffer to read a PNG file correctly?
For some reason, opening up some PNG files using ImageBuffer and ImageIO does not work. Here's some code I am using that works fine for resizing/cropping JPGs:
BufferedImage image = ImageIO.read(new ...
3
votes
1answer
61 views
CSS-only formatting of variable-sized cropped field
I have a text string and a numeric ID that I want to display next to each other:
This is a String [123]
Seems simple enough, but I can't control the length of the string or the size of the container ...
3
votes
1answer
614 views
devise registrations controller + paperclip
i am trying to override devise registrations controller so that user would be able to upload his avatar along with changing other data, and crop the userpic after upload.
i added all necesarry user ...
3
votes
1answer
568 views
jQuery UI draggable - constrain inner element within parent when inner element is larger than parent
I am trying to achieve this effect with jQuery UI - very much like the way you crop an image on Facebook:
http://blog.creonfx.com/examples/javascript/facebook-cropping-mootools.html
Here is a very ...
3
votes
3answers
2k views
Facebook like automatic image crop with intelligent results
I have noticed that every image I upload to Facebook is cropped automatically for the thumbnails. By automatically I mean that the user is not involved in setting the crop params in any way. The thing ...
3
votes
3answers
753 views
How do I crop an image whose URI is known in Android?
I want image being shown in imageview to be selected with particular portion(and only selected portion needs to highlighted and other portion to be semi transparent) and that portion can also be ...
3
votes
2answers
785 views
Cropping Picture Issue on Droid X
I'm running into an issue with my program when trying to crop an image selected by the user from their gallery. The issue so far only appears when running on a Droid X, as running on the original moto ...
3
votes
3answers
1k views
Crop Bitmap without reading entire Bitmap first
I have a very large image and I only want to display a section the size of the display (no scaling), and the section should just be the center of the image. Because the image is very large I cannot ...
3
votes
2answers
195 views
Image cropping in PHP is producing blank result
I'm simply trying to crop a JPEG image (no scaling) using PHP. Here is my function, along with the inputs.
function cropPicture($imageLoc, $width, $height, $x1, $y1) {
$newImage = ...
3
votes
7answers
694 views
What is a good algorithm or library for cropping images to avoid whitespace or empty areas?
I have a whole bunch of images of illustrations that I would like to crop to a smaller preview size.
The problem is that I want to crop them to show an "interesting" part of the illustration (ie ...
3
votes
1answer
164 views
How to crop image in Image_Canvas PHP PEAR package
I can't get it to work it just does nothing. I'm using Image_Canvas PEAR package on shared hosting it works but I can't crop image.
My syntax is:
$Canvas->setClipping(array('x0' => 10, 'y0' ...
3
votes
2answers
2k views
iPhone - How do you make a resizable rectangle for cropping images?
I'm having a trouble making a re-sizable rectangle for cropping my images. I'm trying to achieve something like this picture:
http://img192.imageshack.us/img192/8930/customcropbox.jpg
Well, the only ...
3
votes
13answers
3k views
Resize a picture to a fixed size
I need to resize a picture to a fixed size. But it has to keep the factors between the width and height.
Say I want to resize a picture from 238 (w) X 182 (h) to 210 / 150
What I do now is:
...
2
votes
2answers
55 views
Extract a region of a PDF page by coordinates
I am looking for a tool to extract a given rectangular region (by coordinates) of a 1-page PDF file and produce a 1-page PDF file with the specified region:
# in.pdf is a 1-page pdf file
extract ...
2
votes
0answers
194 views
Android WallpaperManager crops image
I am working on a simple wallpaper app of some images that I have. They are .png files in drawable folders.
Here are some code snippets:
WallpaperManager myWallpaperManager = ...
2
votes
1answer
368 views
c# auto-crop an image
I have a black and white System.Drawing.Bitmap I need to auto-crop it so that it is only as big as needed to fit the image. This image always starts at the top left (0,0) position but I'm not sure how ...
2
votes
1answer
152 views
Resize image to fit perfectly a determined box
I want to do the following :
I need to resize images to fit and fill enterly 100x100 pixel box
not all image are perfect squares, and thats my problem for this task
I want to determine wich side ...
2
votes
2answers
109 views
Upload three versions of an image, full size, thumbnail and resized
So far, I've been uploading one image by hand (FTP to the server when live, locally moving a file), and then resizing them on the fly using the img tag's width and height properties to resize them. ...
2
votes
1answer
133 views
Changing alpha value on top and bottom parts of UIImageView
I'm picking up a photo from the photo albums, however I would like to be able to do the following with it:
Change the alpha value of the top and bottom parts (lets say 20 pixles from the top and 20 ...
2
votes
2answers
1k views
How to crop image in android
I am creating application in android. In this application there is one part as cropping of image.
when i google it, i got some ideas based on cropping of image but i have some problem over there as i ...
2
votes
2answers
165 views
Python PIL: How to save cropped image?
I have a script which creates an image and the it crops it. The problem is that after I call the crop() method it does not save on the disk
crop = image.crop(x_offset, Y_offset, width, height).load()
...
2
votes
1answer
2k views
Cropping a PDF / Adding crop box using Ghostscript
I have a few hundred PDFs that I need to crop - I'm willing to either crop the actual documents or simply add a crop box to each so the correct viewable area shows when the PDF is opened.
How can I ...
2
votes
1answer
1k views
Draw on surfaceView
I want to crop the image before capturing it just like google goggle does.
I may have to draw a rectangle for that and then add a onTouchListener.
But I am not able to figure out how to draw a ...
2
votes
1answer
387 views
Crop image in star shape iphone
I have a image in rectangle shape but i want to crop this image in a star shape in my iphone application. so please can any one suggest how i do this? plz suggest. thanks
2
votes
1answer
142 views
Why does cropping behave like that?
I've got an image with dimensions 126x75:
(rdb:1) p image.width
126
(rdb:1) p image.height
57
Now I want to crop it down to 50x50, beginning at the north west (top left corner). So I tried that ...
2
votes
1answer
555 views
raphael.js crop image
I am newbie to raphael.js and svg. I have an image element, i can select rectangles on it using drag and drop in any area. The problem is that image must be transparent, but selected rectangles not.
...
2
votes
2answers
236 views
Cropping a bitmap gives an empty bitmap
I've taken a code from here (SO) that crops images. I tried it on bitmaps containing black text on white font. The result i get in return is a completely white output with no content.
// ...
2
votes
3answers
279 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) / ...
2
votes
1answer
864 views
Flash / Actionscript 3 Bitmap crop with feathered edges (blur edges)
I have been trying to figure out a good strategy to perform a bitmap crop using Actionscript3.
For example: I have a picture of a car and I want to crop out the car from the image alone and feather ...