←Select platform

SetResourceDirectory Method

Summary
Sets the path for the specified LEADTOOLS resource directory.
Syntax
C#
C++/CLI
Java
Python
public static void SetResourceDirectory( 
   LEADResourceDirectory resource, 
   string directory 
) 
public static void setResourceDirectory(LEADResourceDirectory resource, String directory) 
public: 
static void SetResourceDirectory(  
   LEADResourceDirectory resource, 
   String^ directory 
)  
def SetResourceDirectory(self,resource,directory): 

Parameters

resource
The resource directory to set.

directory
The path for the specified LEADTOOLS resource directory.

Remarks

Some LEADTOOLS classes will use a common resource directory at runtime. Use SetResourceDirectory to set the path to the desired resource directory.

Refer to LEADTOOLS Drawing Engine and Multi-Platform Consideration for more information on shadow font usage.

Example
C#
Java
using Leadtools; 
using Leadtools.Codecs; 
 
 
private void RasterDefaultsSetResourceDirectoryExample() 
{ 
	// Set the Fonts Resource folder 
	RasterDefaults.SetResourceDirectory(LEADResourceDirectory.Fonts, @"SomeCommonFontsFolder"); 
} 
 
import java.io.File; 
import java.io.IOException; 
import java.nio.file.Files; 
import java.nio.file.Path; 
import java.nio.file.Paths; 
 
import org.junit.*; 
import org.junit.Test; 
import org.junit.runner.JUnitCore; 
import org.junit.runner.Result; 
import org.junit.runner.notification.Failure; 
import static org.junit.Assert.*; 
 
import leadtools.*; 
import leadtools.codecs.*; 
 
 
public void RasterDefaultsSetResourceDirectoryExample() { 
   // Set the Fonts Resource folder 
   RasterDefaults.setResourceDirectory(LEADResourceDirectory.FONTS, 
         "C:\\Users\\Username\\AppData\\Local\\Microsoft\\Windows\\Fonts"); 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.