Results 1 to 6 of 6
Thread: Scanning Image Pixel by Pixel
- 05-24-2008, 10:27 PM #1
Member
- Join Date
- May 2008
- Posts
- 1
- Rep Power
- 0
- 05-26-2008, 05:26 AM #2
- 05-27-2008, 10:27 AM #3
import java.awt.image.*;
import java.awt.*;
import java.applet.*;
public class Sprite {
private String name;
public int[] b;
public int w;
public int h;
public Sprite(Applet a, String filename, int width, int height) {
try {
name=filename.substring(0, filename.indexOf('.'));
w=width;
h=height;
Image img=a.getImage(a.getDocumentBase(), filename);
b=new int[h*w];
PixelGrabber pg= new PixelGrabber(img, 0, 0, w, h, b, 0, w);
pg.grabPixels();
if (pg.status()==192) {
throw new RuntimeException("error loading "+filename +" sprite");
}
//now b[0] is the leftest pixel of the top
// b[w-1] is the rightest pixel of the top
} catch(Exception e) {
e.printStackTrace();
}
}
}Mattery - free online strategy game
- 05-28-2008, 09:45 PM #4
Member
- Join Date
- May 2008
- Posts
- 21
- Rep Power
- 0
depends upon the format of the image
bitmap stores 3 variables for each pixel
and there must be some api for doing image processing
google for thatget new coding problems at CODERWORDS
- 08-28-2012, 03:52 PM #5
Member
- Join Date
- Aug 2012
- Posts
- 2
- Rep Power
- 0
Re: Scanning Image Pixel by Pixel
i executed but Exception in thred "main" java .lang .No such method error
- 08-28-2012, 04:01 PM #6
Moderator
- Join Date
- Apr 2009
- Posts
- 10,476
- Rep Power
- 16
Similar Threads
-
Image Verification
By peiceonly in forum Java ServletReplies: 2Last Post: 04-04-2009, 07:38 AM -
image removing
By Triss in forum New To JavaReplies: 3Last Post: 01-20-2008, 08:27 PM -
Converting multiple banded image into single banded image... Image enhancement
By archanajathan in forum Advanced JavaReplies: 0Last Post: 01-08-2008, 05:29 PM -
how to set an image size
By valery in forum New To JavaReplies: 1Last Post: 08-06-2007, 08:27 PM -
How can I get a transparent pixel from an image
By samson in forum Java 2DReplies: 1Last Post: 07-17-2007, 04:10 AM


1Likes
LinkBack URL
About LinkBacks

Bookmarks