Multi-page images?

Post Author: martorell
CA Forum: General
Hi!I try to insert a multipage image (tiff) and CR only shows the first image of file. Is possible show all tiff images? Thanks!!

Crystal Reports will only be able to retrieve the image and display the first page of the image for each record since there is no functionality to either scroll through pages, to show more than one page of the image for each record or to split the binary data into separate fields each containing a single page of the image.
One option to workaround this behavior would be to only store images with a single page and if multi-page images are used, break them into single image records and associate them to the corresponding data through database table linking. This way, it would be possible to group on one field and see all of the  associated to that value.
Example:
(Group) LocationA
(record 1) - PicturePage 1
(record 2) - Picture Page2

Similar Messages

  • JAI - problem displaying additional pages from multi-page image

    Hi,
    I have 10 page multipage tiff images. And i would like to show the images one-by-one on a ScrollingImagePanel.
    I have a Main frame with two panels. Panel1 which shows the ScrollingImagePanel.
    And Panel2 has two buttons. LOAD Button show the 1st page on the ScrollingImagePanel.
    And NEXT button is suppose to show the 2nd page and continue until the end of the multipage images.
    I am having problem with the NEXT button. I wrote a program that show the page number and page height
    on the output screen. It shows the page# and different heights. But it would not show the images on the ScrollingImagePanel.
    It just shows the 1st page. I would appreciate if you can help me out with this problom.
    Please find the code which is written in JBuilder.
    // Main class
    package untitled1;
    import java.awt.*;
    import javax.swing.UIManager;
    import java.awt.*;
    import java.io.File;
    import java.io.IOException;
    import java.awt.Frame;
    import java.awt.image.RenderedImage;
    import javax.media.jai.widget.ScrollingImagePanel;
    import javax.media.jai.NullOpImage;
    import javax.media.jai.OpImage;
    import com.sun.media.jai.codec.SeekableStream;
    import com.sun.media.jai.codec.FileSeekableStream;
    import com.sun.media.jai.codec.TIFFDecodeParam;
    import com.sun.media.jai.codec.ImageDecoder;
    import com.sun.media.jai.codec.ImageCodec;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.awt.event.*;
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2002</p>
    * <p>Company: </p>
    * @author unascribed
    * @version 1.0
    public class Application1 {
    boolean packFrame = false;
    //Construct the application
    public Application1() {
    Frame2 frame = new Frame2();
    frame.setSize(820,700);
    //Validate frames that have preset sizes
    //Pack frames that have useful preferred size info, e.g. from their layout
    if (packFrame) {
    frame.pack();
    else {
    frame.validate();
    //Center the window
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    Dimension frameSize = frame.getSize();
    if (frameSize.height > screenSize.height) {
    frameSize.height = screenSize.height;
    if (frameSize.width > screenSize.width) {
    frameSize.width = screenSize.width;
    frame.setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
    frame.setVisible(true);
    //Main method
    public static void main(String[] args) {
    new Application1();
    // Frame2 Class
    package untitled1;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.UIManager;
    import java.io.File;
    import java.io.IOException;
    import java.awt.Frame;
    import java.awt.image.RenderedImage;
    import javax.media.jai.widget.ScrollingImagePanel;
    import javax.media.jai.NullOpImage;
    import javax.media.jai.OpImage;
    import com.sun.media.jai.codec.SeekableStream;
    import com.sun.media.jai.codec.FileSeekableStream;
    import com.sun.media.jai.codec.TIFFDecodeParam;
    import com.sun.media.jai.codec.ImageDecoder;
    import com.sun.media.jai.codec.ImageCodec;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.awt.event.*;
    import java.awt.image.renderable.ParameterBlock;
    import javax.media.jai.*;
    import javax.media.jai.widget.*;
    import com.sun.media.jai.codec.*;
    import java.util.*;
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2002</p>
    * <p>Company: </p>
    * @author unascribed
    * @version 1.0
    public class Frame2 extends Frame {
    JPanel jPanel1 = new JPanel();
    JPanel jPanel2 = new JPanel();
    JButton loadButton = new JButton();
    public static ScrollingImagePanel panel, panels;
    JButton nextButton = new JButton();
    public String filename= "144.tif";
    public File file;
    public SeekableStream s;
    public ImageDecoder dec;
    protected int imageWidth, imageHeight;
    public int nextpage = 1;
    public RenderedOp image2 = null;
    public RenderedImage op = null;
    //Frame Constructor
    public Frame2() {
    try {
    jbInit();
    catch(IOException e) {
    e.printStackTrace();
    private void jbInit() throws IOException {
    this.setLayout(null);
    this.addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    this_windowClosing(e);
    jPanel1.setBackground(Color.white);
    jPanel1.setBorder(BorderFactory.createLineBorder(Color.black));
    jPanel1.setBounds(new Rectangle(1, 7, 816, 648));
    jPanel1.setLayout(null);
    jPanel2.setBackground(Color.lightGray);
    jPanel2.setBorder(BorderFactory.createLineBorder(Color.black));
    jPanel2.setBounds(new Rectangle(1, 657, 816, 42));
    loadButton.setText("Load");
    loadButton.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    try{                          
    loadButton_actionPerformed(e);
    catch(IOException IOE){
    System.out.println(IOE);
    nextButton.setText("Next");
    nextButton.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    try {
    nextButton_actionPerformed(e);
    catch(IOException IOE){
    System.out.println(IOE);
    this.setResizable(false);
    this.add(jPanel1, null);
    this.add(jPanel2, null);
    jPanel2.add(loadButton, null);
    jPanel2.add(nextButton, null);
    void this_windowClosing(WindowEvent e) {
    System.exit(0);
    //Load Image Button
    void loadButton_actionPerformed(ActionEvent e) throws IOException { 
    file = new File(filename);
    s = new FileSeekableStream(file);
    dec = ImageCodec.createImageDecoder("tiff", s, null);
    RenderedImage op =
    new NullOpImage(dec.decodeAsRenderedImage(),
    null,
    OpImage.OP_IO_BOUND,
    null);
    Interpolation interp = Interpolation.getInstance(Interpolation.INTERP_BILINEAR);
    ParameterBlock params = new ParameterBlock();
    params.addSource(op);
    params.add(0.55F); // x scale factor
    params.add(0.335F); // y scale factor
    params.add(0.00F); // x translate
    params.add(0.00F); // y translate
    params.add(interp); // interpolation method
    image2 = JAI.create("scale", params);
    int width = (int)(image2.getWidth() * .73);
    int height = (int)(image2.getHeight() * .73);
    panel = new ScrollingImagePanel(image2, 819, 648);
    jPanel1.add(panel);
    this.setVisible(true);
    //Next Image Button
    void nextButton_actionPerformed(ActionEvent e) throws IOException {
    TIFFDecodeParam param = null;
    file = new File(filename);
    s = new FileSeekableStream(file);
    dec = ImageCodec.createImageDecoder("tiff", s, param);
    nextpage++;
    System.out.println(nextpage);
    RenderedImage op1 =
    new NullOpImage(dec.decodeAsRenderedImage(nextpage),
    null,
    OpImage.OP_IO_BOUND,
    null);
    Interpolation interp = Interpolation.getInstance(Interpolation.INTERP_BILINEAR);
    ParameterBlock params = new ParameterBlock();
    params.addSource(op1);
    params.add(0.55F); // x scale factor
    params.add(0.335F); // y scale factor
    params.add(0.00F); // x translate
    params.add(0.00F); // y translate
    params.add(interp); // interpolation method
    image2 = JAI.create("scale", params);
    int width = (int)(image2.getWidth() * .73); //1.03);
    int height = (int)(image2.getHeight() * .73); //1.03);
    panels = new ScrollingImagePanel(image2, width, height);
    System.out.println(op1.getHeight());
    jPanel1.add(panels);
    this.setVisible(true);
    thanks in advance

    Take a look at this code.
    //Search the Policynumber
    void searchButton_actionPerformed(ActionEvent e) {
    try{
    nextButton.setEnabled(false);
    previousButton.setEnabled(false);
    String query = "SELECT * FROM PINFO WHERE POLICYNUMBER = '" +
    searchTextfield.getText().toUpperCase() + "'";
    ResultSet rs = Application1.stmt.executeQuery(query);
    while(rs.next()){
    pid = (rs.getInt("PID"));
    policynumber = rs.getString("POLICYNUMBER");
    firstName = rs.getString("FIRSTNAME");
    lastName = rs.getString("LASTNAME");
    jLabel2.setText(policynumber);
    jLabel3.setText(firstName);
    jLabel4.setText(lastName);
    catch(SQLException ex){
    System.err.println("SQLException: " + ex.getMessage());
    try{
    String query = "SELECT * FROM (UNMATCH U LEFT JOIN DOCUMENTTYPE D ON U.DOCUMENTTYPE=D.DOCNUMBER) WHERE PID = '" + pid + "' ORDER BY D.DOCUMENTCODE";
    ResultSet rs1 = Application1.stmt.executeQuery(query);
    clearJList();
    v.removeAllElements();
    jList1.setListData(v);
    v1.clear();
    while(rs1.next()){
    documentcode = rs1.getString("DOCUMENTCODE");
    uindex = rs1.getString("UINDEX");
    v.add(documentcode);
    v1.add(uindex);
    jList1.setListData(v);
    clearTextfield();
    catch(SQLException s){
    System.err.println("SQLException: " + s.getMessage());
    public void clearJList(){
    jList1.setListData(v);
    public void clearTextfield(){
    searchTextfield.setText("");
    // ****** Loads the selected Image
    void jList1_mouseClicked(MouseEvent e){
    try{
    vector.clear();
    nextpage = 1;
    currentpage = 1;
    nextButton.setEnabled(true);
    previousButton.setEnabled(false);
    if (spane != null)
    jPanel1.removeAll();
    seek = null;
    String query1 = "SELECT * FROM UNMATCH WHERE UINDEX = '" + v1.get(jList1.getSelectedIndex()).toString() + "'";
    rs2 = Application1.stmt.executeQuery(query1);
    while (rs2.next()){
    stream = rs2.getBinaryStream("IMAGE");
    seek = new MemoryCacheSeekableStream(stream);
    TIFFDecodeParam param = null;
    dec = ImageCodec.createImageDecoder("tiff", seek, param);
    try{
    totalPages = dec.getNumPages();
    jLabel1.setText("Page 1 of "+totalPages);
    if (nextpage==totalPages)
    nextButton.setEnabled(false);
    op1 =
    new NullOpImage(dec.decodeAsRenderedImage(nextpage-1),
    null,
    OpImage.OP_IO_BOUND,
    null);
    vector.addElement(op1);
    // ParameterBlock params = new ParameterBlock();
    // params.addSource(op1);
    // panel = new DisplayJAI(op1);
    panel = new DisplayJAI((RenderedImage)vector.elementAt(0));
    spane = new JScrollPane(panel);
    jPanel1.add(spane);
    jPanel1.validate();
    this.setVisible(true);
    catch(IOException dfs){
    } // while
    } // try
    catch(SQLException s){
    System.err.println("SQLException: " + s.getMessage());
    // Next Image
    void nextButton_actionPerformed(ActionEvent e) {
    try{
    if (spane != null)
    jPanel1.removeAll();
    ++nextpage;
    if (nextpage==totalPages)
    nextButton.setEnabled(false);
    previousButton.setEnabled(true);
    jLabel1.setText("Page " + nextpage +" of "+totalPages);
    TIFFDecodeParam param = null;
    dec = ImageCodec.createImageDecoder("tiff", seek, param);
    currentpage = nextpage;
    ParameterBlock paramblock = new ParameterBlock();
    paramblock.addSource(op1);
    vector.addElement(new NullOpImage(dec.decodeAsRenderedImage(nextpage-1),
    null,
    OpImage.OP_IO_BOUND,
    null));
    panel = new DisplayJAI((RenderedImage)vector.elementAt(currentpage-1));
    // panel = new DisplayJAI(op1);
    spane = new JScrollPane(panel);
    jPanel1.add(spane);
    setVisible(true);
    catch(IOException o){
    System.out.println(o);
    finally{
    // PreviousButton
    void previousButton_actionPerformed(ActionEvent e) {
    try{
    if (spane != null)
    jPanel1.removeAll();
    --nextpage;
    if (nextpage==1)
    previousButton.setEnabled(false);
    nextButton.setEnabled(true);
    jLabel1.setText("Page " + nextpage +" of "+totalPages);
    TIFFDecodeParam param = null;
    dec = ImageCodec.createImageDecoder("tiff", seek, param);
    currentpage = nextpage;
    vector.addElement(new NullOpImage(dec.decodeAsRenderedImage(nextpage-1),
    null,
    OpImage.OP_IO_BOUND,
    null));
    panel = new DisplayJAI((RenderedImage)vector.elementAt(currentpage-1));
    spane = new JScrollPane(panel);
    jPanel1.add(spane);
    setVisible(true);
    catch(IOException o){
    System.out.println(o);
    // Zoom ComboBox Item Select
    void jComboBox1_itemStateChanged(ItemEvent e) {
    if (e.getStateChange() == ItemEvent.DESELECTED)
    if (spane != null)
    jPanel1.removeAll();
    Interpolation interp = Interpolation.getInstance(Interpolation.INTERP_BICUBIC);
    ParameterBlock params = new ParameterBlock();
    params.addSource(op1);
    params.add(Float.valueOf(jComboBox1.getSelectedItem().toString()).floatValue()/100.0f);
    params.add(Float.valueOf(jComboBox1.getSelectedItem().toString()).floatValue()/100.0f);
    params.add(0.0F);
    params.add(0.0F);
    params.add(interp);
    // image2 = JAI.create("scale",params);
    vector.add(currentpage-1,JAI.create("scale",params));
    panel = new DisplayJAI((RenderedOp)vector.elementAt(currentpage-1));
    spane = new JScrollPane(panel);
    jPanel1.add(spane);
    jPanel1.validate();
    this.setVisible(true);
    repaint();
    // Rotate ComboBox Item Select
    void jComboBox2_itemStateChanged(ItemEvent e) {
    if (e.getStateChange() == ItemEvent.DESELECTED)
    if (spane != null)
    jPanel1.removeAll();
    type =null;
    type = transposeTypes[jComboBox2.getSelectedIndex()];
    ParameterBlock pb = new ParameterBlock();
    pb.addSource((RenderedImage)vector.elementAt(currentpage-1));
    pb.add(type);
    PlanarImage im2 = JAI.create("transpose", pb, renderHints);
    vector.add(currentpage-1,im2);
    panel = new DisplayJAI((RenderedOp)vector.elementAt(currentpage-1));
    spane = new JScrollPane(panel);
    jPanel1.add(spane);
    jPanel1.validate();
    this.setVisible(true);
    void printButton_actionPerformed(ActionEvent e) {
    print();
    protected void print() {
    PrinterJob pj = PrinterJob.getPrinterJob();
    pj.setPrintable(this);
    // PageFormat format = pj.pageDialog(pj.defaultPage());
    // Book bk = new Book();
    // bk.append(this,pj.defaultPage());
    // pj.setPageable(bk);
    if(pj.printDialog()){
    try{
    pj.print();
    catch(Exception e){
    System.out.println(e);
    else{
    System.out.println("Did Not Print Any Pages");
    public int print(Graphics g, PageFormat f, int pageIndex){
    if(pageIndex >= 1){
    return Printable.NO_SUCH_PAGE;
    Graphics2D g2d = (Graphics2D) g;
    g2d.translate(f.getImageableX(), f.getImageableY());
    if(op1 != null){
    double scales = Math.min(f.getImageableWidth()/ op1.getWidth(), f.getImageableHeight()/ op1.getHeight());
    g2d.scale(scales,scales);
    printImage(g2d, op1);
    return Printable.PAGE_EXISTS;
    else{
    return Printable.NO_SUCH_PAGE;
    public void printImage(Graphics2D g2d, RenderedImage image){
    if((image == null)|| (g2d == null)) return;
    int x = printLoc.x;
    int y = printLoc.y;
    AffineTransform at = new AffineTransform();
    at.translate(x,y);
    g2d.drawRenderedImage(image,at);
    public void setPrintLocation(Point d) {
    printLoc = d;
    public Point getPrintLocation() {
    return printLoc;

  • How To Convert Multi Page Tiff Image Through open office in application

    I will Appreciate Any Effort Or Reply Which Can Tell Me , To convert a multi-page tiff image in pdf format in application i.e not on desktop using simple open -office but through coding. I doubt if there Exists Ny Plugin Or Separate Library Which Can Do Tht.  Code Or Library inJava Language will Be Preferable

    Your question does not make any sense. First, PDF does not support multi-page TIFFs. DO you have a PDF that you are trying to convert to WORD or what. It is unclear of what you are starting with and what your end goal is. If you are dealing with coding, you may need to check the SDK forum, but trying to understand what you are trying to do would be a good idea first.

  • Displaying multi page tiff images

    Hi there
    I need to display a multipage tiff image, such that I can scroll through the different pages n the tiff file. I am new to ni vision and hence your inputs would be very helpful.

    Take a look at this thread.  You'll need to download the libtiff DLL here. 
    I managed to get it working in about 5 minutes, and could load a
    multi-page tiff into an array, and then split it into multiple Images.  The code is not the nicest, but it'll do the basics.  Alternatively you could try getting the .NET version of libtiff and calling it directly.
    Cheers ~ Greg
    Message Edited by GregS on 10-08-2009 03:36 PM

  • How to do batch printing of multi-page TIFF images

    I have TIFF images stored in the database as BLOB. The TIFF images can have one or multiple pages. I need to do batch printing of these images using Oracle Web Reports 6i in a 3-tier web environment. I was able to print single-page TIFF image by using an "Image" datatype; however when I print multi-page TIFF image, only the first page is printed.
    Is there a way to achieve my requirement in Oracle Web Reports 6i. If not, can you please suggest any alternative method. Our environment is 9iAS Release 1 on Windows/2000, Oracle 8.1.7 db,Forms 6i and Reports 6i.
    Thank you.

    Did you ever find a solution to this issue? I'm currently fighting this same issue. Only the first page of my multi-page TIFF documents are printing.

  • Importing Multi-Page PDF. Problems with Image Size Changing.

    I am working with CS4 on Windows XP.
    This has happened to numerous files...
    I open a multi-page PDF using PhotoShop using Grayscale. There are crop marks indicated on each page, so I will use the crop tool to crop each image accordingly. Then I convert each to a bitmap and save it as a .tiff file and close it. When I re-open the file, the image size has increased. It seems like it increases the same amount each time (maybe about 25%??) for each file.
    Any suggestions on how to fix this are greatly appreciated. Thank you.

    I'm still unclear why you are bothering to open these PDF in Photoshop only to crop.
    Acrobat can do this most easily. Placing the PDF files back in InDesign can also do this.
    Photoshop is the last tool you'd want to use as it is rasterizing the vector elements/text and producing a larger file.
    If you have neither Acrobat or InDesign, look to a free tool to crop PDF.

  • Can I use Automator to create a multi-page PDF from a selection of images?

    Well can I? I have looked at Preview extensively but found no option to create a multi-page document from all open images. I can create single-page PDF's easily, but that's not what I want.
    Does it make a difference if they are TIFF, JPEG, etc?

    Take a look at
    PDFLab
    It will create a multi – page .pdf from a folder of .jpgs. I am ** guessing ** it will work with .tiffs.
    No Alibi.
     Back up what you can't afford to lose.   Mac OS X (10.4.10)  

  • Photoshop CS5 pdf size fine - Bridge Multi page pdf size not fine

    I know it must be asked a thousand times but here goes:
    PDFs saved by photoshop display the true document size (let's say 70cm width on 72ppi)
    When I try to create multi page pdfs fro bridge (thanks Adobe!), no matter how many ways I try to set it up, the image always is small in the center of a white background. Always.
    What gives?

    Hi,
    1. Why dont u try it in pdf itself?
    U can just crop the required area in pdf file using crop tool so it can be applied for all the pages at a time.
    2. If u trying to remove particular area on a pdf u can place a white box on that area using pitstop tool it can be saved as actionlist like batch processing and applied for any number of pages and files.
    Making this in pdf itself won't get u more file size. Size will be as equal as ur source file.
    Praveen

  • Acrobat Pro 9.0 printing to Canon ImageRunner 3220 prints only first page of multi-page documents?

    We just got the new CS4 and with the Acrobat Pro 9.0 install, we cannot seem to print multi-page documents.  Only the first page comes through, and the queue clears as though the document's been fully printed.
    We are running Windows XP Pro SP3, and the printer is the Canon ImageRunner irC3220.
    I do not want to use the "Print as Image" option, as I don't want to rasterize the file before sending it to the printer. It's an important document and it's imperative that it is printed at high quality.
    We had no problems printing with Acrobat 8.
    I've seen old posts regarding this issue, but couldn't find anything newer that might have had an updated solution.
    Thank you in advance!! any help would be sooo appreciated right now!

    Great! Many thanks
    Is there actually a kind of marketplace for Javascipts for Adobe Acrobat Pro somewhere? ...
    Really useful!

  • Acrobat Pro 9 Multi-page PDF Printing backwards thumbnails

    Any time I create a multi-page PDF and ask it to print, it will print the first page correctly and then print every subsequent page as a mirror image thumbnail in the corner of the paper. If I print each page individually it prints fine. After doing a fair bit of testing, I've found the following:
    If I de-select the option "choose paper source by pdf page size" this issue does not happen. Unfortunately, this means any multi-page PDF with 8x11 and 11x17 doesn't print the 11x17 pages properly as it just prints them on 8x11 paper.
    If I select "print as image" this issue does not happen. Unfortunately, this is unacceptable due to the blurring of lines and text that occurs when selecting this option.
    I haven't tested the various page scaling options because I am producing scaled maps, and must therefore leave it set to "none".
    Does anyone know what might be causing this, and how to resolve the issue? Printing 10-20 page documents one sheet at a time isn't exactly an ideal solution.

    Unfortunately, not only does this not solve the problem with multi-page-size documents, but it's begun happening on files which are all one size as well, where that box isn't even checked.
    It appears that what's happening is the newer versions of Adobe Acrobat don't play nicely with emulated postscript support past a certain date. We're replacing our Canon with a newer model that has actual postscript support, and if that resolves the issue I'll be certain to post confirmation here. Copies of Adobe Acrobat 7 and 8 in our office haven't seen this problem at all; it's simply everyone who has upgraded past that point that can't print reliably.
    More news next week, after we get the new copier.

  • Place multi-page pdf and resize pages automatically

    Hi everyone,
    I have an A4 sized multi-page pdf file and I wanted to place the pages of the pdf into a US letter sized Indesign document. I planned to use the placemultipagepdf.jsx script that comes with indesign, to do this. When I place the pages though, they come in as A4 and I have to adjust the size manually within each image box. Is there a way to have them place but then resize automatically to the US letter sized height?
    Appreciate any help.

    Use this one: InDesignSecrets » Blog Archive » Zanelli Releases MultiPageImporter for Importing both PDF and INDD Files

  • Multi-page Tiff attachments and iPad

    Hello,
    I like very much The ipad,and i use IT everywere is possible:from browsing The web to writing emails,from playing games to listening to music.
    But there's a big problem:i can't read multi-page tiff that I use very much within my enterprise.
    I can only read The first page of these files,other pages seems to not exist.
    I've made many tries:installing readdle docs and other applications didn't solve The problem (also these applications showed only The first page) and both mail application and gmail browser client show a question mark as attached file in preview, i can download this as image but still I can only see The first page.
    Did anybody managed to solve The problem? Google didn't...
    Thank you very much!
    Andrea

    Actually as the author of Fax Reader we opened a official problem/engineering report with Apple about the issue, and were advised the Mail engineering team actually DID NOT have any trouble tickets open in how Mail deals with TIFF documents. They must be deaf? Given that maybe someday they will offer a FIX based on our paid for engineering ticket. But you are welcome to wait forever? for them to offer up a fix. Good luck with that decision, your lawyer might offer up a one of these stupid document and charge you $4.95 a page for the offer. PDF ? Ya we've an app TOO for that!

  • Mail will NOT display a multi-page pdf file in the body.

    I want to send an email with a multi-page PDF attached that is displayed in the email- so that readers don't even have to click on the pdf to open it. Can I do that? I can do a single page, and I did determine that if I save all the pages of the document as single pds and then attach those, that works, but is there a way to display a multi-page pdf? Any help would be greatly appreciated!

    I do not use pages - there are several possible solutions to your situation - in pages you should be able to do a send pdf to iPhoto and then in iPhoto you can create an e-mail with smaller (and harder to read) images- you may be able to produce smaller (lower quality) PDFs in pages (don't know), you can change e-mail servers - use a different one it you have multiple accounts or get a free gmail account or other new account that will handle your needs
    LN

  • Preview crashes when reading multi-page scanned PDFs

    Does anyone know why Preview and Safari should crash while rendering a multi-page PDF scanned by a Lexmark P150 printer/scanner? It doesn’t happen with single page scans. The same thing happens with DEVONAgent and Skim, but not with PDFPen or PDFClerk, which handle the documents with no problem. It happens when I scan with Lexmark’s own All In One Center app, but also with Image Capture. I haven’t tried any other scanning software.
    I can post a Console report if anyone is interested.
    Cheers
    Malcolm

    Tried that, still getting the same problem. The 2nd and 3rd pages are still showing up as landscape in the preview, but portrait when printed.

  • 11.0.3 11x17 multi page bug

    I recently upgraded everyone from a wide range of versions to 11.0.3 with a group policy.  This wasn't a problem in the past.
    Details
    Multi page PDF, all pages are 11x17
    Windows 7 Pro x64 PCs
    Symptom
    When printing the first page it prints the first page correctly but the next pages print 8.5x11 size on 11x17 paper
    Crappy Workaround
    Print each page individually will give you the correct output.
    Troubleshooting steps taken
    Printing to a Xerox printer and an HP printer give the same problem.
    Tried several different PDFs that were multi page ans 11x17
    Printed from Acrobat 8...prints fine.
    Printed from several computers with 11.0.3

    If this is still an issue for anyone, I've been able to work around this by turing on "print as image" under advanced options in the print dialog box.  11x17 PDFs now print all pages properly instead of just the first one.

Maybe you are looking for

  • After Effects cs4 does not recognise my legal product key

    I changed my hard disk without deactivate After Effects cs4 Trying to install it again several times received the message "some components did no installed correctly" and prompt me to run in a trial basis I made all the updates and still have the sam

  • HT5429 How do I get Apple to fix incorrect information in Apple Maps?

    Has anyone had any success with getting incorrect information in Apple Maps fixed by submitting feeback through the application?

  • How to generate test data

    Hi I need to generate some test data and would like to know if there are any built functions in SQL Server 2012 that let you do that apart from using loops. In PostgreSQL I use different built in functions to achieve that for example the following st

  • Regarding line-item-dimention

    hi, plz clarify my doubt regarding line-item-dimention. When line-item Dimensions are used without containing the line-item characteristic in the aggregate, which aggregate should be built? thanks, Neelima.

  • Condition Exclusion

    Hello, Please let me know if the following scenario is possible to handle through standard SAP: There are 2 discount condition types - ZAAA and ZBBB.  If the system finds condition record for both the condition types then it should consider only ZAAA