| Author |
Image Filter problems
|
Terence Doyle
Ranch Hand
Joined: May 30, 2001
Posts: 328
|
|
HI, I'm having trouble with displaying part of an image in an applet. This is the code I'm trying: [code] // Image2 is declared elsewhere Image2 = getImage( getDocumentBase() , "palm1.jpg" ) ; Image2.CropImageFilter(xpos-20, ypos -20, 40, 40 ); [end of code] The error message I get is: cannot resolve symbol symbol : method CropImageFilter(int,int,int,int) location : java.awt.Image Image2.CropImageFilter(xpos-20, ypos -20, 40, 40 ); ^ Any ideas?? Thanks, Terry
|
Raising Flares debut album 'Ignition' out now
http://www.raisingflares.com
Terry Doyle <br />SCPJ 1.4 , SCWCD , SCMAD(Beta)
|
 |
Nathan Pruett
Bartender
Joined: Oct 18, 2000
Posts: 4121
|
|
CropImageFilter is not a method of the java.awt.Image class... it's a class in the java.awt.image package... Here's an example program that shows how to use it... ( Replace "Washu.gif" with whatever image you are using... ) -Nate
|
-Nate
Write once, run anywhere, because there's nowhere to hide! - /. A.C.
|
 |
 |
|
|
subject: Image Filter problems
|
|
|