PsToPdfServiceOperations.java
1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.ps2pdf;
import com.adobe.ps2pdf.FontsInFolder;
import com.adobe.ps2pdf.PsToPdfFailureException;
import com.adobe.ps2pdf.PsToPdfFilePaths;
import com.adobe.ps2pdf.PsToPdfFontPaths;
public interface PsToPdfServiceOperations {
public static final int INVALID_POSTSCRIPT_ERROR = 12011;
public static final int OUT_OF_MEMORY_ERROR = 12012;
public static final int OUT_OF_DISK_SPACE_ERROR = 12013;
public static final int PS_VM_INTERNAL_ERROR = 12014;
public static final int NO_PDF_OUTPUT_ERROR = 12015;
public static final int JOB_TIMEOUT_ERROR = 12016;
public static final int CANNOT_EMBED_JOBOPTIONS_ERROR = 12017;
public static final int IDENTICAL_PASSWORDS_ERROR = 12018;
public static final int CANNOT_APPLY_ENCRYPTION_ERROR = 12019;
public static final int FILENAME_WITHOUT_EXTENSION_ERROR = 12020;
public static final int UNKNOWN_FILE_EXTENSION_ERROR = 12021;
public static final int NULL_JOBDATA_RUNTIME_ERROR = 12511;
public static final int INVALID_JOBOPTIONS_RUNTIME_ERROR = 12512;
public static final int CANNOT_SAVE_FILE_RUNTIME_ERROR = 12513;
public static final int UNKNOWN_RUNTIME_ERROR = 12514;
public static final int SERVICE_LOOKUP_RUNTIME_ERROR = 12515;
public static final int COMMUNICATION_RUNTIME_ERROR = 12516;
public static final int IO_RUNTIME_ERROR = 12517;
public static final int INVALID_SOURCE_RUNTIME_ERROR = 12518;
public static final String BASE_FONTS_LIST = "_BASE_FONTS_LIST_";
public FontsInFolder[] getFontsInFolder(PsToPdfFontPaths var1, String var2) throws PsToPdfFailureException;
public void convertToPdf(PsToPdfFilePaths var1, PsToPdfFontPaths var2, boolean var3, long var4) throws PsToPdfFailureException;
public String getColorProfilesDirectory() throws PsToPdfFailureException;
}