Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
207 views
in Technique[技术] by (71.8m points)

java - Code displays another image

The following code displays an image when the button is pressed. Custom gui opens an internal frame that displays an image but when it does that it also displays another frame containing the same image, that is separate from the desktop pane that I have created. I don't want that frame to show though. I know ImageJ also displays the image but I don't know where in the code its calling that. I was wondering if anyone could spot out the mistake.

here is my code:

 Open.addActionListener(new ActionListener(){

    @Override
    public void actionPerformed(ActionEvent arg0) {
        // TODO Auto-generated method stub
        FileOpener open = new FileOpener(file);
        ImagePlus fopen = open.open(false);

        if(fopen != null){
            BufferedImage openImage = fopen.getBufferedImage();
            //new ImagePlus(path,openImage).show(desktop);

            ImagePlus newImage = new ImagePlus(path, openImage);
            CustomGui gui = new CustomGui(newImage, path, desktop); //This is a customized gui class I created.
            img = newImage;


        }

    }
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...