Package org.jwildfire.create.tina.randommovie

Examples of org.jwildfire.create.tina.randommovie.RandomMovieGenerator


    }
    int imgCount = prefs.getTinaRandomMovieBatchSize();
    List<SimpleImage> imgList = new ArrayList<SimpleImage>();
    int maxCount = (pCount > 0 ? pCount : imgCount);
    renderProgressUpdater.initProgress(maxCount);
    RandomMovieGenerator randGen = RandomMovieGeneratorList.getRandomMovieGeneratorInstance(pGeneratorname, true);
    for (int i = 0; i < maxCount; i++) {
      MovieThumbnail thumbnail;
      thumbnail = new MovieThumbnail(randGen.createMovie(prefs), null);
      SimpleImage img = thumbnail.getPreview(3 * prefs.getTinaRenderPreviewQuality() / 4);
      if (prefs.getTinaRandomBatchRefreshType() == RandomBatchRefreshType.INSERT) {
        randomBatch.add(0, thumbnail);
        imgList.add(0, img);
      }
View Full Code Here

TOP

Related Classes of org.jwildfire.create.tina.randommovie.RandomMovieGenerator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.