DWGtoSVG conversion issue

Using this code in AWS serverless application with API template:

 public static byte[] ConvertDWGtoSVG2(MemoryStream file)
    {
         byte[] buffer;
         using (Converter converter = new Converter(()=>file))
        {
            var options = new PageDescriptionLanguageConvertOptions
            {
                Format = PageDescriptionLanguageFileType.Svg
            };
             using (MemoryStream nn = new MemoryStream())
            {
                nn.Position = 0;
                converter.Convert(() => nn, options);
                buffer= nn.ToArray();
            }
        }
        return buffer;
    }

As a result I get an error:
GroupDocs.Conversion.Exceptions.GroupDocsConversionException: Image export failed.
at d.()
at DWGConverterAWS.Extensions.ConverterExtensions.ConvertDWGtoSVG2(MemoryStream file) in C:\Users\3213897\source\repos\DWGConverterAWS\DWGConverterAWS\Extensions\ConverterExtensions.cs:line 86
at DWGConverterAWS.Controllers.ConverterController.OnPostUploadAsync(IFormFile file) in C:\Users\3213897\source\repos\DWGConverterAWS\DWGConverterAWS\Controllers\ConverterController.cs:line 40
at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker)
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker)
at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)
at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context)

** File sent by Postman. Also this code locally works. I mean console application

@yurec1

Could you please share the source file? Also specify the API version that you are using (e.g. 20.10, 23.1).

API version 23.2.0
Do you mean DWG file ?Layout B2.7z (910.4 KB)

@yurec1
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): CONVERSIONNET-5863

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.