Crop refers to any issues relating to cropping images.
1
vote
1answer
180 views
Android Freehand bitmap croping
I know we can crop a bitmap in rectangular shape using :
Bitmap.createBitmap(source, x, y, width, height)
But I want to know to crop a bitmap in freehand mode or some polygon shape. Its best ...
3
votes
1answer
236 views
How to crop a portion from tiff image
Here is my TIFF image and I am trying to extract left rectangle or box from the tiff image and save as a PNG file.
the left side rectangle or box portion i tried to crop programmatically. here is ...
2
votes
2answers
79 views
Crop distorting / scaling image
I have the follow PHP code:
$w = 300; // Width of new image
$h = 300; // Height of new image
$oh = 540; // Original file height
$ow = 720; // Original file width
$x = 196;
$y = 50;
$image = ...
0
votes
1answer
67 views
Crop last sentence from html string if it does not fit webView (iphone)
I have an array of texts that have bold parts in them. There is no rule where this bold word or sentence is, so i am using webView to display html string with bold tags where necessary. Now my ...
1
vote
1answer
260 views
how to make a resizable crop rectangle to crop image in Xcode?
We are trying to make a drawing application, for that we require code to work with images (cropping,resizing,rotating,merging etc. the works) problem is we are novices(less than five months in iOS) so ...
0
votes
3answers
166 views
Automatically crop image after save in rails with predefined height, width, and (x , y) index
I am searching the way to automatically crop image after save of Image:
I came across a tedious problem when transforming html to image in rails.
My problem is when html is converted to image then ...
0
votes
0answers
193 views
iOS : UIScrollView how to correctly determine contentsize and frame
I'm Building a custom photoCropper for iPhone, basically the component provide a custom crop area supplied as a parameter to the controller. The 80% of the work is done and it works pretty well but ...
0
votes
1answer
42 views
change ImageVIew by Capture
here the question I want Change Imageview named cameraView
I use startActivityforResult But it doens't work.
I already write permissions it needs.
ImageView doens't change
my whole code is
...
0
votes
1answer
374 views
Crop thumbnail images for gallery
In my gallery, the thumbnails are 240 pixels wide, but their heights vary. Is there any way to crop the thumbnail images so that they are all 150 pixels high?
At the moment I've got this:
.gallery ...
0
votes
0answers
47 views
an upper left pixel is broken after image resize PHP
i got images, that uploads to server and then i have a function that resize and crop them. The images must be cropped three times, to different sizes. The original image saves too. All of the resizes ...
0
votes
2answers
233 views
Custom cropped Wordpress thumbnails, overwritten when using crop in the media library
I defined custom thumbnail sizes in my functions.php file using this function:
add_theme_support( 'post-thumbnails' );
if ( function_exists( 'add_image_size' ) ) {
add_image_size( 'address', 960, ...
0
votes
2answers
124 views
From Android 2.3 to android 4
I'm developing an app testing on Android 2.3, and it works wells. In Android 4 I have put all the Network calls inside a Asyntask and now almost all works fine. What else do I have to consider?
But ...
0
votes
0answers
105 views
Android crop coordinates
I want to crop an image from gallery or camera and also get the crop coordinates X and Y for original image, not the cropped one.
I require these coordinates in order to use them in a POST request, ...
1
vote
2answers
143 views
How to crop text with dynamic width, fluid layout?
How to crop text when the width of element is dynamic?
It's possible to crop text when width of element is fixed:
.my-class {
width: 100px;
white-space: nowrap;
overflow: hidden;
...
1
vote
0answers
221 views
android crop image but let user decide output size
The current "com.android.camera.action.CROP" API lets the program specify pre-defined outputX/Y:
// this defines the output bitmap size
intent.putExtra("outputX", 100);
intent.putExtra("outputY", ...
2
votes
2answers
575 views
Crop Canvas / Export html5 canvas with certain width and height
There are hundreds of tutorials, how one can crop an image by drawImage() on a canvas.
context.drawImage(imageObj, sourceX, sourceY, sourceWidth, sourceHeight, destX, destY, destWidth, destHeight);
...
1
vote
0answers
313 views
Image Resizing and Crop to fit in Frame
I am trying to build a PHP library that will resize an image down to a specific size, but am coming across a few issues which I can't quite work out.
I am trying to make it so that it will resize and ...
0
votes
1answer
178 views
How to Crop Image And Overwrite Exiting
protected void btnCropIt_Click(object s, EventArgs e)
{
System.Drawing.Image img = System.Drawing.Image.FromFile(Server.MapPath("../upload/" + u.Avatar));
var m = cropImage(img, new ...
0
votes
0answers
77 views
Crop only a part of the View / UImage
I want to know how to crop only a part of our view. I am firstly capturing a screenshot of the view and then cropping it.
I want to crop only a part of the image that I get from the screenshot. ...
0
votes
1answer
90 views
Android: Key aspectX expected Integer but value was a java.lang.Double. The default value 0 was returned
I got the below exception sort while working with Images in android, any solutions for this.
Key aspectX expected Integer but value was a java.lang.Double. The default value 0 was returned
0
votes
0answers
61 views
How to Crop the current place in image view / Scroller?
I have "Zoom & Scale" View that i want to crop and save as UIImage, to do so - im using this code:
-(void)done{
CGRect visibleRect;
float scale = 1.0f/_scrollView.zoomScale;
if ...
0
votes
0answers
328 views
Cropping images - jQuery & PHP
I'm trying to use a existing script: http://tympanus.net/codrops/2009/11/04/jQuery-image-cropper-with-uploader-v1-1/
My main question is would this script handle race condition uploading? (Not ...
0
votes
1answer
1k views
Crop Image as circle in Android
Does anyone know how to crop an image\bitmap to a circle?
I can not find any solution, sorry ..
0
votes
0answers
87 views
Android Crop, ratio change
I have a little application that calls Android Crop. It's work fine, but sometimes in any images, the rectangle change its ratio to 1:1. Any ideas?
Intent cropintent = new ...
2
votes
0answers
369 views
Crop image in non-rectangular shape in Android like Face fighter
I want to crop image in some shape in Android.
By using Camera Intent, i can only do this :
I don't know how to do this :
Is it possible?
5
votes
1answer
455 views
Auto-cropping images with PIL
I have folder full of images with each image containing at least 4 smaller images. I would to know how I can cut the smaller images out using Python PIL so that they will all exist as independent ...
0
votes
0answers
64 views
Removing image croping function javascript
I found a good javascript function to create a slideshow gallery in http://www.mudaimemo.com/p/gallery/
The js file is http://pastebin.com/NPANubFf
The problem is that this script consume a lot of CPU ...
0
votes
0answers
118 views
Crop UIImage inside UIScrollview : how to get cropRect
Hi all I'm facing the following problem : I have to crop a UIImage that is a subview of a UIScrollView, above the scrollview there is another view that I use to show the user the region of the image ...
1
vote
2answers
2k views
how to set the output image use com.android.camera.action.CROP
I have code to crop an image, like this :
public void doCrop(){
Intent intent = new Intent("com.android.camera.action.CROP");
intent.setType("image/");
List<ResolveInfo> list = ...
0
votes
1answer
87 views
How to crop a verticaly and horizontaly centered version of an image?
I am currently resizing an image to a custom with keeping aspect ratio:
class ImgResizer {
var $originalFile = '$newName';
function ImgResizer($originalFile = '$newName') {
$this -> ...
0
votes
1answer
102 views
Manually Cropping a UIImage after click from Camera in iOS SDK
I want to crop the image which I click from camera with touch and want to drag that copped image to some else snap(e.g Replacing head in image with my head), for that I need to know how I can crop the ...
0
votes
2answers
380 views
Easiest way to select screen region
I'm writing a simple program in C# + WPF that records/serializes user mouse and keyboard activities and then he can playback it.
Some of its features require user to specify coordinates of a small ...
1
vote
1answer
406 views
libjpeg: decompress & crop
I have the next standard code for JPEG image decompression which is based on libjpeg.
jpeg_decompress_struct cinfo;
// ...Set error manager and data source...
jpeg_read_header(&cinfo, TRUE);
...
0
votes
0answers
171 views
how to upload image with imagine via html form [closed]
i want to create a simple image uploader in php.
my needs are to be able to:
1) upload jpg,jpeg,gif,png files.
2) compress the image.
3) crop the image if it is to large.
4) limit the MB of the image.
...
0
votes
0answers
68 views
PDF 2 Image find white padding and crop it php
I doing pdf 2 image with iMagick extension how do i get rid of padding from edge of pdf page to where text starts?
It used to add extra padding untill i used: ...
-1
votes
1answer
97 views
Show cropped image
I'm using a script that helps users to upload their profile images then to crop them to choose the convenient position
I have a problem with PNG & GIF images they aren't shown
This is the crop ...
0
votes
1answer
434 views
Custom crop on Android
I'm writing a custom image crop.
I have an image view and a rectangle to choose area for cropping on it.
After cropping I need to know a top-left point of rectangle, that present cropping area.
...
0
votes
0answers
268 views
Android crop a photo / Image
There seem to be many "answers". But they do not actually crop the photo, they just size it so parts lay off screen. (correct me if im wrong).
Now, Basically my background is resource and it is ...
0
votes
1answer
66 views
Class Cast Exception using cropimage library
I've downloaded a library from here
When I try to use it, I got an exception
09-24 11:24:23.428: E/ActivityThread(31526): Activity com.android.internal.app.ChooserActivity has leaked IntentReceiver ...
2
votes
2answers
291 views
error facing while cropping photo using Paperclip in Rails 3
Hi i am trying to crop photo using paperclip and imagemagick. I am facing some error while cropping photo. following is the error stack:
?[32mCommand?[0m :: convert ...
1
vote
1answer
697 views
Dynamically set selection of jcrop (not fixed selection)
I am working with a jcrop now I want to do something like here
jQuery(function(){
jQuery(".image_container .a-center h2").html("Upload another picture")
var api;
...
0
votes
4answers
3k views
Find and crop defined image areas automatically
I want to process an image in matlab
The image consists out of a solid back ground and two specimens (top and bottom side). I already have a code that separate the top and bottom and make it two ...
3
votes
1answer
373 views
Error in Image crop using MiniMagick with carreirwave in Rails 3
I am trying to crop image using mini magick gem with carrierwave. I am facing following issue when i am creating user.
Errno::ENOENT in UsersController#create
No such file or directory - identify ...
0
votes
2answers
170 views
Java Image Cropping Not Accurate
Heres my code, when you select and area you want to crop and then push enter, the cropped image isn't the same size/picture as the original selected area.
public class DragNDrop extends JFrame ...
1
vote
1answer
109 views
Auto vectorization Region of interest (crop)
I have a library which has some image processing algorithms including a Region of Interest (crop) algorithm. When compiling with GCC, the auto vectorizer speeds up a lot of the code but worsens the ...
0
votes
0answers
402 views
Android CROP error with Samsung devices
I´m developing a app and I take photo and crop...
This is all my code:
// keep track of camera capture intent
final int CAMERA_CAPTURE = 1;
// keep track of cropping intent
final int ...
1
vote
1answer
129 views
Best way to extract word or phrase region on image from point for it's further recognition?
The solution must be universal (working with different fonts and colors) and stable.
Input data is point with X, Y coordinates and output data is rectangle or more comples shape, which contains word ...
1
vote
2answers
152 views
How can I crop an image with negative crop-boundaries in Java?
I have an image of some arbitrary size, and I need to crop it with negative boundary values.
So, basically I have image (1) and I want to crop it to the dimensions of (2).
(1)
...
0
votes
2answers
455 views
Node gm - use crop and resize cause error
The following code throw an error.
Error: Command failed: gm convert: geometry does not contain image
(unable to crop image).
var gm = require('gm');
gm('/origin.jpg')
.resize(600)
...
-4
votes
1answer
249 views
PHP function to crop single or multiple images [closed]
Well, I needed a php function to crop images. The function should work for single as well as multiple images.
The function should crop the images according to the arguments supplied to it. The ...
