« first day (593 days earlier)   

4:07 AM
@all: Good Morning
 
5:07 AM
@alishaik786 : good morning
 
hi @alishaik786
 
@Vendetta: yes tell me?
 
@alishaik789,how can i Programatically Reduce JPEG file size while uploading it to server.
 
5:26 AM
@all good morning
@alishaik786 @Vendetta hi
 
@signare hi,good morning
 
5:47 AM
@signare ,how can i Programatically Reduce JPEG file size while uploading it to server.is there any crop method
 
@Vendetta you can resize the image size
 
6:04 AM
@signare,i have tried like this before uploading to server if the image size is 1and 2 mb means it's not cropping
int scaleFactorX = Fixed32.div(Fixed32.toFP(eImage.getWidth()), Fixed32.toFP(80));
int scaleFactorY = Fixed32.div(Fixed32.toFP(eImage.getHeight()), Fixed32.toFP(80));
eImage=eImage.scaleImage32(scaleFactorX, scaleFactorY);
 
6:36 AM
@Vendetta public Bitmap setsizeImage(EncodedImage image, int width,
int height) {
EncodedImage result = null;

int currentWidthFixed32 = Fixed32.toFP(image.getWidth());
int currentHeightFixed32 = Fixed32.toFP(image.getHeight());

int requiredWidthFixed32 = Fixed32.toFP(width);
int requiredHeightFixed32 = Fixed32.toFP(height);

int scaleXFixed32 = Fixed32.div(currentWidthFixed32,
requiredWidthFixed32);
int scaleYFixed32 = Fixed32.div(currentHeightFixed32,
requiredHeightFixed32);

result = image.scaleImage32(scaleXFixed32, scaleYFixed32);
or EncodedImage ei = EncodedImage.getEncodedImageResource("image.png");
ei.setScale(2); // divide size by this number
BitmapField bmp = new BitmapField(ei.getBitmap());
add(bmp);
 
@signare,how can i reduce the image size like this 2 Mb image to 20 K Image..is it possible ? supportforums.blackberry.com/t5/Java-Development/…
 
7:05 AM
did you check my code above ?
 
@signare , i have used your code for retrieving the images from server,its working fine, but while taking the image from the filepicker if the image size is 2 Mb,it's not uploading to server,how can i resize and send that image to server..
 
not possible
bcoz Blackberry have a few memory
so it cant upoload large files
if(fc.fileSize()<=409600)
only you get the file bytes
else it will show error
@Vendetta
 
 
2 hours later…
9:01 AM
@Vendetta hi..
 
@RajKamal, hi
 
@Vendetta wher r u from
 
@Rajkamal,coimbatore you
 
9:24 AM
hyd
 
@RajKamal,how can i reduce the image size like this 2 Mb image to 20 K Image..is it possible ? supportforums.blackberry.com/…
 
@all hello guys
!
got a question on neural networks
can anyone help me?
 
9:39 AM
@vendetta..... how r u getting the image ...from the server?
@Signare hru..after a long time
 
@RajKamal yes
 
9:55 AM
@signare now in wich flatform?
 
@RajKamal , no i'm getting the image from filepicker,the selected image i need to compress and pass to the server.!! an image is 2mb means it's not uploading to server,so i need to compress the 2mb image to 20kb..
 
@Vendetta....sory..i don,t know
 
10:17 AM
ok@RajKamal..
 
@Vendetta using photo shop softearw u can reduce the pic size & then u can use it
 
@RajKamal, can you just give me a brief text,i can't able to understand..
 
@vendetta approxmately how many images u have
 
10:35 AM
@rajkamal,i'm having three images all consists of 2.5mb
 
@Vendetta I think it is not possible through coding....by using photo shop software reduce the image size and use it it ur app. by parsing technique
 
11:36 AM
@rajkamal,can u able to send some reference links or some samples
 

« first day (593 days earlier)