Crop refers to any issues relating to cropping images.

learn more… | top users | synonyms

0
votes
0answers
12 views

Android Canceling Crop does not return activity result

I am able to pick an image from gallery, crop it and get it as bundle. I retrieve it in this way : if (resultCode == Activity.RESULT_OK) { if (requestCode == SELECT_IMAGE || requestCode == ...
0
votes
1answer
31 views

Child element overflows parents border radius on change

Using this plugin: https://github.com/adriengibrat/jQuery-crop I have an img wrapped by an element that has a border radius to make a circle, on load every thing is fine, but as soon as I drag or ...
0
votes
0answers
13 views

How to Crop and Scale frame using CGContextScaleCTM?

First Way I want to do same as following link : Crop and Scale CGContext - iOS Using that code able to display rect on video, but I have no any idea that how to crop that selected portion and scale ...
-2
votes
1answer
22 views

Cropped picture to the profile

I would like to make a page, where there will be a "window", to which I will load some image. In this window it will be possible to move the image by the mouse. After clicking on some button the ...
0
votes
0answers
9 views

How to drag and adjust the face of image in a face type layout over it and get Bitmap of that particular face Area to use it in another Image view

I am making an App in android that capture the image using device camera and then drag and adjust the human face in image with the face like layout over it .Now i want to get that face area of the ...
0
votes
0answers
23 views

Android user select and crop image not as rectangle crop(any form)

i'm new to android. I have an image view. i want user to select the area like finger paint and want to crop the selected area from that image. I searched about cropping but all are rectangle cropping. ...
-1
votes
2answers
35 views

Crop the image if dimensions are known [closed]

I have an image and all the required dimensions for cropping the image.I want to pick the image from source path and save the image to destination path.I want to know which functions in PHP should i ...
0
votes
2answers
29 views

Crop an image to square using percentages and max widths

Working a responsive site, so I cannot use set widths. I need pictures to all crop to square. I cannot define the exact measurements because it also needs to have max-width:100% in order to make it a ...
-1
votes
0answers
14 views

How to crop an image (eps, pdf) using inkscape? [closed]

File -> Document properties -> On the page tab (first one) in the Format, Custom size box, click the button "Resize page to drawing or selection"
0
votes
0answers
18 views

croping Text Images From Pdf File in C#

I have pdf documents which Contains Questions with multiple answers. And sometimes the Questions and Options of The Questions are images or u called them text images or sketches. What i am doing is ...
-1
votes
1answer
46 views

Crop image without stretching it, inside PHP [closed]

I am making a upload form inside PHP. Though I want the form to upload a thumbnail that is exactly, lets say, 100px high and 100px width. The form has to rescale the tumbnail without stretching the ...
1
vote
0answers
49 views

Android: ACTION_SET_WALLPAPER without cropping image?

select wallpaper code below Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER); startActivity(Intent.createChooser(pickWallpaper,"Select Wallpaper")); but the wallpaper get cropped like ...
0
votes
1answer
24 views

Crop an image in the centre using PIL

How can I crop an image in the center? Because I know that the box is a 4-tuple defining the left, upper, right, and lower pixel coordinate but I don't know how to get these coordinates so it crops in ...
0
votes
3answers
33 views

iOS - how to implement crop image like default photo album?

The default crop function in iPhone photo album Does any one know how to implement this? I want to crop it before Use button is tapped.
2
votes
1answer
32 views

crop image with fixed x/y ratio

I want to crop image using following code. but i want to user only can select the crop area with a predefined x/y ratio.for example if x=2,y=2 ,then user can only use mouse to select an area with ...
3
votes
1answer
108 views

Cropping Shape of Square Image Android In App

I want to create an application which allows the user to resize an image in shape of square (length = width). I know that it is possible to use the gallery to make that in this way: private void ...
-2
votes
1answer
31 views

How to Rotate Camera Capture image? [closed]

am new to android. I am developing one Camera application. when i am taking image from camera in portrait mode it is saved in reverse. how to rotate capture image after saving image. Thanks in ...
0
votes
0answers
41 views

CGRect to crop a circle?

I'm attempting to crop an image using a circle, but unfortunately can't get my head around the code that would need to be used to do this. I have been working with BitFoundation's CropInterface which ...
0
votes
2answers
51 views

Crop image white space in C#

I have the request that crop image white space in C#, and I search some methods from the forum, but it could not satisfy my request. There is the original image, This is the result I expect, ...
0
votes
1answer
26 views

How to resize Facebook Profile Picture by height on Xcode?

How do I resize Facebook avatar with WIDTH: AUTO & HEIGHT: x amount ? Code below works but when the avatar is wider, it appears that the image is cramped. /** * Update avatar */ - (void) ...
0
votes
1answer
37 views

Get new crop coordinates after rotating a cropped image

I have a site where one of the features lets users upload images, then rotate/crop them. I'm using the following tools: ImageResizer JCrop So let's say a user wants to crop the image first, then ...
0
votes
0answers
31 views

Images uploaded dealing with sizes ratio and cropping, fun

on my website, users upload two images of them and I would like to resize those images (that all have different sizes) to fit my 342x478 pixel image displaying size, with the same ratio. when users ...
1
vote
0answers
31 views

WPF, points are different to RenderTargetBitmap

My problem is that the Int32Rect points are different from the ones in my canvas. I attempted to use dpi as suggested as a solution to other problems but I could not figure out how to use it. private ...
0
votes
2answers
29 views

how to crop image and show in different formats using PHP

I want a code when image is uploaded to crop it to 100px * 100px in 3 formats gif,png,jpeg. I want image to be shown on the page only. No storage needed.
0
votes
1answer
25 views

i want to crop a .tif format image using php

i want to crop a .tif format image using php . i have done if image is in .jpg , gif or png format but i want to crop a .tif image with certain dimensions i.e from 200x200 right from a full image of ...
0
votes
0answers
27 views

Android: How to stretch an background drawable to the screen width while cropping it vertically and maintaining aspect ratio?

I have a background drawable and I want to stretch it horizontally to the screen width and maintain its aspect ratio, but I want to crop it vertically since it will go out of the bottom of the screen. ...
-2
votes
1answer
31 views

How to make a script for automatically separating a handwritten note into two parts (divided by a colored line) [closed]

I'd like to scan a white size a4/a5 handwritten note with black handwriting that is separated into two parts with a straight colored line made with some marker pen. Using the picture file I get I then ...
0
votes
1answer
57 views

Implement a Take Picture + Crop or use premade Intents?

I'm in the middle of an Android app which takes a picture, crops it and does some extra stuff. I was hoping to do my own cropping system, but the problem comes when I test in different places. ...
0
votes
1answer
50 views

zoom out a photo without using pinch/UIScrollView

I'm making a process on a certain part of an image, I'm using the following code but the image retrieved on imageToDoProce is always zoomed in, My app will get complete if I could zoom out this photo. ...
1
vote
0answers
23 views

how to handfree crop a bitmap object

i want to crop a bitmap object on button click but i want the image to be cropped by my hand.All the code that i find take image from camera and then automatically crop it but I want that it should ...
0
votes
2answers
70 views

Image cropping to fit in a GridView

I need to display three columns of ImageView in a GridView and I want to square the image to avoid this effect https://www.dropbox.com/s/hjc55ijbf8cdkao/SC20130430-194230.png This is my xml code: ...
0
votes
2answers
66 views

How to crop an uiimageView from a rectangle overlay?

I want to crop a part of an uiimageview that on my view controller. I'm creating a rectangle on top of it: UIGraphicsBeginImageContext(self.view.bounds.size); CGContextRef context = ...
-1
votes
1answer
27 views

Calculate the second coordinate given aspect ratio and width [closed]

I know these values: x1 = 653 y1 = 500 width = 264 ratio = 3/2 And I need to calculate the coordinate (x2;y2) with this info. x2 = x1 + width = 653+264 = 917 y2 = ??? I have drawn the picture to ...
0
votes
0answers
20 views

How to crop original image size in smaller tag than its size

I need crop image for example with jcrop plugin. I have php image upload script,i upload image (1600x1200) on server, and then I put it inside img tag(600x450). Now I use jcrop plugin, I need crop ...
1
vote
1answer
46 views

MATLAB help cropping an image

I am using MATLAB R2012a and I am trying to let the user crop the image WITHOUT the use of the built in function. here is my code: [x, y] = ginput(2); m1 = [x(1), y(1)]; m2 = [x(2), y(2)]; m1 = ...
-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
2answers
207 views

Custom Android Image Crop

i just want to share this piece of code that i wrote. I tried searching for a custom crop activity, but most of them leads to the default "com.android.camera.action.CROP" despite the question custom ...
0
votes
1answer
38 views

Slice multiple part from single image in iPhone? [duplicate]

I am working in iPhone application, I have tried to slice multiple part from single image but i can't get exact solution. I want single image to slice multiple part like 3x3, 4x4, 5x5, 6x6 etc... How ...
0
votes
1answer
126 views

Android - Resize & crop picture before sending without saving it

Please excuse my bad English, I'm French ! In my Android App, I have to resize and crop a picture from the gallery before sending it to a server WITHOUT saving it. Here my code to send to the server ...
0
votes
2answers
31 views

jQuery Animated Crop

I got this code: <img id="img" src="img.png"/> <button onclick="crop();">Click me!</button> When the user clicks on the button I'd like to animate the cropping process of the ...
0
votes
0answers
55 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 ...
1
vote
1answer
40 views

Crop and resize an image to use on a list

I need to crop and center an image to make a thumbnail for a list, but I want the size of the thumbnail to be proportional to the screen size, so that when the list is shown on a tablet or on a phone ...
0
votes
1answer
33 views

Provide a selection area on UIImagePicker Controller to capture the selected area alone? [closed]

After Googled a whole day I was unable to get any model for my need. Actually my need is 1.Provide a Selection area box on UIImagePicker like the image below: 2.User can resize the selection area ...
0
votes
1answer
259 views

crop and Save ROI as new image in OpenCV 2.4.2 using cv::Mat

Working on Face Detection and Recognition, and after successfully detecting a face, i just want to crop the face and save it somewhere in the drive to give it for the recognition code.I am having hard ...
0
votes
0answers
57 views

Cropping an image let my image zoom in

I need to crop an image in my project to detect the characters written in a specific part of this image, Am using the following code to crop: - (UIImage *)imageCrop:(UIImage *)imageToCrop ...
1
vote
2answers
77 views

ImageAreaSelect: preselect biggest thumbnail posible respecting aspectRatio

This is how I first tried: $('#thumbnail').imgAreaSelect({ x1: 5, y1: 5, x2: $('#thumbnail').width(), y2: $('#thumbnail').width()*0.66, aspectRatio: '1:0.66' }); But some of ...
0
votes
1answer
37 views

imagemagick mogrify cut part of image out

If I have an image similar to this: --------------------------------- - xxxxxxxxxx - - x x - - xxxxxxxxxx - ...
2
votes
1answer
189 views

Crop image by polygon area

I want to crop image by polygon area, but couldn`t find any library, which can make it. OpenCV is too big for this small thing. JJIL [enter link description here] crop just rectangle area. Maybe you ...
0
votes
0answers
199 views

OpenCV Crop Image using four points

I am trying to crop an image then be able to display the image. I have four points in two arrays and it would make a rectangle shape. I have a code that i think would do the job but it is giving an ...
0
votes
0answers
60 views

Portable Crop Image Activity for Xamarin.Android (Monodroid / Mono for Android)

I am looking for a portable crop image activity to use inside my Xamarin.Android application. Something similar to this one written in Java: https://github.com/lvillani/android-cropimage. I think ...

1 2 3 4 5 14