C#
VB
C++
Provides the functionality to write the contents of a folder or existing .ISO file to another .ISO file or DVD disc.
public class MediaWriter : IDisposable Public Class MediaWriterImplements System.IDisposable
public ref class MediaWriter : public System.IDisposable This class provides the functionality to write data DVD discs and .ISO files.
using Leadtools;using Leadtools.Codecs;using Leadtools.MediaWriter;public void BurnDiscExample(){try{MediaWriter writer = new MediaWriter();List<MediaWriterDrive> drives = writer.Drives;MediaWriterDrive drive = drives[1];MediaWriterDisc disc = drive.CreateDisc();disc.VolumeName = "TEST DISC";disc.SourcePathName = Path.Combine(LEAD_VARS.ImagesDir, "InputFiles");drive.AutoEject = true;drive.OnProgress += BurnProgress;drive.LoadDisc();// BurnDisc startsdrive.BurnDisc(disc);// wait loop for demonstration purposeswhile (drive.State != MediaWriterState.StateIdle){System.Windows.Forms.Application.DoEvents();System.Threading.Thread.Sleep(10);}drive.OnProgress -= BurnProgress;}catch (Exception ex){MessageBox.Show("Test Failed: " + ex.Message);}}public void BurnProgress(Object sender, EventArgs evt){System.Diagnostics.Debug.WriteLine(evt.ToString());}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.MediaWriter<Test>Public Sub BurnDiscExample()TryDim writer As MediaWriter = New MediaWriter()Dim drives As List(Of MediaWriterDrive) = writer.DrivesDim drive As MediaWriterDrive = drives(1)Dim disc As MediaWriterDisc = drive.CreateDisc()disc.VolumeName = "TEST DISC"disc.SourcePathName = Path.Combine(LEAD_VARS.ImagesDir, "InputFiles")drive.AutoEject = TrueAddHandler drive.OnProgress, AddressOf BurnProgressdrive.LoadDisc()drive.BurnDisc(disc)' wait loop for demonstration purposesDo While drive.State <> MediaWriterState.StateIdleSystem.Windows.Forms.Application.DoEvents()System.Threading.Thread.Sleep(10)LoopRemoveHandler drive.OnProgress, AddressOf BurnProgressCatch ex As ExceptionAssert.Fail("Test Failed: " & ex.Message)End TryEnd SubPublic Sub BurnProgress(ByVal sender As Object, ByVal evt As MediaWriterProgressEventArgs)System.Diagnostics.Debug.WriteLine(evt.ToString())End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
