Coder Social home page Coder Social logo

Comments (7)

VahidN avatar VahidN commented on June 8, 2024 1

Yes. It's based on the iTextSharp 4.x, not 5.x and has a different design and license.
PdfTextExtractor exists in v5.0.2+ with AGPL license.

from itextsharp.lgplv2.core.

VahidN avatar VahidN commented on June 8, 2024 1

Added Detect_Blank_Pages_In_Pdf sample.

from itextsharp.lgplv2.core.

pMonfared avatar pMonfared commented on June 8, 2024

How can detect blank page in PDF with this version?

from itextsharp.lgplv2.core.

pMonfared avatar pMonfared commented on June 8, 2024

Detect Blank Page maybe use font and don't use text?
how can detect page like that?

from itextsharp.lgplv2.core.

pMonfared avatar pMonfared commented on June 8, 2024

i use below to detect blank page but don't work with (page with use font but don't use text)
(i need make a new PDF without blank page by current PDF)

private static void RemoveBlankPdfPages(string pdfSourceFile)
        {
            
                var pdfReader = new PdfReader(pdfSourceFile);
                var raf = new RandomAccessFileOrArray(pdfSourceFile);

                var document = new Document(pdfReader.GetPageSizeWithRotation(1));
                var ss = new FileStream(pdfSourceFile.Replace(".pdf", "[temp][file].pdf"), FileMode.Create, FileAccess.Write, FileShare.ReadWrite);
                var writer = new PdfCopy(document, ss);
                document.Open();
                const int blankThreshold = 20;
                for (var i = 1; i <= pdfReader.NumberOfPages; i++)
                {
                    using (var bs = new MemoryStream())
                    {

                        var pageDict = pdfReader.GetPageN(i);
                        var resDict = (PdfDictionary)pageDict.Get(PdfName.Resources);
                        var detectBlank = false;

                        var hasFont = resDict.Get(PdfName.Font) != null;
                        if (hasFont)
                        {
                            Console.WriteLine($"Page {i} has font(s).");
                            detectBlank = false;
                        }
                        else
                        {
                            var hasImage = resDict.Get(PdfName.Xobject) != null;
                            if (hasImage)
                            {
                                Console.WriteLine($"Page {i} has image(s).");
                                detectBlank = false;
                            }
                            else
                            {
                                detectBlank = true;
                            }
                        }



                        var bContent = pdfReader.GetPageContent(i, raf);
                        if (bContent.Length <= blankThreshold)
                        {
                            Console.WriteLine($"Page {i} is blank");
                            detectBlank = true;
                        }

                        if (detectBlank) continue;

                        bs.Write(bContent, 0, bContent.Length);
                        var page = writer.GetImportedPage(pdfReader, i);
                        writer.AddPage(page);

                    }

                }
                document.Close();
                ss.Dispose();
                writer.Close();

                raf.Close();
                pdfReader.Close();


            lock (Lock)
            {
                File.Delete(pdfSourceFile);
                File.Move(pdfSourceFile.Replace(".pdf", "[temp][file].pdf"), pdfSourceFile);
            }
        }

from itextsharp.lgplv2.core.

VahidN avatar VahidN commented on June 8, 2024

You should adjust the blankThreshold value.

from itextsharp.lgplv2.core.

lock avatar lock commented on June 8, 2024

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related problems.

from itextsharp.lgplv2.core.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.