Quantcast
Viewing all 20709 articles
Browse latest View live

Combining or Merging Indesign Files (IDML/INDT)

Greetings,

 

I would like to inquire about a possible performance problem regarding combining multiple IDML / INDT files or copying pages via Indesign Server Scripting API.

Note that we are using Indesign Server CS6 (with latest 8.0.2 update).

 

Currently, we are using the following line to merge multiple indesign documents (IDML/INDT)

document.pages.everyItem().duplicate(LocationOptions.AFTER, baseDocument.pages[lastPageIndex])

 

Above line performs what is needed (textframes are threaded, etc), however there is a possible issue with its performance which degrades horribly especially after several merging operations and if there are several pages in the base document or the document to be copied (though the performance is more affected when the document to be copied has many pages)

 

Testing done:

#1 For the below test, Notice that the merging is not constant and degrades per minute (performance may possible degrade when using a larger document)

 

start

end

time elapsed for pages.everyItem.duplicate

 

operation done

with a base of 42 page INDT document

12:13:33

12:15:28

0:01:55

 

add 42 page INDT file

12:15:29

12:18:35

0:03:06

 

add another 42 page INDT file

12:18:37

12:22:53

0:04:16

 

add another 42 page INDT file

12:22:54

12:28:15

0:05:21

 

add another 42 page INDT file

12:28:17

12:34:30

0:06:13

 

add another 42 page INDT file

 

 

TOTAL

 

 

 

 

0:20:51

 

 

 

with a base of 42 page IDML document

12:13:58

12:16:44

0:02:46

 

add 42 page IDML file

12:16:56

12:20:59

0:04:03

 

add another 42 page IDML file

12:21:11

12:26:21

0:05:10

 

add another 42 page IDML file

12:26:35

12:32:39

0:06:04

 

add another 42 page IDML file

12:32:50

12:40:06

0:07:16

 

add another 42 page IDML file

 

 

TOTAL

 

 

 

 

0:25:19

 

 

 

Time elapsed is 20 minutes for INDT and 25 minutes for IDML. it adds ~1 minute for each document added (for a 42 page, this duration may increase when no of pages increase).

 

#2 For below test, we noticed that INDT seems to perform faster than IDML (though it is larger by 10x and is a binary file)

 

 

with a base of 838 page IDML document

14:30:44

14:55:40

0:24:56

 

add 42 page IDML file

 

 

 

 

 

 

 

 

 

 

with a base of 838 page INDT document

15:14:55

15:23:40

0:08:45

 

add 42 page INDT file

 

#3 For below test, notice that the merging degrades by several minutes even if you just increase the number of pages.

Notice that we added the documents according to increasing no of pages as we found out that it performs significantly faster than not (saved several hours)

I also incorporated the doc.save and gc calls but it still doesn't help reduce the whole merging process to several minutes. (still takes 11 hours just to merge 33 documents with total of 1046 pages)

Note that we also checked binary merging (merging small files first but the resulting time is much larger than above)

 

with a base of 1 page IDML document

15:58:45

15:58:52

0:00:07

 

add 1 page IDML file

15:58:53

15:59:00

0:00:07

 

add 1 page IDML file

15:59:01

15:59:08

0:00:07

 

add 2 page IDML file

15:59:09

15:59:18

0:00:09

 

add 2 page IDML file

15:59:19

15:59:29

0:00:10

 

add 3 page IDML file

 

 

 

 

perform $.gc  and doc.save into temp IDML

15:59:35

15:59:42

0:00:07

 

add 4 page IDML file

15:59:44

15:59:52

0:00:08

 

add 6 page IDML file

15:59:54

16:00:05

0:00:11

 

add 6 page IDML file

16:00:08

16:00:21

0:00:13

 

add 6 page IDML file

16:00:23

16:00:49

0:00:26

 

add 7 page IDML file

 

 

 

 

perform $.gc  and doc.save into temp IDML

16:00:53

16:01:03

0:00:10

 

add 7 page IDML file

16:01:05

16:01:19

0:00:14

 

add 8 page IDML file

16:01:22

16:02:18

0:00:56

 

add 10 page IDML file

16:02:22

16:04:12

0:01:50

 

add 17 page IDML file

16:04:17

16:06:41

0:02:24

 

add 19 page IDML file

 

 

 

 

perform $.gc  and doc.save into temp IDML

16:06:50

16:09:14

0:02:24

 

add 20 page IDML file

16:09:19

16:12:31

0:03:12

 

add 20 page IDML file

16:12:37

16:15:53

0:03:16

 

add 21 page IDML file

16:15:59

16:21:00

0:05:01

 

add 26 page IDML file

16:21:07

16:27:25

0:06:18

 

add 27 page IDML file

 

 

 

 

perform $.gc  and doc.save into temp IDML

16:27:40

16:38:28

0:10:48

 

add 37 page IDML file

16:38:38

16:50:42

0:12:04

 

add 39 page IDML file

16:50:55

17:08:09

0:17:14

 

add 42 page IDML file

17:08:21

17:28:39

0:20:18

 

add 44 page IDML file

17:28:55

17:58:32

0:29:37

 

add 52 page IDML file

 

 

 

 

perform $.gc  and doc.save into temp IDML

17:58:58

18:26:26

0:27:28

 

add 52 page IDML file

18:26:42

19:11:57

0:45:15

 

add 63 page IDML file

19:12:16

20:08:49

0:56:33

 

add 64 page IDML file

20:09:09

21:13:22

1:04:13

 

add 67 page IDML file

21:13:59

22:39:28

1:25:29

 

add 67 page IDML file

 

 

 

 

perform $.gc  and doc.save into temp IDML

22:40:15

0:35:17

1:55:02

 

add 84 page IDML file

0:35:48

3:30:53

2:55:05

 

add 98 page IDML file

 

 

TOTAL

 

 

 

 

11:26:36

 

 

 

Notice that I have already added $.gc and doc.save per 5 documents however the effect is lost/not significant around the 4th/5th time.

 

Please confirm if there is something that can be done to resolve above Indesign's performance for merging / copying pages from one document to another.

or suggest alternative code or some setting that we may have missed.


Numerous InDesign server crashes

We use InDesign Server CC 2014 (10.2.0.69) running on a Windows Server 2012 R2. We encounter a LOT of crashes and the crash reports refer mostly (99% of the events) to ntdll.dll as the faulting module, the other ones are MSVCR110.dll or StackHash.

What we tried: deactivate antivirus and running InDesign Server as Administrator. No luck.

 

Does it sound familiar to anyone?

Thanks!

I have an idea about the Adobe InDesign application program to increase the selling power of Adobe InDesign , by adding an additional menu , with an additional menu which I mean more important to the future of printing . How can I relate directly to the

I have an idea about the Adobe InDesign application program to increase the selling power of Adobe InDesign , by adding an additional menu , with an additional menu which I mean more important to the future of printing .

How can I relate directly to the developer adobe indesingn ........... !

