web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)

File Size Reduction Through Code

(0) ShareShare
ReportReport
Posted on by

Hy everyone,
       

Is there any code or library in X++ or C# which can reduce the size of SSRS report while generating PDF file through it?

Thank you   

*This post is locked for comments

I have the same question (0)
  • Sukrut Parab Profile Picture
    71,710 Moderator on at

    If you search web using keywords like "reduce the file size through c# code"  you will get plenty of results . I am not aware of any way through x++  but try searching c# code which might help you.

  • Blue Wang Profile Picture
    on at

    Hi Rashid,

    Use iText to split and merge PDF.

    Document doc = new Document(PageSize.A4, 50, 50, 25, 25);

    pdfWriter writer = PdfWriter.GetInstance(doc, ms);

    PdfContentByte contentPlacer;

    writer.SetPdfVersion(PdfWriter.PDF_VERSION_1_5);

    writer.CompressionLevel = PdfStream.BEST_COMPRESSION;

     

    string pdfFile = @"D:\Test.pdf";

    PdfReader reader = new PdfReader(pdfFile);

    PdfStamper stamper = new PdfStamper(reader, new FileStream(@"D:\Test1.pdf", FileMode.Create), PdfWriter.VERSION_1_5);

    stamper.FormFlattening = true;

    stamper.SetFullCompression();

    stamper.Close();

    I hope it will help you.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Martin Dráb Profile Picture

Martin Dráb 4 Most Valuable Professional

#1
Priya_K Profile Picture

Priya_K 4

#3
MyDynamicsNAV Profile Picture

MyDynamicsNAV 2

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans