Sabtu, 05 Juli 2014

Membuat Logo Mitsubitsi

import java.awt.*;
import java.applet.*;

public class Tugas_Final extends Applet {

Font jnsHuruf = new  Font("Arial", Font.BOLD,70);
public void paint(Graphics g) {
g.setFont(jnsHuruf);
g.setColor(Color.black);
g.fillRoundRect(100,100, 400,300, 180,180);

g.setColor(Color.white);
g.fillRoundRect(105,105, 390,290, 165,165);

g.setColor(Color.green);
g.fillOval(165,115,270,270);
   
g.setColor(Color.white);
g.fillRect(120,198, 350,100);


g.setColor(Color.red);
    g.fillArc(205, 115, 190, 120, 0, 180);
    g.fillArc(310, 130, 80, 66, 0, 90);
    g.fillArc(320, 138, 80, 66, 0, 90);
    g.fillArc(352, 150, 50, 30, 0, 90);
    g.fillArc(385, 160, 20, 13, 0, 90);
   
    g.fillArc(210, 130, 80, 66, 90, 90);
    g.fillArc(205, 138, 80, 66, 90, 90);
    g.fillArc(203, 140, 60, 50, 90, 90);
    g.fillArc(195, 153, 40, 30, 90, 90);
   
    g.setColor(Color.blue);
    g.fillArc(205, 265, 190, 120, 180, 180);
    g.fillArc(319, 296, 80, 66, 270, 90);
    g.fillArc(325, 290, 80, 66, 270, 90);
    g.fillArc(359, 312, 50, 30, 270, 90);
   
    g.fillArc(200, 296, 80, 66, 180, 90);
    g.fillArc(195, 315, 40, 30, 180, 90);
    g.fillArc(192, 312, 50, 30, 180, 90);
   
    g.setColor(Color.white);
g.fillRect(120,165, 300,10);
g.fillRect(120,320, 300,10);

g.setColor(Color.BLUE);
    g.drawString("IND", 130, 275);
    g.drawString("SIAR", 310, 275);
   
    g.setColor(Color.RED);
    g.fillOval(254,222,55,55);
   
    g.setColor(Color.WHITE);
    g.fillOval(259,227,45,45);
   
    g.setColor(Color.RED);
    g.fillOval(264,232,35,35);
   
    g.setColor(Color.WHITE);
    g.fillOval(272,240,20,20);
   
    g.setFont(new Font("Footlight MT Light", Font.BOLD,20));
    g.setColor(Color.black);
    g.drawString("Nama : Cici Saharani", 220, 50);
    g.drawString("NIM : 113023", 220, 80);
}
}

Tidak ada komentar:

Posting Komentar