java - 如何将图像插入到我的 Java 小程序中?

标签 java

基本上我必须编写一个生成名片的 Java 小程序。我所困惑的部分是弄清楚如何在小程序中显示我自己的图像。

我对我的指示感到困惑的部分是它说:

This assumes you have an image in the directory of your BlueJ project called 'businesscard.jpg'

如何将我的图片放入 BlueJ 项目的目录中?然后我如何以正确的方式获取代码以便它出现在小程序中?

import javax.swing.JApplet;
import java.awt.*; 
import java.net.*;
import javax.imageio.*;
import java.io.*;
import java.awt.Graphics2D;
import java.awt.image.*;


public class BusinessCard extends JApplet
{


    public void paint(Graphics page)
    {
        //Variables used in rectangle
        int x = 0;
        int y = 0;
        int width = 500;
        int height = 300;

        page.drawRect(x, y, width, height);  //draws the rectangle using variables

        //Displays name
        Font f = new Font("Helvetica", Font.BOLD, 26);
        page.setFont(f);
        page.drawString ("anon", 300,100);

        //Displays company
        Font g = new Font("Helvetica", Font.PLAIN, 18);
        page.setFont(g);
       page.drawString ("anon", 320, 120);

        //Displays email
        Font h = new Font("serif", Font.ITALIC, 15);
        page.setFont(h);
        page.drawString ("email", 320,140);

        //int for the logo
        final int MID = 350;
        final int TOP = 168;

        page.setColor (Color.orange);
        page.fillOval (MID, TOP, 60, 60); //bottom half of the trophy. the rounded part.
        page.drawArc (MID-8, TOP+15, 25, 25, 100, 160); //left arc
        page.drawArc (MID+43, TOP+15 , 25, 25, 280, 160); //right arc
        page.fillRect (MID+1, TOP+1, 59, 25); //make the top of the trophy flat basically
        page.fillRect (MID+22, TOP+60, 15, 25); //neck of the trophy
        page.drawLine (MID+48, TOP+84, MID+10, TOP+84); //base of the trophy

        page.setColor (Color.blue);
        Font i = new Font("serif", Font.BOLD, 20); 
        page.setFont(i);
        page.drawString ("#1", MID+20, TOP+30); //Creates the "#1" on the trophy.


        //The following is all code for inserting my image


          BufferedImage photo = null;

        try {
            URL u = new URL(getCodeBase(), "businesscard.jpg");
            photo = ImageIO.read(u);
        }   catch (IOException e) {
            page.drawString("Problem reading the file", 100, 100);
        }

        page.drawImage(photo, 10, 10, 150, 225, null);




    }


}

最佳答案

import javax.swing.*;
import java.awt.*; 
import javax.imageio.*;
import java.net.*;
import java.io.*;
import java.awt.image.*;
import java.applet.*;
public class Photo extends Applet
{
    public void paint(Graphics g)
    {        
      int x = 0;
      int y = 0;
      int width = 500;
      int height = 300;                     
      BufferedImage photo = null;
      try 
      {
         URL u = new URL(getCodeBase(),"Bike.jpg");
         photo = ImageIO.read(u);
      }   
      catch (IOException e) 
      {
         g.drawString("Problem reading the file", 100, 100);
      }
         g.drawImage(photo,x, y, width, height,null);
   }
}

关于java - 如何将图像插入到我的 Java 小程序中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12486768/

相关文章:

java - 使用Java加密/解密pdf文件

java - 如何跟踪java基本类型数组?

java - 在 Magnolia CMS 中以编程方式呈现模板区域

java - 垃圾收集行为怪异

java - 在 Eclipse 中使用自动添加的导入时包名称错误

java - 在类中实现接口(interface)

java - OSGi 和 Gemini JPA : Using the Configuration Admin

java - 在整个应用程序中查找空字符串列表

java - 具有接近双值的 JSlider

java - 如何设置 rmiregistry 使用的类路径?