Crop refers to any issues relating to cropping images.
-1
votes
1answer
30 views
+50
Cropping Shape of Square Image Android In App
I want to create an application which allows to resize an image in shape of square (length = width).
I know that it is possible to use the galery to make that in this way:
private void crop(Uri ...
-2
votes
1answer
23 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
20 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
46 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
16 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
21 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
11 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
29 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
24 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
21 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
22 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
27 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
48 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
45 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
19 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
56 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
61 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
24 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
17 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
44 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
19 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
1answer
116 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
34 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
105 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
25 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
51 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
36 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
32 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
196 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
54 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
75 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
34 views
imagemagick mogrify cut part of image out
If I have an image similar to this:
---------------------------------
- xxxxxxxxxx -
- x x -
- xxxxxxxxxx -
...
2
votes
1answer
172 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
165 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
56 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 ...
0
votes
1answer
114 views
Image resize/crop/flip in .net appliaction
I'm writing an ASP.NET (MVC C#) application where user will have to upload a few images and should be able to crop and rotate (vertically/horizontally). The application should resize the images ...
-1
votes
1answer
62 views
What are the solutions for cropping an img in css, without a wrapper or distortion?
Following this question, I was wondering if there are any new solutions for cropping an <img> in css, without distorting it, whilst maintaining its aspect ratio (without adding a wrapper).
For ...
0
votes
3answers
73 views
Image Crop From URL
Hi I've been working with the iTunes API and what I've done is saved the data that's returned from the search into the database. I'm saving the iTunes image URL to my database and I'm wondering what ...
2
votes
5answers
202 views
jcrop full width/height with ratio crop
We implemented Jcrop in our system and it works fine so far. But we found out one minor issue lately:
Scenario
Our website lets users upload their company's logo. Our aspect ratio requirement is ...
0
votes
1answer
115 views
Jcrop have problems with large size images
TRANSLATED by Google
I'm running to achieve an upload form in php and jquery and say that everything is fine now except for one thing that I think is nonsense but still can not figure it out.
Let me ...
3
votes
2answers
98 views
How to clip WorldMap with polygon in R?
I have imported a world map dataset from www.GADM.org using the R package raster. I would like to clip it to a polygon I create to reduce the size of the map. I can retrieve the data and I can create ...
0
votes
1answer
28 views
modify & design croped image
I cropped an image in html & css . When i am coding a <span> tag the cropped image displayed. But I need to know how can I modify it.
I have the following code:
<style ...
0
votes
1answer
65 views
Standalone Python script for image resizing
I'm looking for a standalone python script which can perform 2 simple image editing tasks :
Resizing
Cropping
I browsed some websites this morning and found 2 interesting modules :
...
1
vote
2answers
114 views
Creating PDF file from UIWebView
-(void)createPDFfromUIView:(UIView*)aView saveToDocumentsWithFileName:(NSString*)aFilename
{
// Creates a mutable data object for updating with binary data, like a byte array
UIWebView *webView ...
1
vote
2answers
132 views
Android crop image size
I have the following code for users to crop image. When I set the size beyond 256, it does not work. My gut feel is "cropIntent.putExtra("return-data", true);" causing the error. How do I pass in the ...
-3
votes
1answer
38 views
Focus on cropping area and making brighten outside the crop area [closed]
Welcome. I have a problem with the visualization of the crop.
I would like to increase the brightness or blur part of the image outside the main crop area.
Inner and outer box are the static area. ...
0
votes
1answer
160 views
Crop a Bitmap image
How can i crop a bitmap image? this is my question i have tried some concepts using intents but still fail..
I am having a bitmap image which i want to crop!!
here is the code :
Intent intent = ...
0
votes
0answers
176 views
Custom cropping of an image using bezier path
Hi iam trying to make a custom crop tool which enables user to create a custom closed region using bezier path.
The code i am using to clip imageView with path is
CAShapeLayer *maskLayer = ...
0
votes
2answers
75 views
Cropping Centre of Image Stored In A MemoryStream
I have an image upload form that stores two sizes of images: Large and Thumbnail image.
For the thumbnail image, I am trying to crop image from the center and re-size to: 30px x 30px.
Here is my ...
0
votes
2answers
47 views
Cropping an uploaded image with Java
I am reading a image file in a servlet from an http request. I want to crop it as a square and write it to file. I can achieve that with the following code but i am using a temporary file to write the ...





