public void Dispose()
public:
void Dispose();
def Dispose(self):
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Color;
using Leadtools.Svg;
public void RasterCodecsExample()
{
RasterCodecs codecs = new RasterCodecs();
Console.WriteLine(codecs.Options);
string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1.cmp");
string dstFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1_test.jpg");
RasterImage image = codecs.Load(srcFileName);
codecs.Save(image, dstFileName, RasterImageFormat.Jpeg, 0);
// Finalize cannot be called directly, it is invoked automatically.
// To clean up before exiting, use Dispose
image.Dispose();
codecs.Dispose();
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images";
}
import java.io.*;
import java.net.*;
import java.nio.file.Paths;
import java.util.*;
import java.time.Instant;
import java.time.Duration;
import org.junit.*;
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.*;
import leadtools.codecs.RasterCodecs.FeedCallbackThunk;
import leadtools.drawing.internal.*;
import leadtools.imageprocessing.*;
import leadtools.imageprocessing.color.ChangeIntensityCommand;
import leadtools.svg.*;
public void rasterCodecsExample() {
final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images";
RasterCodecs codecs = new RasterCodecs();
System.out.println(codecs.getOptions());
String srcFileName = combine(LEAD_VARS_IMAGES_DIR, "Image1.cmp");
String dstFileName = combine(LEAD_VARS_IMAGES_DIR, "Image1_test.jpg");
RasterImage image = codecs.load(srcFileName);
codecs.save(image, dstFileName, RasterImageFormat.JPEG, 0);
assertTrue("File unsuccessfully saved", (new File(dstFileName)).exists());
System.out.println("File successfully saved to " + dstFileName);
// Finalize cannot be called directly, it is invoked automatically.
// To clean up before exiting, use Dispose
image.dispose();
codecs.dispose();
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document