Giter Site home page Giter Site logo

Comments (2)

jsvine avatar jsvine commented on September 2, 2024

Hi @suyogchadawar! Regarding your questions:

i couldn't find anything to write a cropped pdf document to another pdf. How can I write cropped pdf to new document?

pdfplumber only reads and extracts information from PDFs, but (currently) does not write them. If you're just looking to write cropped PDFs, you may have more luck with CPDF or other similar tools: http://community.coherentpdf.com/

is scale for CropBox or crop same as that of doctop,x0,bottom of a char extracted from pdf (i.e. ".char" of pdfplumber.Page class)?

I don't quite understand this question. Could you restate it, or provide an example?

from pdfplumber.

amine-aboufirass avatar amine-aboufirass commented on September 2, 2024

@suyogchadawar Are there any future plans to add this sort of functionality to pdfplumber? It would be extremely useful.

I had a look at CPDF, but what I'm trying to achieve is not only crop the pdf but also the underlying text content. For instance, suppose my pdf contains the text "Hello world" (pseudocode):

import pdfplumber
from decimal import Decimal

crop_ratio = Decimal(0.5)
source_file = 'file_containing_hello_world.pdf'
with pdfplumber.open(source_file) as pdf:
    page = pdf.pages[0]
    # print(page.extract_text()) => "Hello world"
    x0, top, x1, bottom = page.bbox
    height = top-bottom
    bottom = top-crop_ratio*height
    cropped_page = page.within_bbox((x0, top, x1, bottom))

Now suppose I would like to write this cropped page to a called file_containing_only_hello.pdf. Reading this new file would go like this:

import PyPDF2
from decimal import Decimal

source_file = 'file_containing_only_hello.pdf'
with pdfplumber.open(source_file) as pdf:
    page = pdf.pages[0]

print(page.extract_text()) # => "Hello"

Can I do the above with cpdf? Or is that not possible at this time?

from pdfplumber.

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.