Turning a Pdf back to a scanned file in a single operation

One of the most frequent tasks I perform in Adobe includes scanning & inserting signature image(s) in a document then turning it back into an image only file before sending it as an attachment to an email. Sometimes but not always they are forms or I need to add comments or other small alterations. Therefore since I think there must lots of other people who would need to do the same there might be batch operation already setup for that.
So my question is, isn't there?
If not what is the best way of setting one up so that the result will be as good as the initial scanned image.
What I do at the moment is save the file as series of jpeg files and then recombine them into a single file. But the result is blurry even at the same resolution as the scanning resolution or even when the transition is supposed to be lossless.
I have seen other questions here about flattening a file but they are not quite the same and I know that an alternative is to use protection but once protection and encryption come into the equation then the recipients often seem to have difficulties opening them depending on the kind of readers they use. I suppose a multi-page image format would be another way but that has its own problems when a scanned pdf seem to be the best format even though there are hardly any PDF tags in there.
Thanks

Use an Acrobat Action to do this process.

Similar Messages

  • Can I convert a PDF back into a PUB file?

    Can I convert a PDF back into a PUB file?

    Use Acrobat XI (Pro or Standard) to export the PDF to Word.
    Use Calibre to bring the Word file into ePub.
    Be well...

  • Am trying to convert jpeg file to pdf. When I scan file it comes up in jpeg.?

    When scanning doc it comes up as jpeg. How do I convert to PDF?

    Adobe Reader does not do this conversion. Adobe Acrobat can convert JPEG to PDF or (much better) scan direct to PDF. Perhaps your scanner already comes with software that makes PDF files - some do, but unless that software is Acrobat it's not really our field.

  • Is it possible to export all information (metadata, list of pictures within each album or project) about ALL pictures in Aperture to text files, in a single operation?

    I have downloaded a trial version of Aperture because I would like to switch from using Picasa and gimp to using Aperture.  I already know that I want to use Aperture, and that I cannot learn how in 30 days.  I want to use the 30 days to see if I can solve a different problem: bulk export of all information except edits and versions from Aperture.
    I want to avoid locking information (other than than the edits and version information that Aperture maintains) about my photos into any one piece of software.
    Picasa stores a copy of almost all its information in text filies (mostly XML or .ini format) that are scattered through its picture library.  These files can be scanned and found by use of Mac OS X tools that are availabe in Terminal (at the bash command line).  All of the information about albums, faces, etc can be exported by a single command (after wtiting the progams that the command will initiate.  I have not yest found any similar files in Aperture.
    Aperture supports the export of EXIF and IPTC metadata, but only for selected photos, and does not appear to support the export of other information at all.
    What I would like to do with a single operation, from either Aperture or Terminal, is to export the entire arrangement of phost ins albums and projects, lists of albums, projects and phots with all metadata (including added keywords) attached to each, and for referenced photos, the external file name.  I do not care if would be in one file or many different text files, because Mac OS X provides all the tools I would need to extract the information I would want from any number of text files.
    This would allow me to reconstruct all of the information about my photos (except for edits and versions) outside Aperture, and to use that info in a database outside Aperture.  I would then be able to use Aperture while still being able to do everything that I could do with Picasa.
    The most helpful form of an answer to this question might be a list of places to look in the Apple support and Apple developer documentation.  It is difficult to teach me anything complicated, but I am fairly good at figuring out things from documentation.

    The following script recursively lists the content of an Aperture library.  The output is simple, for demonstration puposes, but could be modified to XML.  If the XML were that of a PLIST, the Apple Property List viewer oculd be used to diaplsy the output.
    A simlar script produces all of the keywords and tags for all of the images in Aperture.
    The scripts run much faster in the shell than in the AppleScript Editor bcause the shwll produces no debugging or monitoring information.
    #!/usr/bin/env osascript
    (*    Demo: list the containment hierarchy in Aperture, starting from libraries.
        Runs from AppleScript Editor, or as a shell command
        References:
            Aperture 3 AppleScript Reference Manual,
                particularly the Containment Diagram in Appendix A
                from the link on "Aperture Resources" web page at http://images.apple.com/aperture/resources/
            Aperture AppleScript Dictionary, accessed from AppleScript Editor
        Ian E. Gorman
    global outputFile
    set outputFilePath to "/Users/ian/prj/sw/AppleScript/ApertureContainment.txt"
    global lineEnd
    set lineEnd to "
    global tabChar
    set tabChar to "    "
    on writeText(str)
        write str to outputFile
    end writeText
    # Open the file, guarantee closure after any error, and list the contents of Aperture libraries
    try
        set outputFile to open for access POSIX file outputFilePath with write permission
        set eof outputFile to 0 # truncate the file, if it already exists
        my listAll()
        close access outputFile
    on error errorMsg number errNum from offendingObj partial result resutList to expectedType
        try
            display alert "Operation failed, attempting to close output file" & lineEnd & "Error number " & errNum & ": " & errorMsg
            close access outputFile
            display alert "Operation failed, but output file has been closed"
        on error
            display alert "Operation failed, also failed to close output file"
        end try
    end try
    # top-level in Aperture
    on listAll()
        tell application "Aperture"
            repeat with eachLibrary in libraries
                my listLibrary(0, eachLibrary)
            end repeat
        end tell
    end listAll
    on listLibrary(level, thisLibrary)
        local newLevel
        set newLevel to 1 + (level as integer)
        tell application "Aperture"
            my writeText((newLevel as rich text) & tabChar & "library" & tabChar & (name of thisLibrary) & lineEnd)
            repeat with eachAlbum in albums of thisLibrary
                my listAlbum(newLevel, eachAlbum)
            end repeat
            repeat with eachFolder in folders of thisLibrary
                my listFolder(newLevel, eachFolder)
            end repeat
            repeat with eachProject in projects of thisLibrary
                my listProject(newLevel, eachProject)
            end repeat
            repeat with eachImageVersion in image versions of thisLibrary
                my listImageVersion(newLevel, eachImageVersion)
            end repeat
        end tell
    end listLibrary
    on listAlbum(level, thisAlbum)
        local newLevel
        set newLevel to 1 + (level as integer)
        tell application "Aperture"
            my writeText((newLevel as rich text) & tabChar & "album" & tabChar & (name of thisAlbum) & lineEnd)
            repeat with eachImageVersion in image versions of thisAlbum
                my listImageVersion(newLevel, eachImageVersion)
            end repeat
        end tell
    end listAlbum
    on listFolder(level, thisFolder)
        local newLevel
        set newLevel to 1 + (level as integer)
        tell application "Aperture"
            my writeText((newLevel as rich text) & tabChar & "folder" & tabChar & (name of thisFolder) & lineEnd)
            repeat with eachAlbum in albums of thisFolder
                my listAlbum(newLevel, eachAlbum)
            end repeat
            repeat with eachFolder in folders of thisFolder
                my listFolder(newLevel, eachFolder)
            end repeat
            repeat with eachProject in projects of thisFolder
                my listProject(newLevel, eachProject)
            end repeat
            repeat with eachImageVersion in image versions of thisFolder
                my listImageVersion(newLevel, eachImageVersion)
            end repeat
        end tell
    end listFolder
    on listProject(level, thisProject)
        local newLevel
        set newLevel to 1 + (level as integer)
        tell application "Aperture"
            my writeText((newLevel as rich text) & tabChar & "project" & tabChar & (name of thisProject) & lineEnd)
            repeat with eachAlbum in albums of thisProject
                my listAlbum(newLevel, eachAlbum)
            end repeat
            repeat with eachSubfolder in subfolders of thisProject
                my listSubfolder(newLevel, eachSubfolder)
            end repeat
            repeat with eachImageVersion in image versions of thisProject
                my listImageVersion(newLevel, eachImageVersion)
            end repeat
        end tell
    end listProject
    on listSubfolder(level, thisSubfolder)
        local newLevel
        set newLevel to 1 + (level as integer)
        tell application "Aperture"
            my writeText((newLevel as rich text) & tabChar & "subfolder" & tabChar & (name of thisSubfolder) & lineEnd)
            repeat with eachAlbum in albums of thisSubfolder
                my listAlbum(newLevel, eachAlbum)
            end repeat
            repeat with eachSubfolder in subfolders of thisSubfolder
                my listSubfolder(newLevel, eachSubfolder)
            end repeat
            repeat with eachImageVersion in image versions of thisSubfolder
                my listImageVersion(newLevel, eachImageVersion)
            end repeat
        end tell
    end listSubfolder
    on listImageVersion(level, thisImageVersion)
        local newLevel
        set newLevel to 1 + (level as integer)
        tell application "Aperture"
            my writeText((newLevel as rich text) & tabChar & "image version" & tabChar & (name of thisImageVersion) & lineEnd)
        end tell
    end listImageVersion

  • How do i convert a pdf back to a word file using the free trial, it appears not to be working ..

    how do i convert from pdf to word using the trial package

    Hi paddyg73,
    Open the pdf in Acrobat and then go to 'File> Save As Other> Microsoft Word Document'
    Regards,
    Rave

  • How to turn a pdf file into excel document and keep original format

    I Have an excel bid form that i use all the time ,then i convert it into a PDF  And once in a while i need to add something to it  I paid for acrobat but when i try to turn the PDF back into an excel document the format is changed , the columns are in the wrong places And it does not look at all like the original excell form is there any thing i can do to  fix this If not this will be useless to me  any help appreciated

    A PDF does not contain any spreadsheet, word processing or page layout file format information.
    No "format", columns, rows, etc.
    "When you create a PDF, you’re painting a picture. Your paintbrush is the is the result of a combination of the software used to create the source document and the software you’ve chosen to convert your source document into the universal electronic document format we all know as PDF.
    Like the painter’s brushstrokes, each character, each line and each image is fundamentally independent, but they can interact with each other to produce particular visual effects. On the PDF page, objects are connected by a coordinate system and not a lot else. There’s no logical, semantic connection between the letters comprising a word; characters simply happen at a series of locations on the rendered page.
    As originally designed, PDF is fundamentally a system for painting objects onto a page, plus a whole lot of other features we aren’t talking about right now! There’s no innate concept of words, sentences, paragraphs, columns, headings, images, tables, lists, footnotes – any of the semantic structures that distinguish a “document” from a meaningless heap of letters, shapes and colors. PDF is fundamentally about how the document appears on the page, not how it looks when abstracted from the page."
    Duff Johnson, Each PDF Page Is a Painting
    http://talkingpdf.org/each-pdf-page-is-a-painting/ 
    Be well...

  • How can I send scanned files, which are documents changed from doc to PDF, as documents that can be edited if the recipient doesn't have Adobe capabilities?

    How can I send scanned files, which are documents changed from doc to PDF, as documents that can be edited if the recipient doesn't have Adobe capabilities?

    Hi flaviusjack,
    If you still have the .doc files, it might be best to send those to your recipients so they can be edited. Otherwise, you can use ExportPDF to convert the PDF files back to .doc format. But, again, that step would be unnecessary if you have the .doc files.
    Best,
    Sara

  • Avoid "save scanned file as" during scan to pdf?

    i want to scan to pdf but don't want to have to save it if i am just printing to fax.
    thanks,
    scott

    I have the same issue. We just upgraded a lot of our users from Adobe Acrobat Std 7 to Adobe Acrobat Std 8. With ver 7, when doing a 'Create a PDF From Scanner', the document gets scanned first then the 'Save Scanned File As' dialog box comes up. Now, the dialog box comes up even before the document gets scanned. If you hit the CANCEL button, it would not let you do anything. This is causing a lot of problems for our users because our Adobe Acrobat is integrated with a Document Management software we do not need this additional step. Is there a way to turn off this feature?

  • I exported an indesign file as a pdf saved to my desktop, now all indesign files on desktop are turned to pdf. HELP PLEASE

    I exported an indesign file as a pdf saved to my desktop, now all indesign files on desktop are turned to pdf. HELP PLEASE

    If you are using Mac, press Apple + I to get the information. It show a table. There is a section call Open with. Change the file with pdf icon to open with indesign. If using PC, just click on the second button on the mouse and open with Indesign.

  • How do yo turn a pdf file into reader so i can edit the form?

    how do yo turn a pdf file into reader so i can edit the form?

    I have no idea what you are trying to say; your are trying to open a PDF with Reader?

  • CONVERT SCANNED FILE TO PDF AND SEND TO EMAIL!

    I got many files that were scanned in (110) to be exact.  I need to know how to convert the scanned files to pdf and then send them to an email.  Thanks      Marie

    What is the format (file type) of these scanned docs?

  • I can't export a PDF scanned file into WORD, help please.

    I can't export a PDF scanned file into Word, please help.

    Hi solarpowerprincess,
    Are you having trouble signing in to your subscription, or having trouble converting files once you're signed in. If you can't sign in, it could be that your subscription just hasn't finished processing yet. Please let us know if you're unable to sign in and we'll go from there.
    Best,
    Sara

  • HOW TO SAVE A SCANNED FILE IN PDF FORMAT

    I HAVE A HP LASER JET M1005MFP PRINTER...
    HOW CAN I SAVE A SCANNED FILE IN PDF FORMAT..???
    PLEASE HELP AS SOON AS POSSIBLE AS IT IS URGENT.

    To get your issue more exposure I would suggest posting it in the commercial forums since the LaserJet M1005 is a commercial product. You can do this at Commercial Forums.
    I hope this helps!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Turning my PDF file into a Template

    Hey guys, just wondering how to turn my PDF file into a template, the PDF is a fillable form, with fields and scripts, is it possible to turn this into a template so when i click on it, it opens up a copy of the original file so we can fill it out and save it somewhere else and keep the original file where it was and un-filled (template)?
    If i have to do this on LiveCycle or another program, let me know.
    Thank you.

    Thanks for replying, but i need my Technicians to be able to fill out the form, sign it, and save it, and still have the original document sitting there for next time we need to fill it out. The document needs to stay PDF.

  • Old Illustrator file, revised to new, saved to pdf, reverting back to old Illustrator file

    After making a new Illustrator file from an old one, then saving it as a pdf, the new Illustrator file reverts back to old one. I have been using the pdf to make the Illustrator file again (luckily I've saved it as editable) but I don't always want to add this extra procedure. Does anyone have this issue or any clues on how this happens and how to fix the problem?

    when you made your changes and then saved as, you saved your changes to a new file. your original file closes without saving and the open file in illustrator is the new one (in your case the PDF).
    evertime you save as you are making a new file without affecting the old file.
    you should first save your changes and then save as. but after the save as, the opened file will no longer be the original file.
    if you do a Save As Copy. then you will be saving a new file which will be closed and your original file will remain open.

Maybe you are looking for