InDesign Server CS6 block update image links

Hello,

 

I try to script my InDesign Server CS6 to do not update image links (from images which edited since last opening of layout document). The default setting is that the image links will automatically be updated when opening the document.

 

I found a parameter in the scripting documentation and tried this in a InDesign jsx script. The parameter is also available for InDesignServer.

 

In the InDesign script it works to set

 

app.linkingPreferences.checkLinksAtOpen = false;

 

When I try to use this parameter in my InDesignServer script the server do not ust this setting an updates all images in the document.

 

Has anyone an idea to solve this?

InDesign server using VB Dot Net

Hi,

I need help regarding using InDesign server using Visual Basic .Net.
I tried to generate a new document in the following ways:

Dim IdApp As InDesign.Application
Dim Doc As InDesign.Document
Dim DocP As InDesign.DocumentPreset


IdApp = CreateObject("InDesignServer.Application.CS3")

' This is the command that appears in the documentation:
' Adobe Indesign CS Scripting guide, page 11
'Doc = IdApp.Documents.Add
' The Result:
' Compiles but generates the following run time error:
'An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in mscorlib.dll
'Additional information: Invalid value for parameter 'DocumentPreset' of event 'Add'. Expected DocumentPreset, but received TRUE.
' In the following command I pass the parameters
' from the correct type in the correct order.
' The runtime result is as if the DocumentPreset
' parameter is the first and not the second
Doc = IdApp.Documents.Add(False, DocP)
' The Result:
'An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in mscorlib.dll
'Additional information: Invalid value for parameter 'DocumentPreset' of event 'Add'. Expected DocumentPreset, but received FALSE.
' I tried passing the parameters in reverse order
Doc = IdApp.Documents.Add(DocP, False)
' Result
' Compile error:
' error BC30311: Value of type 'InDesign.DocumentPreset' cannot be converted to 'Boolean'.

Besides these methods, I saw at the InDesign Java documentation that in non-scripting languages, as Visual Basic
parameters cannot be omitted.
At Java, the class OptArg is provided in order to supply such parameters.
I couldn't find the corresponding class for Visual Basic.

Thanks in advance for your help,
C

TextFrames in InDesign CS3

Is it possible in a InDesign document (.indd) to setup TextFrames 'that moves proportionally' (with exactly the same space in between) when using 'Fit Frame To Content' on one or multiple TextFrames - or can this only be achieved with scripting?

Can TextFrames with multiple columns be re-sized when the amount of content changes? I have noticed that textFrame.fit(FitOptions.FRAME_TO_CONTENT) doesn't re-size the TextFrame if it has more then one column.

Thanks in advance

InDesign Server command-line flags

How can I get command-line flags list of InDesign Server?

Actually the situation is testclient doesn't work.
I installed InDesign Server and SDK.
I run InDesignServer.com then I use something like this "testclient -server t.js".
Server and client runs on same comp.
As result I have this exception:
SOAP FAULT: SOAP-ENV:Client
"Unknown error"
Detail: TCP connect failed in tcp_connect()

in SDK indesign-server-test-client.pdf I found:
"Using InDesign Server
In order to use the test client, you must have a machine that has InDesign Server installed and
running properly, as the test client will communicate with the InDesign Server application.
For instructions on running and terminating InDesign Server, including command-line flags,
please refer to the InDesign Server Installation and Configuration Guide."

Any suggestion?

InDesignServer Service not starting on Windows Server 2003 (32bit & 64 bit)

Note: this issue is different from this thread on a similar issue.

 

This problem has plagued me for weeks and I finally give up. InDesign Server installs successfully and the InDesignServerService starts, but the server does not run. I can only run the server from the command line. I've followed these installation instructions but run into the following problems:

 

1. installing by the command line: InDesignServerService /install fails and produces the following error log:

 

Installing service InDesignServerService...

Creating EventLog source InDesignServerService in log Application...

Rolling back assembly 'E:\Program Files\Adobe InDesign CS4 Server\InDesignServerService.exe'.

Affected parameters are:

   logtoconsole =

   assemblypath = E:\Program Files\Adobe InDesign CS4 Server\InDesignServerService.exe

   logfile = E:\Program Files\Adobe InDesign CS4 Server\InDesignServerService.InstallLog

Restoring event log to previous state for source InDesignServerService.

