Package de.sub.goobi.export.download

Examples of de.sub.goobi.export.download.TiffHeader


    try {
      /* prüfen, ob Tiff-Header schon existiert */
      if (new File(inProzess.getImagesDirectory() + "tiffwriter.conf").exists()) {
        return;
      }
      TiffHeader tif = new TiffHeader(inProzess);
      BufferedWriter outfile = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(inProzess.getImagesDirectory()
          + "tiffwriter.conf"), "utf-8"));
      outfile.write(tif.getTiffAlles());
      outfile.close();
    } catch (Exception e) {
      Helper.setFehlerMeldung("Download aborted", e);
      myLogger.error(e);
    }
View Full Code Here


  /*
   * Downloads
   */

  public void DownloadTiffHeader() throws IOException {
    TiffHeader tiff = new TiffHeader(this.mySchritt.getProzess());
    tiff.ExportStart();
  }
View Full Code Here

  /*
   * Downloads
   */

  public void DownloadTiffHeader() throws IOException {
    TiffHeader tiff = new TiffHeader(this.myProzess);
    tiff.ExportStart();
  }
View Full Code Here

TOP

Related Classes of de.sub.goobi.export.download.TiffHeader

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.