나는 탭으로 된 창에 이미지를 표시하는 코드를 작성했습니다. 내 코드는 어떻게에 마커를 배치 .. 내가 이미지의 특정 위치에 마커를 배치해야 다음 음이이미지 내에 마커 놓기
class tracker extends JPanel
{
String imageFile = "areal view.JPG";
public tracker()
{
super();
}
public tracker(String image)
{
super();
this.imageFile = image;
}
public tracker(LayoutManager layout)
{
super(layout);
}
public void paintComponent(Graphics g)
{
/*create image icon to get image*/
ImageIcon imageicon = new ImageIcon(getClass().getResource(imageFile));
Image image = imageicon.getImage();
/*Draw image on the panel*/
super.paintComponent(g);
if (image != null)
g.drawImage(image, 100, 50, 700, 600, this);
//g.drawImage(image, 100, 50, getWidth(), getHeight(), this);
}
}
같은 lookes ..?
나는 인터넷 검색을 시도했지만 안드로이드와 웹 응용 프로그램에서만 작동한다는 것을 알게되었습니다. 그것은 사실입니까 ??
내가 그것으로 생각하지 않는다 자바처럼 모든 !!!!! ... 내가 BufferedImage
개념-등을 들어 왔지만 그렇게 작동하지 않는다되면
..
이미지 안에 마커를 놓는 것과 관련된 모든 종류의 도움을 환영합니다 ....
'자바는 모든처럼 !!!!! ...'huuuh, 더 나은 도움을 빨리 [SSCCE] (http://sscce.org/), 짧은 실행 가능한 게시
, compilable, 읽기 전에 Swing의 Painting에 관한 Oracles 튜토리얼,이 포럼에서 여기를 검색 – mKorbel