home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PImageSaveForSep.cpp --------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 3:29 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * header file PImageSaveForSep.h
- *-------------------------------------------------------------------------
- */
-
- #include "PImageSaveForSep.h"
- #include "PRequestBuf.h"
- #include "PCommand.h"
-
- PImageSaveForSep::PImageSaveForSep(
- const char * sFileName,
- PMBool bLinkOption,
- short nPreview,
- short nFileFormat,
- PMBool bCropped,
- PMBool bProfile,
- short nCompression,
- short nDataFormat,
- short nCompliance)
-
- {
- PRequestBuf request(strlen(sFileName) + 18);
-
- request << sFileName
- << bLinkOption
- << nPreview
- << nFileFormat
- << bCropped
- << bProfile
- << nCompression
- << nDataFormat
- << nCompliance ;
-
- PCommand command(pm_imagesaveforsep, request);
- }
-
-
- // end of PImageSaveForSep.cpp
-