/* JWildfire - an image and animation processor written in Java Copyright (C) 1995-2011 Andreas Maschke This is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this software; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jwildfire.create; import java.awt.image.BufferedImage; import java.util.Calendar; import org.jwildfire.base.ManagedObject; import org.jwildfire.base.Preset; import org.jwildfire.image.SimpleImage; public abstract class ImageCreator extends ManagedObject { public SimpleImage createImage(int pWidth, int pHeight) { long t0 = initTime(); BufferedImage bufferedImg = new BufferedImage(pWidth, pHeight, BufferedImage.TYPE_INT_RGB); SimpleImage res = new SimpleImage(bufferedImg, pWidth, pHeight); fillImage(res); showElapsedTime(t0); return res; } protected abstract void fillImage(SimpleImage res); private long initTime() { return Calendar.getInstance().getTimeInMillis(); } private void showElapsedTime(long t0) { // long t1 = Calendar.getInstance().getTimeInMillis(); // String name = this.getClass().getSimpleName(); // System.out.println(name + ": " + ((double) (t1 - t0) / 1000.0) + "s"); } public void applyPreset(String pPresetName) { Preset preset = getPresetByName(pPresetName); if (preset != null) { applyPreset(preset); } } }