TIFF Resolution

Dear Sir,
I’m trying to convert DWG file to TIFF but I can’t change the resolution of the text to get the written words appearing clearly, The written text appears pixeled when zooming the image file (tiff)
this is the image
conic_pyramid_layoutstorasterimage_out.zip (186.8 KB)

This is my code :

            string sourceFilePath = @"d:\WS-105.dwg";
            LoadOptions _load = new LoadOptions();
            _load.SpecifiedEncoding = CodePages.Arabic;            
            using (Aspose.CAD.Image image = Aspose.CAD.Image.Load(sourceFilePath, _load))
            {
                CadRasterizationOptions rasterizationOptions = new Aspose.CAD.ImageOptions.CadRasterizationOptions();
                ResolutionSetting oResI = new ResolutionSetting(image.Width * 10, image.Height * 10);                
                rasterizationOptions.BackgroundColor = Aspose.CAD.Color.White;
                rasterizationOptions.PageWidth = image.Width * 10;
                rasterizationOptions.PageHeight = image.Height * 10;
                rasterizationOptions.GraphicsOptions.SmoothingMode = SmoothingMode.HighQuality;
                rasterizationOptions.BackgroundColor = Aspose.CAD.Color.WhiteSmoke;
                rasterizationOptions.DrawColor = Aspose.CAD.Color.Black;
                rasterizationOptions.DrawType = Aspose.CAD.FileFormats.Cad.CadDrawTypeMode.UseDrawColor;                
                rasterizationOptions.UnitType = Aspose.CAD.ImageOptions.UnitType.Centimenter;
                rasterizationOptions.Layouts = new string[] { "Layout1" };                
                TiffOptions tiffOptions = new TiffOptions(TiffExpectedFormat.TiffNoCompressionRgb);
                tiffOptions.ResolutionSettings = oResI;
                tiffOptions.VectorRasterizationOptions = rasterizationOptions;                
                ImageOptionsBase options = new TiffOptions(tiffOptions);                
                image.Save(MyDir + "conic_pyramid_layoutstorasterimage_out.tiff", options);
                
            }

@asoliman84,

I have observed your comments. Can you please share source file so that we may proceed further to help you out. Also please share environment details along with version of Aspose.CAD.

This is the Autocad file
A-001.zip (50.9 KB)
How can i get the second layout only to convert
i tried
rasterizationOptions.Layouts = new string[] { "A-001" };
but the TIFF file got the both layouts, the second one is too small.

@asoliman84,

I have observed the second DWG file shared by you. Can you please share the desried ouput TIFF image that you are getting using Aspose.CAD and also TIFF image that you want to generate. Please also provide the used sample code for second DWG file as well.