背景画像を設定(setBackgroundImage, setBackgroundImageAlignment)

広告

描画領域の背景の上に背景画像を設定することが出来ます。Plotクラスで用意されている「setBackgroundImage」メソッドを使います。

Sets the background image for the plot and sends a PlotChangeEvent to 
all registered listeners.

Parameters:
  image - the image (null permitted).

引数にはjava.awt.Imageクラスのオブジェクトを指定します。今回はImageクラスのサブクラスであるjava.awt.image.BufferedImageクラスのオブジェクトを利用します。(BufferedImageクラスについては「BufferedImageの使い方色々」を参照して下さい)。

例えば次のように記述します。

JFreeChart chart = ChartFactory.createPieChart(...);      /* 引数は省略 */

Plot plot = chart.getPlot();
BufferedImage image = null;
try {
    image = ImageIO.read(new File("./hana.png"));
} catch (Exception e) {
    e.printStackTrace();
    image = null;
}
plot.setBackgroundImage(image);

背景画像を使用した場合、描画領域内ではグラフ、背景画像、背景、の順に表示されます。

なお描画領域と貼り付ける画像の大きさが異なる場合、デフォルトの設定では画像を描画領域の大きさに合わせて拡大縮小して貼り付けられます。

画像の貼り付け方式を設定

描画領域の中で画像がどのように貼り付けられるのかを指定することが可能です。Plotクラスで用意されている「setBackgroundImageAlignment」メソッドを使います。

Sets the alignment for the background image and sends a PlotChangeEvent 
to all registered listeners. Alignment options are defined by the Align 
class in the JCommon class library.

Parameters:
  alignment - the alignment.

引数には「org.jfree.ui.Align」クラスで定義されているstaticフィールドを使って指定します。(Alignクラスについては「Alignクラス」を参照して下さい)。

例えば次のように記述します。

JFreeChart chart = ChartFactory.createPieChart(...);      /* 引数は省略 */

Plot plot = chart.getPlot();
BufferedImage image = null;
try {
    image = ImageIO.read(new File("./hana.png"));
} catch (Exception e) {
    e.printStackTrace();
    image = null;
}
plot.setBackgroundImage(image);
plot.setBackgroundImageAlignment(Align.LEFT);

デフォルトの値は「Align.FIT」です。

サンプルプログラム

では簡単なサンプルを作成して試してみます。

Test9_1.java

import org.jfree.chart.JFreeChart;
import org.jfree.chart.ChartFactory;
import org.jfree.data.category.DefaultCategoryDataset;
import org.jfree.chart.plot.PlotOrientation;

import javax.swing.JFrame;
import java.awt.BorderLayout;
import org.jfree.chart.ChartPanel;

import org.jfree.chart.plot.Plot;
import java.awt.image.BufferedImage;
import java.io.File;
import javax.imageio.ImageIO;
import java.io.IOException;
import org.jfree.ui.Align;

public class Test9_1 extends JFrame{
  public static void main(String[] args) {
    Test9_1 frame = new Test9_1();

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setBounds(10, 10, 500, 500);
    frame.setTitle("グラフサンプル");
    frame.setVisible(true);
  }

  Test9_1(){
    JFreeChart chart = 
      ChartFactory.createBarChart("月別売上",
                                  "月",
                                  "売上",
                                  createData(),
                                  PlotOrientation.VERTICAL,
                                  true,
                                  false,
                                  false);

    Plot plot = chart.getPlot();

    BufferedImage image = null;
    try {
        image = ImageIO.read(new File("./hana.png"));
    } catch (Exception e) {
        e.printStackTrace();
        image = null;
    }
    plot.setBackgroundImage(image);
    plot.setBackgroundImageAlignment(Align.LEFT);

    ChartPanel cpanel = new ChartPanel(chart);
    getContentPane().add(cpanel, BorderLayout.CENTER);
  }

  private DefaultCategoryDataset createData(){
    DefaultCategoryDataset data = new DefaultCategoryDataset();
    String[] series = {"本社", "大阪支社", "名古屋支社"};
    String[] category = {"4月", "5月", "6月"};

    data.addValue(800, series[0], category[0]);
    data.addValue(600, series[0], category[1]);
    data.addValue(900, series[0], category[2]);
    data.addValue(500, series[1], category[0]);
    data.addValue(300, series[1], category[1]);
    data.addValue(200, series[1], category[2]);
    data.addValue(300, series[2], category[0]);
    data.addValue(900, series[2], category[1]);
    data.addValue(600, series[2], category[2]);

    return data;
  }
}

上記をコンパイルした後で実行すると次のようにJavaアプリケーションが起動します。

背景画像を設定(setBackgroundImage, setBackgroundImageAlignment)

上記はAlign.LEFTを設定した場合です。いくつか他の値を指定した場合の実行結果を下記に表示します。

Align.FIT : (デフォルト)

背景画像を設定(setBackgroundImage, setBackgroundImageAlignment)

Align.BOTTOM_RIGHT :

背景画像を設定(setBackgroundImage, setBackgroundImageAlignment)

( Written by Tatsuo Ikura )