You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by le...@apache.org on 2014/02/07 17:04:00 UTC

svn commit: r1565707 - /pdfbox/cmssite/trunk/content/commandline/index.mdtext

Author: lehmi
Date: Fri Feb  7 16:04:00 2014
New Revision: 1565707

URL: http://svn.apache.org/r1565707
Log:
PDFBOX-1889: removed the misleading ConvertColorspace class

Modified:
    pdfbox/cmssite/trunk/content/commandline/index.mdtext

Modified: pdfbox/cmssite/trunk/content/commandline/index.mdtext
URL: http://svn.apache.org/viewvc/pdfbox/cmssite/trunk/content/commandline/index.mdtext?rev=1565707&r1=1565706&r2=1565707&view=diff
==============================================================================
--- pdfbox/cmssite/trunk/content/commandline/index.mdtext (original)
+++ pdfbox/cmssite/trunk/content/commandline/index.mdtext Fri Feb  7 16:04:00 2014
@@ -9,32 +9,6 @@ PDFBox tools as Java applications.
 
 [TOC]
 
-### ConvertColorspace ### {#convertCS}
-
-This application will convert a PDF that uses one colorspace to another. For example, all 
-RGB colors to CMYK colors. 
-Currently this only supports changing text and vector graphics and does not convert images.
-
-usage: ``java -jar pdfbox-app-x.y.z.jar org.apache.pdfbox.ConvertColorspace [OPTIONS] <inputfile> <outputfile>``
-
-| Command Line Parameter | Description |
-| ---------------------- | ----------- |
-| -password | The password to the PDF document. |
-| -equiv | Color equivalent to use for conversion. |
-| inputfile | The PDF file to convert. |
-| outputfile | The file to save the converted document to. Must be different of input file |
-
-The format for the color equivalent described above is  
-Colorspace(values)=Colorspace(values)
-
-RGB(255,0,0)=CMYK(0,99,100,0)
-
-RGB are integers between 0 and 255
-
-CMYK are integers between 0 and 100
-
-This option can be used as many times as necessary.
-
 ### Decrypt ### {#decrypt}
 
 This application will decrypt a PDF document.