2. I cannot install or load the snap-in to MMC. When I try to install regsvr32 InDesignServerMMC.dll it cannot be found (as it's not in the InDesign Server directory). However InDesignServerMMC64.dll is in there and I was able to load the snap-in using regsvr32 InDesignServerMMC.dll, but the server still only runs when being started from the command line.

 

As I mentioned, InDesign Server runs fine when I have an active command line window open and run InDesignServer, but the moment I close the command line window, the server shuts down. Any ideas?


CS5 Export

Hi,

 

i am just playing around with the indesign cs5.5 server demo and was wondering how i can save files which can be opened with indesign cs5. I tried

myDocument.exportFile(ExportFormat.INDESIGN_MARKUP, myFile);

but i can't open it with cs5. Any hints are greatly appreciated.

 

Regards,

Gerold

When trying to start InDesign CS6 Server: command not found

Greetings,

 

I just installed InDesign CS6 Server, but when trying to run the application from terminal I get the following error: -bash: InDesignServer: command not found

I thought, maybe it had something to do with the licensing so I ran this command:

 

MacBook-Pro-van-Mario:~ mariovandeneynde$ cd /Applications/Utilities/Adobe\ Application\ Manager/Enterprise/utilities/APTEE/CS6

MacBook-Pro-van-Mario:CS6 mariovandeneynde$ ./adobe_prtk --tool=StartTrial --leid=InDesignServer-CS6-Mac-GM

 

RESULT:

 

          Copyright 2012 Adobe Systems Incorporated

          All rights reserved.

StartTrial Successful

Return Code = 0

 

So, I tried to launch IDS again, but always the same error.

 

Now, my mac isn't a MAC Server, as mentioned in the Tech Specs, but I don't think that should mind, cause the installation was successful.

 

So, anybody got any ideas what I'm doing wrong?

 

Thanks!

 

Mario

How to get CORBA LBQ started as a Windows service for InDesign Server CS6?

So we have a production InDesign Server (CS6) running 4 instances. The instances are set to start as Windows services and no issues there at all. The problem is my Clover commands that handles the LBQ to manage those instances. Right now I have a .bat file that I run manually and it opens a command prompt and runs it there.

 

The problem is that if the server gets logged off or reboots then that Clover part dies and my LBQ dies with it.

 

How can I go about setting this up as a Windows service so that it runs automatically?

IDML file to PDF taking around 5 minutes to process (CS6).

So our tool has the ability to process .IDML files to .jpg's or .pdf's. Normally all works well and I can get a preview and pdf render within seconds. Lately I have this 1 template that's super small (<275K) and although my preview processes fine when I have it process to return a .pdf file it takes around 5 minutes to do so!

 

I have other templates that are way larger and more complicated that render out pdf's in seconds but this specific one is really baffling me.

 

Checked the .idml and it looks ok. It was built with InDesign CC 2014 and exported out as an IDML file. Our server is InDesign CS6. Would that make a difference?

Japanese Crop Marks on IDS output?

I am currently implementing an IDS solution in Tokyo. Japanese crop marks are required by my client to be on all outputs, laser printed and X1A PDFs. My solution works fine in InDesign workstation, marks are what they should be. However in IDS I get north american crop marks and the layout name slug is unprintable because it includes Japanese characters. I was told there is no Pacific rim version of IDS, but there appear to be one for InDesign. The menu for Japanese Crop marks is visible in the Japanese localized machines I work with but not in the north american machines, Any help with this would be greatly appreciated!

Is it possible to install the Adobe InDesign CS5 Server on a Windows 2012 R2?

We need to install an Adobe InDesign CS5 Server on a Windows Server 2012 R2. Is compatible?.

 

Thanks.

JPEG single page export from multipage document

Hello Experts: I have a function to create a JPEG file given a page number from a multipage document. The problem is that InDesign Server will actually create JPEG files for all the pages -despite the given page range (I just want to create one). It appends the page number starting on page 2 (and will create the JPEG's desired file name for the first page in the document, and so on)

Here is my sample code:

Somewhere I will initialize the document to use it globally:
app.open(File(inDocumentPath));
currentDocument = app.documents[0];

Here is my current function:

function ExportAsQualityJPG(inSaveAsDocumentPath, inPageNumber)
{
app.jpegExportPreferences.jpegQuality = JPEGOptionsQuality.maximum;
app.jpegExportPreferences.resolution = 300;

pageName = currentDocument.pages.item(inPageNumber-1).name;
app.pdfExportPreferences.pageRange = pageName;
// app.jpegExportPreferences.pageString = pageName; --> Does not work

currentDocument.exportFile(ExportFormat.jpg, File(inSaveDocumentPath), app.pdfExportPresets.item("[High Quality Print]"));
}

I will do something like later:

ExportAsQualityJPG("//Documents/InDesign/Page2.jpg", 2);

As I mentioned above, it will actually create images for all pages in the document. For example, if the INDD doc has 3 pages, it will create these images:
Page2.jpg (actual page 1)
Page22.jpg (actual page 2)
Page23.jpg (actual page 3)

Any help or tip would be really appreciated.

Thanks,

G.O.

PDF Preset (joboptions)

Hi,

 

Where do PDF Preset files or joboptions files need to be stored for InDesign CS3 Server to "see" them. Would InDesign Server need to be restarted to pick up changes to the Presets?

 

 

Thanks

Export InDesign pages in PDF as spread using a joboption in InDesign Server

Hello,

I am working in newspaper. We use an editorial system with indesign server.

For some group of two pages, I would like to produce pdf files as spread to display them on our web site.

So I create a joboption in indesign desktop. I tested it and it gave me the pdf as spread like I wanted.

I put the joboption in indesign server and restarted it.

I sent a file with two pages and asked to produce a pdf using the joboption.

The pdf is produced as spread but with the wrong size. Instead of the size of two pages of the document, the pdf have the size of the entire working area in indesign. The two pages spread are in the middle of this wide area.

Below  is the joboption I used.

We have indesign server cs4 6.0.1.

Does anyone have an idea?

Thanks.

<<

  /ASCII85EncodePages false

  /AllowPSXObjects false

  /AllowTransparency false

  /AlwaysEmbed [

    true

  ]

  /AntiAliasColorImages false

  /AntiAliasGrayImages false

  /AntiAliasMonoImages false

  /AutoFilterColorImages true

  /AutoFilterGrayImages true

  /AutoPositionEPSFiles true

  /AutoRotatePages /All

  /Binding /Left

  /CalCMYKProfile (Coated FOGRA27 \050ISO 12647-2:2004\051)

  /CalGrayProfile (Dot Gain 20%)

  /CalRGBProfile (sRGB IEC61966-2.1)

  /CannotEmbedFontPolicy /Warning

  /CheckCompliance [

    /None

  ]

  /ColorACSImageDict <<

    /HSamples [

      1

      1

      1

      1

    ]

    /QFactor 0.15000

    /VSamples [

      1

      1

      1

      1

    ]

  >>

  /ColorConversionStrategy /LeaveColorUnchanged

  /ColorImageAutoFilterStrategy /JPEG

  /ColorImageDepth -1

  /ColorImageDict <<

    /HSamples [

      1

      1

      1

      1

    ]

    /QFactor 0.15000

    /VSamples [

      1

      1

      1

      1

    ]

  >>

  /ColorImageDownsampleThreshold 1.50000

  /ColorImageDownsampleType /Bicubic

  /ColorImageFilter /DCTEncode

  /ColorImageMinDownsampleDepth 1

  /ColorImageMinResolution 300

  /ColorImageMinResolutionPolicy /OK

  /ColorImageResolution 300

  /ColorSettingsFile ()

  /CompatibilityLevel 1.4

  /CompressObjects /Tags

  /CompressPages true

  /ConvertImagesToIndexed true

  /CreateJDFFile false

  /CreateJobTicket false

  /CropColorImages false

  /CropGrayImages false

  /CropMonoImages false

  /DSCReportingLevel 0

  /DefaultRenderingIntent /Default

  /Description <<

    /ARA <FEFF06270633062A062E062F0645002006470630064700200627064406250639062F0627062F0627062A0020 06440625064606340627062100200648062B062706260642002000410064006F00620065002000500044004600 200645062A0648062706410642062900200644064406370628062706390629002006300627062A002006270644 062C0648062F0629002006270644063906270644064A06290020064506460020062E0644062706440020062706 4406370627062806390627062A00200627064406450643062A0628064A062900200623064800200623062C0647 0632062900200625062C06310627062100200627064406280631064806410627062A061B0020064A0645064306 4600200641062A062D00200648062B062706260642002000500044004600200627064406450646063406230629 0020062806270633062A062E062F062706450020004100630072006F0062006100740020064800410064006F00 6200650020005200650061006400650072002006250635062F0627063100200035002E00300020064806270644 06250635062F062706310627062A0020062706440623062D062F062B002E002006450639002000500044004600 2F0041060C0020062706440631062C062706210020064506310627062C063906290020062F0644064A06440020 06450633062A062E062F06450020004100630072006F006200610074061B0020064A0645064306460020064106 2A062D00200648062B062706260642002000500044004600200627064406450646063406230629002006280627 0633062A062E062F062706450020004100630072006F0062006100740020064800410064006F00620065002000 5200650061006400650072002006250635062F0627063100200035002E0030002006480627064406250635062F 062706310627062A0020062706440623062D062F062B002E>

    /BGR <FEFF04180437043f043e043b043704320430043904420435002004420435043704380020043d043004410442 0440043e0439043a0438002c00200437043000200434043000200441044a043704340430043204300442043500 2000410064006f00620065002000500044004600200434043e043a0443043c0435043d04420438002004370430 0020043a0430044704350441044204320435043d0020043f04350447043004420020043d04300020043d043004 410442043e043b043d04380020043f04400438043d04420435044004380020043800200443044104420440043e 043904410442043204300020043704300020043f04350447043004420020043d04300020043f0440043e043104 3d04380020044004300437043f0435044704300442043a0438002e002000200421044a04370434043004340435 043d043804420435002000500044004600200434043e043a0443043c0435043d044204380020043c043e043304 3004420020043404300020044104350020043e0442043204300440044f0442002004410020004100630072006f 00620061007400200438002000410064006f00620065002000520065006100640065007200200035002e003000 20043800200441043b0435043404320430044904380020043204350440044104380438002e>

    /CHS <FEFF4f7f75288fd94e9b8bbe5b9a521b5efa7684002000500044004600206587686353ef901a8fc7684c9762 62535370673a548c002000700072006f006f00660065007200208fdb884c9ad88d2891cf62535370300260a853 ef4ee54f7f75280020004100630072006f0062006100740020548c002000410064006f00620065002000520065 006100640065007200200035002e003000204ee553ca66f49ad87248672c676562535f00521b5efa7684002000 50004400460020658768633002>

    /CHT <FEFF4f7f752890194e9b8a2d7f6e5efa7acb7684002000410064006f00620065002000500044004600206587 4ef653ef5728684c9762537088686a5f548c002000700072006f006f00660065007200204e0a73725f979ad854 c18cea7684521753706548679c300260a853ef4ee54f7f75280020004100630072006f0062006100740020548c 002000410064006f00620065002000520065006100640065007200200035002e003000204ee553ca66f49ad872 48672c4f86958b555f5df25efa7acb76840020005000440046002065874ef63002>

    /CZE <FEFF005400610074006f0020006e006100730074006100760065006e00ed00200070006f0075017e0069006a 007400650020006b0020007600790074007600e101590065006e00ed00200064006f006b0075006d0065006e00 74016f002000410064006f006200650020005000440046002000700072006f0020006b00760061006c00690074 006e00ed0020007400690073006b0020006e0061002000730074006f006c006e00ed0063006800200074006900 73006b00e10072006e00e100630068002000610020006e00e1007400690073006b006f007600fd006300680020 007a0061015900ed007a0065006e00ed00630068002e002000200056007900740076006f01590065006e00e900 200064006f006b0075006d0065006e007400790020005000440046002000620075006400650020006d006f017e 006e00e90020006f007400650076015900ed007400200076002000700072006f006700720061006d0065006300 680020004100630072006f00620061007400200061002000410064006f00620065002000520065006100640065 007200200035002e0030002000610020006e006f0076011b006a016100ed00630068002e>

    /DAN <FEFF004200720075006700200069006e0064007300740069006c006c0069006e006700650072006e00650020 00740069006c0020006100740020006f007000720065007400740065002000410064006f006200650020005000 440046002d0064006f006b0075006d0065006e007400650072002000740069006c0020006b00760061006c0069 0074006500740073007500640073006b007200690076006e0069006e006700200065006c006c00650072002000 6b006f007200720065006b007400750072006c00e60073006e0069006e0067002e0020004400650020006f0070 00720065007400740065006400650020005000440046002d0064006f006b0075006d0065006e00740065007200 20006b0061006e002000e50062006e00650073002000690020004100630072006f00620061007400200065006c 006c006500720020004100630072006f006200610074002000520065006100640065007200200035002e003000 20006f00670020006e0079006500720065002e>

    /DEU <FEFF00560065007200770065006e00640065006e002000530069006500200064006900650073006500200045 0069006e007300740065006c006c0075006e00670065006e0020007a0075006d00200045007200730074006500 6c006c0065006e00200076006f006e002000410064006f006200650020005000440046002d0044006f006b0075 006d0065006e00740065006e002c00200076006f006e002000640065006e0065006e0020005300690065002000 68006f00630068007700650072007400690067006500200044007200750063006b006500200061007500660020 004400650073006b0074006f0070002d0044007200750063006b00650072006e00200075006e00640020005000 72006f006f0066002d00470065007200e400740065006e002000650072007a0065007500670065006e0020006d 00f60063006800740065006e002e002000450072007300740065006c006c007400650020005000440046002d00 44006f006b0075006d0065006e007400650020006b00f6006e006e0065006e0020006d00690074002000410063 0072006f00620061007400200075006e0064002000410064006f00620065002000520065006100640065007200 200035002e00300020006f0064006500720020006800f600680065007200200067006500f600660066006e0065 0074002000770065007200640065006e002e>

    /ENU (Use these settings to create Adobe PDF documents for quality printing on desktop printers and proofers.  Created PDF documents can be opened with Acrobat and Adobe Reader 5.0 and later.)

    /ESP <FEFF005500740069006c0069006300650020006500730074006100200063006f006e00660069006700750072 00610063006900f3006e0020007000610072006100200063007200650061007200200064006f00630075006d00 65006e0074006f0073002000640065002000410064006f00620065002000500044004600200070006100720061 00200063006f006e00730065006700750069007200200069006d0070007200650073006900f3006e0020006400 65002000630061006c006900640061006400200065006e00200069006d0070007200650073006f007200610073 0020006400650020006500730063007200690074006f00720069006f0020007900200068006500720072006100 6d00690065006e00740061007300200064006500200063006f00720072006500630063006900f3006e002e0020 00530065002000700075006500640065006e00200061006200720069007200200064006f00630075006d006500 6e0074006f00730020005000440046002000630072006500610064006f007300200063006f006e002000410063 0072006f006200610074002c002000410064006f00620065002000520065006100640065007200200035002e00 3000200079002000760065007200730069006f006e0065007300200070006f00730074006500720069006f0072 00650073002e>

    /ETI <FEFF004b00610073007500740061006700650020006e0065006900640020007300e400740074006500690064 0020006c006100750061002d0020006a00610020006b006f006e00740072006f006c006c007400f5006d006d00 6900730065007000720069006e0074006500720069007400650020006a0061006f006b00730020006b00760061 006c006900740065006500740073006500740065002000410064006f006200650020005000440046002d006400 6f006b0075006d0065006e00740069006400650020006c006f006f006d006900730065006b0073002e002e0020 0020004c006f006f0064007500640020005000440046002d0064006f006b0075006d0065006e00740065002000 730061006100740065002000610076006100640061002000700072006f006700720061006d006d006900640065 006700610020004100630072006f0062006100740020006e0069006e0067002000410064006f00620065002000 520065006100640065007200200035002e00300020006a00610020007500750065006d00610074006500200076 0065007200730069006f006f006e00690064006500670061002e000d000a>

    /FRA <FEFF005500740069006c006900730065007a00200063006500730020006f007000740069006f006e00730020 006100660069006e00200064006500200063007200e900650072002000640065007300200064006f0063007500 6d0065006e00740073002000410064006f00620065002000500044004600200070006f00750072002000640065 0073002000e90070007200650075007600650073002000650074002000640065007300200069006d0070007200 65007300730069006f006e00730020006400650020006800610075007400650020007100750061006c00690074 00e90020007300750072002000640065007300200069006d007000720069006d0061006e007400650073002000 6400650020006200750072006500610075002e0020004c0065007300200064006f00630075006d0065006e0074 0073002000500044004600200063007200e900e90073002000700065007500760065006e0074002000ea007400 7200650020006f007500760065007200740073002000640061006e00730020004100630072006f006200610074 002c002000610069006e00730069002000710075002700410064006f0062006500200052006500610064006500 7200200035002e0030002000650074002000760065007200730069006f006e007300200075006c007400e90072 006900650075007200650073002e>

    /GRE <FEFF03a703c103b703c303b903bc03bf03c003bf03b903ae03c303c403b5002003b103c503c403ad03c20020 03c403b903c2002003c103c503b803bc03af03c303b503b903c2002003b303b903b1002003bd03b1002003b403 b703bc03b903bf03c503c103b303ae03c303b503c403b5002003ad03b303b303c103b103c603b1002000410064 006f006200650020005000440046002003b303b903b1002003b503ba03c403cd03c003c903c303b7002003c003 bf03b903cc03c403b703c403b103c2002003c303b5002003b503ba03c403c503c003c903c403ad03c2002003b3 03c103b103c603b503af03bf03c5002003ba03b103b9002003b403bf03ba03b903bc03b103c303c403ad03c200 2e0020002003a403b10020005000440046002003ad03b303b303c103b103c603b1002003c003bf03c5002003ad 03c703b503c403b5002003b403b703bc03b903bf03c503c103b303ae03c303b503b9002003bc03c003bf03c103 bf03cd03bd002003bd03b1002003b103bd03bf03b903c703c403bf03cd03bd002003bc03b5002003c403bf0020 004100630072006f006200610074002c002003c403bf002000410064006f006200650020005200650061006400 650072002000200035002e0030002003ba03b103b9002003bc03b503c403b103b303b503bd03ad03c303c403b5 03c103b503c2002003b503ba03b403cc03c303b503b903c2002e>

    /HEB <FEFF05D405E905EA05DE05E905D5002005D105D405D205D305E805D505EA002005D005DC05D4002005DB05D3 05D9002005DC05D905E605D505E8002005DE05E105DE05DB05D9002000410064006F0062006500200050004400 46002005E205D105D505E8002005D405D305E405E105D4002005D005D905DB05D505EA05D905EA002005D105DE 05D305E405E105D505EA002005E905D505DC05D705E005D905D505EA002005D505DB05DC05D9002005D405D205 D405D4002E002005DE05E105DE05DB05D9002005D4002D005000440046002005E905E005D505E605E805D905DD 002005E005D905EA05E005D905DD002005DC05E405EA05D905D705D4002005D105D005DE05E605E205D505EA00 20004100630072006F006200610074002005D5002D00410064006F006200650020005200650061006400650072 00200035002E0030002005D505D205E805E105D005D505EA002005DE05EA05E705D305DE05D505EA002005D905 D505EA05E8002E>

    /HRV <FEFF005a00610020007300740076006100720061006e006a0065002000410064006f00620065002000500044 004600200064006f006b0075006d0065006e0061007400610020007a00610020006b00760061006c0069007400 6500740061006e0020006900730070006900730020006e006100200070006900730061010d0069006d00610020 0069006c0069002000700072006f006f006600650072002000750072006501110061006a0069006d0061002e00 200020005300740076006f00720065006e0069002000500044004600200064006f006b0075006d0065006e0074 00690020006d006f006700750020007300650020006f00740076006f0072006900740069002000410063007200 6f00620061007400200069002000410064006f00620065002000520065006100640065007200200035002e0030 002000690020006b00610073006e0069006a0069006d0020007600650072007a0069006a0061006d0061002e>

    /HUN <FEFF004d0069006e0151007300e9006700690020006e0079006f006d00610074006f006b0020006b00e90073 007a00ed007400e9007300e900680065007a002000610073007a00740061006c00690020006e0079006f006d00 740061007400f3006b006f006e002000e9007300200070007200f300620061006e0079006f006d00f3006b006f 006e00200065007a0065006b006b0065006c0020006100200062006500e1006c006c00ed007400e10073006f00 6b006b0061006c002c00200068006f007a007a006f006e0020006c00e9007400720065002000410064006f0062 0065002000500044004600200064006f006b0075006d0065006e00740075006d006f006b00610074002e002000 2000410020006c00e90074007200650068006f007a006f00740074002000500044004600200064006f006b0075 006d0065006e00740075006d006f006b00200061007a0020004100630072006f006200610074002c0020006100 7a002000410064006f00620065002000520065006100640065007200200035002e0030002000e9007300200061 007a002000610074007400f3006c0020006b00e9007301510062006200690020007600650072007a006900f300 6b006b0061006c00200020006e00790069007400680061007400f3006b0020006d00650067002e>

    /ITA <FEFF005500740069006c0069007a007a006100720065002000710075006500730074006500200069006d0070 006f007300740061007a0069006f006e0069002000700065007200200063007200650061007200650020006400 6f00630075006d0065006e00740069002000410064006f00620065002000500044004600200070006500720020 0075006e00610020007300740061006d007000610020006400690020007100750061006c0069007400e0002000 7300750020007300740061006d00700061006e0074006900200065002000700072006f006f0066006500720020 006400650073006b0074006f0070002e0020004900200064006f00630075006d0065006e007400690020005000 440046002000630072006500610074006900200070006f00730073006f006e006f002000650073007300650072 0065002000610070006500720074006900200063006f006e0020004100630072006f0062006100740020006500 2000410064006f00620065002000520065006100640065007200200035002e0030002000650020007600650072 00730069006f006e006900200073007500630063006500730073006900760065002e>

    /JPN <FEFF9ad854c18cea51fa529b7528002000410064006f0062006500200050004400460020658766f8306e4f5c 6210306b4f7f75283057307e30593002537052376642306e753b8cea3092670059279650306b4fdd3064305330 68304c3067304d307e3059300230c730b930af30c830c330d730d730ea30f330bf3067306e53705237307e305f 306f30d730eb30fc30d57528306b9069305730663044307e305930023053306e8a2d5b9a30674f5c6210305530 8c305f0020005000440046002030d530a130a430eb306f3001004100630072006f0062006100740020304a3088 3073002000410064006f00620065002000520065006100640065007200200035002e003000204ee5964d306795 8b304f30533068304c3067304d307e30593002>

    /KOR <FEFFc7740020c124c815c7440020c0acc6a9d558c5ec0020b370c2a4d06cd0d10020d504b9b0d1300020bc0f 0020ad50c815ae30c5d0c11c0020ace0d488c9c8b85c0020c778c1c4d560002000410064006f00620065002000 50004400460020bb38c11cb97c0020c791c131d569b2c8b2e4002e0020c774b807ac8c0020c791c131b41c0020 0050004400460020bb38c11cb2940020004100630072006f0062006100740020bc0f002000410064006f006200 65002000520065006100640065007200200035002e00300020c774c0c1c5d0c11c0020c5f40020c2180020c788 c2b5b2c8b2e4002e>

    /LTH <FEFF004e006100750064006f006b0069007400650020016100690075006f007300200070006100720061006d 006500740072007500730020006e006f0072011700640061006d00690020006b00750072007400690020004100 64006f00620065002000500044004600200064006f006b0075006d0065006e007400750073002c0020006b0075 00720069006500200073006b00690072007400690020006b006f006b0079006200690161006b00610069002000 73007000610075007300640069006e007400690020007300740061006c0069006e006900610069007300200069 0072002000620061006e00640079006d006f00200073007000610075007300640069006e007400750076006100 690073002e0020002000530075006b0075007200740069002000500044004600200064006f006b0075006d0065 006e007400610069002000670061006c006900200062016b007400690020006100740069006400610072006f00 6d00690020004100630072006f006200610074002000690072002000410064006f006200650020005200650061 00640065007200200035002e0030002000610072002000760117006c00650073006e0117006d00690073002000 760065007200730069006a006f006d00690073002e>

    /LVI <FEFF0049007a006d0061006e0074006f006a00690065007400200161006f0073002000690065007300740061 0074012b006a0075006d00750073002c0020006c0061006900200069007a0076006500690064006f0074007500 2000410064006f00620065002000500044004600200064006f006b0075006d0065006e0074007500730020006b 00760061006c0069007400610074012b0076006100690020006400720075006b010101610061006e0061006900 2000610072002000670061006c006400610020007000720069006e00740065007200690065006d00200075006e 0020007000610072006100750067006e006f00760069006c006b0075006d007500200069006500730070006900 6500640113006a00690065006d002e00200049007a0076006500690064006f006a006900650074002000500044 004600200064006f006b0075006d0065006e007400750073002c0020006b006f00200076006100720020006100 7400760113007200740020006100720020004100630072006f00620061007400200075006e002000410064006f 00620065002000520065006100640065007200200035002e0030002c0020006b0101002000610072012b002000 74006f0020006a00610075006e0101006b0101006d002000760065007200730069006a0101006d002e>

    /NLD (Gebruik deze instellingen om Adobe PDF-documenten te maken voor kwaliteitsafdrukken op desktopprinters en proofers. De gemaakte PDF-documenten kunnen worden geopend met Acrobat en Adobe Reader 5.0 en hoger.)

    /NOR <FEFF004200720075006b00200064006900730073006500200069006e006e007300740069006c006c0069006e 00670065006e0065002000740069006c002000e50020006f007000700072006500740074006500200041006400 6f006200650020005000440046002d0064006f006b0075006d0065006e00740065007200200066006f00720020 007500740073006b00720069006600740020006100760020006800f800790020006b00760061006c0069007400 6500740020007000e500200062006f007200640073006b0072006900760065007200200065006c006c00650072 002000700072006f006f006600650072002e0020005000440046002d0064006f006b0075006d0065006e007400 65006e00650020006b0061006e002000e50070006e00650073002000690020004100630072006f006200610074 00200065006c006c00650072002000410064006f00620065002000520065006100640065007200200035002e00 3000200065006c006c00650072002000730065006e006500720065002e>

    /POL <FEFF0055007300740061007700690065006e0069006100200064006f002000740077006f0072007a0065006e 0069006100200064006f006b0075006d0065006e007400f3007700200050004400460020007a00200077007901 7c0073007a010500200072006f007a0064007a00690065006c0063007a006f015b0063006901050020006f0062 00720061007a006b00f30077002c0020007a0061007000650077006e00690061006a0105006301050020006c00 6500700073007a01050020006a0061006b006f015b0107002000770079006400720075006b00f30077002e0020 0044006f006b0075006d0065006e0074007900200050004400460020006d006f017c006e00610020006f007400 770069006500720061010700200077002000700072006f006700720061006d006900650020004100630072006f 00620061007400200069002000410064006f00620065002000520065006100640065007200200035002e003000 2000690020006e006f00770073007a0079006d002e>

    /PTB <FEFF005500740069006c0069007a006500200065007300730061007300200063006f006e0066006900670075 0072006100e700f50065007300200064006500200066006f0072006d0061002000610020006300720069006100 7200200064006f00630075006d0065006e0074006f0073002000410064006f0062006500200050004400460020 007000610072006100200069006d0070007200650073007300f500650073002000640065002000710075006100 6c0069006400610064006500200065006d00200069006d00700072006500730073006f00720061007300200064 00650073006b0074006f00700020006500200064006900730070006f00730069007400690076006f0073002000 640065002000700072006f00760061002e0020004f007300200064006f00630075006d0065006e0074006f0073 0020005000440046002000630072006900610064006f007300200070006f00640065006d002000730065007200 2000610062006500720074006f007300200063006f006d0020006f0020004100630072006f0062006100740020 00650020006f002000410064006f00620065002000520065006100640065007200200035002e00300020006500 20007600650072007300f50065007300200070006f00730074006500720069006f007200650073002e>

    /RUM <FEFF005500740069006c0069007a006101630069002000610063006500730074006500200073006500740103 00720069002000700065006e007400720075002000610020006300720065006100200064006f00630075006d00 65006e00740065002000410064006f006200650020005000440046002000700065006e00740072007500200074 0069007001030072006900720065002000640065002000630061006c006900740061007400650020006c006100 200069006d007000720069006d0061006e007400650020006400650073006b0074006f00700020015f00690020 00700065006e0074007200750020007600650072006900660069006300610074006f00720069002e0020002000 44006f00630075006d0065006e00740065006c0065002000500044004600200063007200650061007400650020 0070006f0074002000660069002000640065007300630068006900730065002000630075002000410063007200 6f006200610074002c002000410064006f00620065002000520065006100640065007200200035002e00300020 015f00690020007600650072007300690075006e0069006c006500200075006c0074006500720069006f006100 720065002e>

    /RUS <FEFF04180441043f043e043b044c04370443043904420435002004340430043d043d044b04350020043d0430 044104420440043e0439043a043800200434043b044f00200441043e043704340430043d0438044f0020043404 3e043a0443043c0435043d0442043e0432002000410064006f006200650020005000440046002c0020043f0440 04350434043d04300437043d043004470435043d043d044b044500200434043b044f0020043a04300447043504 41044204320435043d043d043e04390020043f043504470430044204380020043d04300020043d043004410442 043e043b044c043d044b04450020043f04400438043d0442043504400430044500200438002004430441044204 40043e04390441044204320430044500200434043b044f0020043f043e043b044304470435043d0438044f0020 043f0440043e0431043d044b04450020043e0442044204380441043a043e0432002e002000200421043e043704 340430043d043d044b04350020005000440046002d0434043e043a0443043c0435043d0442044b0020043c043e 0436043d043e00200020043e0442043a0440044b043204300442044c002004410020043f043e043c043e044904 4c044e0020004100630072006f00620061007400200438002000410064006f0062006500200052006500610064 0065007200200035002e00300020043800200431043e043b043504350020043f043e04370434043d0438044500 20043204350440044104380439002e>

    /SKY <FEFF0054006900650074006f0020006e006100730074006100760065006e0069006100200070006f0075017e 0069007400650020006e00610020007600790074007600e100720061006e0069006500200064006f006b007500 6d0065006e0074006f0076002000410064006f00620065002000500044004600200070007200650020006b0076 0061006c00690074006e00fa00200074006c0061010d0020006e0061002000730074006f006c006e00fd006300 6800200074006c0061010d00690061007201480061006300680020006100200074006c0061010d006f007600fd 006300680020007a006100720069006100640065006e0069006100630068002e00200056007900740076006f00 720065006e00e900200064006f006b0075006d0065006e00740079002000500044004600200062007500640065 0020006d006f017e006e00e90020006f00740076006f00720069016500200076002000700072006f0067007200 61006d006f006300680020004100630072006f00620061007400200061002000410064006f0062006500200052 0065006100640065007200200035002e0030002000610020006e006f0076016100ed00630068002e000d000a>

    /SLV <FEFF005400650020006e006100730074006100760069007400760065002000750070006f0072006100620069 007400650020007a00610020007500730074007600610072006a0061006e006a006500200064006f006b007500 6d0065006e0074006f0076002000410064006f0062006500200050004400460020007a00610020006b0061006b 006f0076006f00730074006e006f0020007400690073006b0061006e006a00650020006e00610020006e006100 6d0069007a006e006900680020007400690073006b0061006c006e0069006b0069006800200069006e00200070 00720065007600650072006a0061006c006e0069006b00690068002e0020002000550073007400760061007200 6a0065006e006500200064006f006b0075006d0065006e0074006500200050004400460020006a00650020006d 006f0067006f010d00650020006f0064007000720065007400690020007a0020004100630072006f0062006100 7400200069006e002000410064006f00620065002000520065006100640065007200200035002e003000200069 006e0020006e006f00760065006a01610069006d002e>

    /SUO <FEFF004b00e40079007400e40020006e00e40069007400e4002000610073006500740075006b007300690061 002c0020006b0075006e0020006c0075006f0074002000410064006f0062006500200050004400460020002d00 64006f006b0075006d0065006e007400740065006a00610020006c0061006100640075006b0061007300740061 00200074007900f6007000f60079007400e400740075006c006f0073007400750073007400610020006a006100 20007600650064006f007300740075007300740061002000760061007200740065006e002e00200020004c0075 006f0064007500740020005000440046002d0064006f006b0075006d0065006e00740069007400200076006f00 69006400610061006e0020006100760061007400610020004100630072006f0062006100740069006c006c0061 0020006a0061002000410064006f00620065002000520065006100640065007200200035002e0030003a006c00 6c00610020006a006100200075007500640065006d006d0069006c006c0061002e>

    /SVE <FEFF0041006e007600e4006e00640020006400650020006800e4007200200069006e0073007400e4006c006c 006e0069006e006700610072006e00610020006f006d002000640075002000760069006c006c00200073006b00 6100700061002000410064006f006200650020005000440046002d0064006f006b0075006d0065006e00740020 006600f600720020006b00760061006c00690074006500740073007500740073006b0072006900660074006500 720020007000e5002000760061006e006c00690067006100200073006b0072006900760061007200650020006f 006300680020006600f600720020006b006f007200720065006b007400750072002e002000200053006b006100 700061006400650020005000440046002d0064006f006b0075006d0065006e00740020006b0061006e002000f6 00700070006e00610073002000690020004100630072006f0062006100740020006f0063006800200041006400 6f00620065002000520065006100640065007200200035002e00300020006f00630068002000730065006e0061 00720065002e>

    /TUR <FEFF004d00610073006100fc0073007400fc002000790061007a013100630131006c00610072002000760065 0020006200610073006b01310020006d0061006b0069006e0065006c006500720069006e006400650020006b00 61006c006900740065006c00690020006200610073006b013100200061006d0061006301310079006c00610020 00410064006f006200650020005000440046002000620065006c00670065006c0065007200690020006f006c00 75015f007400750072006d0061006b0020006900e70069006e00200062007500200061007900610072006c0061 007201310020006b0075006c006c0061006e0131006e002e00200020004f006c0075015f007400750072007500 6c0061006e0020005000440046002000620065006c00670065006c0065007200690020004100630072006f0062 00610074002000760065002000410064006f00620065002000520065006100640065007200200035002e003000 200076006500200073006f006e0072006100730131006e00640061006b00690020007300fc007200fc006d006c 00650072006c00650020006100e70131006c006100620069006c00690072002e>

    /UKR <FEFF04120438043a043e0440043804410442043e043204430439044204350020044604560020043f04300440 0430043c043504420440043800200434043b044f0020044104420432043e04400435043d043d044f0020043404 3e043a0443043c0435043d044204560432002000410064006f006200650020005000440046002c0020044f043a 04560020043d04300439043a04400430044904350020043f045604340445043e0434044f0442044c0020043404 3b044f0020043204380441043e043a043e044f043a04560441043d043e0433043e0020043404400443043a0443 0020043d04300020043d0430044104420456043b044c043d043804450020043f04400438043d04420435044004 3004450020044204300020043f04400438044104420440043e044f044500200434043b044f0020043e04420440 0438043c0430043d043d044f0020043f0440043e0431043d0438044500200437043e0431044004300436043504 3d044c002e00200020042104420432043e04400435043d045600200434043e043a0443043c0435043d04420438 00200050004400460020043c043e0436043d04300020043204560434043a044004380442043800200443002000 4100630072006f006200610074002004420430002000410064006f006200650020005200650061006400650072 00200035002e0030002004300431043e0020043f04560437043d04560448043e04570020043204350440044104 560457002e>

  >>

  /DetectBlends true

  /DetectCurves 0

  /DoThumbnails false

  /DownsampleColorImages true

  /DownsampleGrayImages true

  /DownsampleMonoImages true

  /EmbedAllFonts true

  /EmbedJobOptions true

  /EmbedOpenType false

  /EmitDSCWarnings false

  /EncodeColorImages true

  /EncodeGrayImages true

  /EncodeMonoImages true

  /EndPage -1

  /GrayACSImageDict <<

    /HSamples [

      1

      1

      1

      1

    ]

    /QFactor 0.15000

    /VSamples [

      1

      1

      1

      1

    ]

  >>

  /GrayImageAutoFilterStrategy /JPEG

  /GrayImageDepth -1

  /GrayImageDict <<

    /HSamples [

      1

      1

      1

      1

    ]

    /QFactor 0.15000

    /VSamples [

      1

      1

      1

      1

    ]

  >>

  /GrayImageDownsampleThreshold 1.50000

  /GrayImageDownsampleType /Bicubic

  /GrayImageFilter /DCTEncode

  /GrayImageMinDownsampleDepth 2

  /GrayImageMinResolution 300

  /GrayImageMinResolutionPolicy /OK

  /GrayImageResolution 300

  /ImageMemory 1048576

  /JPEG2000ColorACSImageDict <<

    /Quality 30

    /TileHeight 256

    /TileWidth 256

  >>

  /JPEG2000ColorImageDict <<

    /Quality 30

    /TileHeight 256

    /TileWidth 256

  >>

  /JPEG2000GrayACSImageDict <<

    /Quality 30

    /TileHeight 256

    /TileWidth 256

  >>

  /JPEG2000GrayImageDict <<

    /Quality 30

    /TileHeight 256

    /TileWidth 256

  >>

  /LockDistillerParams false

  /MaxSubsetPct 100

  /MonoImageDepth -1

  /MonoImageDict <<

    /K -1

  >>

  /MonoImageDownsampleThreshold 1.50000

  /MonoImageDownsampleType /Bicubic

  /MonoImageFilter /CCITTFaxEncode

  /MonoImageMinResolution 1200

  /MonoImageMinResolutionPolicy /OK

  /MonoImageResolution 1200

  /Namespace [

    (Adobe)

    (Common)

    (1.0)

  ]

  /NeverEmbed [

    true

  ]

  /OPM 1

  /Optimize true

  /OtherNamespaces [

    <<

      /AsReaderSpreads true

      /CropImagesToFrames true

      /ErrorControl /WarnAndContinue

      /FlattenerIgnoreSpreadOverrides false

      /IncludeGuidesGrids false

      /IncludeNonPrinting false

      /IncludeSlug false

      /Namespace [

        (Adobe)

        (InDesign)

        (4.0)

      ]

      /OmitPlacedBitmaps false

      /OmitPlacedEPS false

      /OmitPlacedPDF false

      /SimulateOverprint /Legacy

    >>

    <<

      /AddBleedMarks false

      /AddColorBars false

      /AddCropMarks false

      /AddPageInfo false

      /AddRegMarks false

      /BleedOffset [

        0

        0

        0

        0

      ]

      /ConvertColors /NoConversion

      /DestinationProfileName ()

      /DestinationProfileSelector /NA

      /Downsample16BitImages true

      /FlattenerPreset <<

        /PresetSelector /MediumResolution

      >>

      /FormElements false

      /GenerateStructure true

      /IncludeBookmarks false

      /IncludeHyperlinks false

      /IncludeInteractive false

      /IncludeLayers false

      /IncludeProfiles true

      /MarksOffset 6

      /MarksWeight 0.25000

      /MultimediaHandling /UseObjectSettings

      /Namespace [

        (Adobe)

        (CreativeSuite)

        (2.0)

      ]

      /PDFXOutputIntentProfileSelector /NA

      /PageMarksFile /RomanDefault

      /PreserveEditing true

      /UntaggedCMYKHandling /LeaveUntagged

      /UntaggedRGBHandling /LeaveUntagged

      /UseDocumentBleed false

    >>

    <<

      /AllowImageBreaks true

      /AllowTableBreaks true

      /ExpandPage false

      /HonorBaseURL true

      /HonorRolloverEffect false

      /IgnoreHTMLPageBreaks false

      /IncludeHeaderFooter false

      /MarginOffset [

        0

        0

        0

        0

      ]

      /MetadataAuthor ()

      /MetadataKeywords ()

      /MetadataSubject ()

      /MetadataTitle ()

      /MetricPageSize [

        0

        0

      ]

      /MetricUnit /inch

      /MobileCompatible 0

      /Namespace [

        (Adobe)

        (GoLive)

        (8.0)

      ]

      /OpenZoomToHTMLFontSize false

      /PageOrientation /Portrait

      /RemoveBackground false

      /ShrinkContent true

      /TreatColorsAs /MainMonitorColors

      /UseEmbeddedProfiles false

      /UseHTMLTitleAsMetadata true

    >>

  ]

  /PDFX1aCheck false

  /PDFX3Check false

  /PDFXBleedBoxToTrimBoxOffset [

    0

    0

    0

    0

  ]

  /PDFXCompliantPDFOnly false

  /PDFXNoTrimBoxError true

  /PDFXOutputCondition ()

  /PDFXOutputConditionIdentifier ()

  /PDFXOutputIntentProfile ()

  /PDFXRegistryName ()

  /PDFXSetBleedBoxToMediaBox true

  /PDFXTrapped /False

  /PDFXTrimBoxToMediaBoxOffset [

    0

    0

    0

    0

  ]

  /ParseDSCComments true

  /ParseDSCCommentsForDocInfo true

  /ParseICCProfilesInComments true

  /PassThroughJPEGImages true

  /PreserveCopyPage true

  /PreserveDICMYKValues true

  /PreserveEPSInfo true

  /PreserveFlatness false

  /PreserveHalftoneInfo false

  /PreserveOPIComments false

  /PreserveOverprintSettings true

  /StartPage 1

  /SubsetFonts true

  /TransferFunctionInfo /Apply

  /UCRandBGInfo /Preserve

  /UsePrologue false

  /sRGBProfile (sRGB IEC61966-2.1)

>> setdistillerparams

<<

  /HWResolution [2400 2400]

  /PageSize [612.000 792.000]

>> setpagedevice

Hide cmd windows after running LBS bat file

Hi,

 

Now I am working on a solution of converting indd file to pdf on server side in our product.

Since this process may cost time I choose LBS with job queue, but after running "startup-indesign-server-CORBA-4instances.bat" there four cmd windows will popup to listen to request.

What I want is that can I hide these window after they started? I don't want customers to close this windows for their careless.

I have tried to write a .vbs script to hide the cmd window but failed.

Anyone has an idea?

 

 

Thanks

Darren

Adobe Typekit fonts not found

I have an instance of InDesign Server CC 2014 set up on configuration_noport that happily finds my Adobe Typekit fonts, If I run the Indesign server as a service using the same configuration none of my Typekit fonts are found.  I am running the service as the same user as my Desktop user, and also have tried rebooting the box with no success.

 

Does anyone have any ideas how I can force the service to be able to find the Typekit fonts?

 

Thanks.

 

Leigh Warren

Custom LBQ?

Has anyone here built a custom LBQ vs the one that's included with InDesign Server? I'm installing CS9 on some new servers and LBQ is being quite difficult in running properly. I have no issues with the default LBQ running on CS6 but with CS9? hmm, not so good. So anyways, didn't know if anyone has written a custom LBQ or is everyone using the default one supplied by Adobe?

Viewing all 20709 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>