Skip to content

Pash237/j2me-JPEG-library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

j2me JPEG library which does not use JSR 234 and can be used on almost any device.
Port of Sun's JIMI image library on j2me.

Usage:

import com.encoder.jpg.*;

//your input image
Image image = Image.createImage(128, 128);

JPGEncoder encoder = new JPGEncoder();
int quality = 65;
byte[] encodedImage = encoder.encode(image, quality);

//now save or send encoded jpeg image

About

Port of Sun's JIMI image library on j2me

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published