I am implementing one iphone/Android application using Titanium in which I want to crop the image.Please check below flow which I have implemented. 1)Open Camara 2)Take photo 3)Display photo in the application 4)Crop photo with some area
I have implemented above 3 steps but for croping I am facing issue.I have tried below code for croping.
var file = Titanium.Filesystem.getFile(header1).toBlob(); var cropped = file.imageAsCropped(10, 10, 290, 232);
var croImg = Ti.UI.createImageView({ image: file, top:0, left : 0, width:290, height:232 });
win1.add(croImg);
But i can't get sucess. IF you give me advice then would be appriciate.
Thanks