Posted: 2006-03-21T08:50:53-07:00
AcquireSemaphore() is light-weight. There is a fair bit of overhead when starting ImageMagick so if you have a short quick task the start-up costs are high. The start-up cost becomes negligible for longer running tasks.
You can initalize any of the ImageMagick lists before threading is enabled by calling the Get????Info("*",exception) method for the list. For example, to preload the type configuration list, call
You can initalize any of the ImageMagick lists before threading is enabled by calling the Get????Info("*",exception) method for the list. For example, to preload the type configuration list, call
- GetTypeInfo("*",exception);