Examples of ThumbnailsCreator


Examples of org.pdfsam.guiclient.business.thumbnails.creators.ThumbnailsCreator

  /**
   * @param identifier
   * @return The requested {@link ThumbnailsCreator} or the first available of the requested one is not available. Returns null if no {@link ThumbnailsCreator} is available.
   */
  public static ThumbnailsCreator getCreator(String identifier){
    ThumbnailsCreator retVal = null;
    if(CREATORS!=null && identifier!=null && identifier.length()>0){
      for(ThumbnailsCreator creator: CREATORS){
        if(identifier.equals(creator.getCreatorIdentifier())){
          retVal = creator;
          break;
View Full Code Here

Examples of org.pdfsam.guiclient.business.thumbnails.creators.ThumbnailsCreator

      this.password = password;
    }

    public void run() {       
      try{
        ThumbnailsCreator creator = getCreator();
        if(creator != null){
          frame.setPagePreview(creator.getPageImage(inputFile, password, page), inputFile.getAbsolutePath());
          frame.setVisible(true);
        }else{
             log.error(GettextResource.gettext(Configuration.getInstance().getI18nResourceBundle(),"Unable to initialize the thumbnails creation library."));
           }
            }catch (Exception e) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.