How to embed images in PDF reports - help!

i have gone through the demo at http://www.oracle.com/technology/obe/hol08/apexprnt/apexprnt2_otn.htm and this works fine UNLESS the image is bigger than say 8Kb.
How do i accomplish embedding an image in a PDF report if these images are (substantially) bigger??
I have tried asking this on this forum a number of times with no success. Is there ANYONE out there that can help me in this urgent matter?
Any help would be venerated.
regards,
stafford

Before entering into XSL-FO, I would strongly advise using XML-Spy or a similar product to check the validity of the XSL-FO code.
Also, I found the process to be highly iterative, building up the XSL-FO piece by piece. For this purpose I created a test harness in which I could enter the XML data and the FO sheet and generate the PDF outside of Apex. This saved quite a lot of time as I did not have to delete the report query each time I wanted to apply a change.
Anyway heres the XSL-FO for a letter generated by the system.
I use a bit map for a logo, I checked the size of it and it is 56k.
I'll submit a further post with the test harness.
Also, let me know if you need help installing FOP.
Cheers
Paul
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:ora="http://www.oracle.com/XSL/Transform/java/" xmlns:xdofo="http://xmlns.oracle.com/oxp/fo/extensions" xmlns:xdoxslt="http://www.oracle.com/XSL/Transform/java/oracle.apps.xdo.template.rtf.XSLTFunctions" xmlns:xdoxliff="urn:oasis:names:tc:xliff:document:1.1" xmlns:xlink="http://www.w3.org/1999/xlink">
<xsl:template match="/">
<fo:root>
<fo:layout-master-set>
<fo:simple-page-master master-name="master1" page-height="29.7cm" page-width="21cm" margin-top=".5cm" margin-bottom=".5cm" margin-left="1cm" margin-right="1cm">
<fo:region-before region-name="region-header" extent="0cm"/>
<fo:region-body region-name="region-body" margin-top="1cm" margin-bottom="1cm"/>
<fo:region-after region-name="region-footer" extent="2cm" display-align="after"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="master1" font-family="sans-serif" font-size="10pt" text-indent="2pt" padding-top="2pt" padding-bottom="2pt" padding-left="5pt" padding-right="5pt">
<fo:title>Hen House Summary Report</fo:title>
<fo:static-content flow-name="region-header"/>
<fo:static-content flow-name="region-footer"/>
<fo:flow flow-name="region-body">
<fo:block>
<!-- border-width="1mm" border-top="0.5pt solid #000000" border-left="0.5pt solid #000000" border-right="0.5pt solid #000000" border-bottom="0.5pt solid #000000">
padding-top="5pt" padding-bottom="5pt"> -->
<fo:table>
<fo:table-column column-width="400pt"/>
<fo:table-column column-width="100pt"/>
<fo:table-body>
<fo:table-row>
<fo:table-cell>
<fo:block text-indent="5mm" font-family="sans-serif" font-size="12pt" padding-top="5pt">Gov Directorate</fo:block>
<fo:block text-indent="5mm" font-family="sans-serif" font-size="12pt">A Unit</fo:block>
<fo:block padding="15pt"></fo:block>
<fo:block>
<fo:block text-indent="20pt" font-size="12pt" text-align="left" space-after="4pt">
<xsl:value-of select="//ROWSET6/ROWSET6_ROW/CONTACT_NAME" xdofo:field-name="CONTACT_NAME"/>
</fo:block>
<xsl:for-each select="//ROWSET4/ROWSET4_ROW">
<fo:block text-indent="20pt" font-size="12pt" text-align="left" space-after="4pt">
<xsl:value-of select="ADDRESS_LINE"/>
</fo:block>
</xsl:for-each>
</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>
<fo:external-graphic space-after="4pt">
<xsl:attribute name="src"><xsl:value-of select="//ROWSET3/ROWSET3_ROW/BASE_URL" />/i/ScotGov_Letter.bmp</xsl:attribute>
</fo:external-graphic>
</fo:block>
<fo:block>
<xsl:for-each select="//ROWSET1/ROWSET1_ROW">
<fo:block font-size="10pt" text-align="left">
<xsl:value-of select="ADDRESS_LINE"/>
</fo:block>
</xsl:for-each>
</fo:block>
<fo:block padding-top="15pt">
</fo:block>
<fo:block font-size="8pt" text-align="left" space-after="4pt">
<xsl:for-each select="//ROWSET2/ROWSET2_ROW">
<xsl:variable name="vContactTypeName">
<xsl:value-of select="CONTACT_TYPE_NAME"/>
</xsl:variable>
<xsl:if test="$vContactTypeName = 'RPID_TELNO'">
<fo:block>
<xsl:value-of select="CONTACT_TYPE_VALUE"/>
</fo:block>
</xsl:if>
</xsl:for-each>
</fo:block>
<fo:block font-size="8pt" text-align="left">
<xsl:for-each select="//ROWSET2/ROWSET2_ROW">
<xsl:variable name="vContactTypeName">
<xsl:value-of select="CONTACT_TYPE_NAME"/>
</xsl:variable>
<xsl:if test="$vContactTypeName = 'RPID_EMAIL'">
<fo:block>
<xsl:value-of select="CONTACT_TYPE_VALUE"/>
</fo:block>
</xsl:if>
</xsl:for-each>
</fo:block>
<fo:block font-size="8pt" text-align="left" space-after="4pt">
<xsl:for-each select="//ROWSET2/ROWSET2_ROW">
<xsl:variable name="vContactTypeName">
<xsl:value-of select="CONTACT_TYPE_NAME"/>
</xsl:variable>
<xsl:if test="$vContactTypeName = 'URL'">
<fo:block>
<xsl:value-of select="CONTACT_TYPE_VALUE"/>
</fo:block>
</xsl:if>
</xsl:for-each>
</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:block>
<fo:block padding-top="10pt">
</fo:block>
<fo:block>
<fo:table>
<fo:table-column column-width="400pt"/>
<fo:table-column column-width="140pt"/>
<fo:table-body>
<fo:table-row>
<fo:table-cell>
<fo:block>Our ref: <xsl:value-of select="//ROWSET7/ROWSET7_ROW/SITE_ID" xdofo:field-name="SITE_ID"/></fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>Date: <xsl:value-of select="//ROWSET3/ROWSET3_ROW/TODAY" xdofo:field-name="TODAY"/></fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:block>
<!--
-->
<fo:block padding-top="20pt">
</fo:block>
<fo:block>
<fo:table>
<fo:table-column column-width="540pt"/>
<fo:table-body>
<fo:table-row>
<fo:table-cell>
<fo:block>Dear <xsl:value-of select="//ROWSET6/ROWSET6_ROW/CONTACT_NAME" xdofo:field-name="CONTACT_NAME"/></fo:block>
</fo:table-cell>
</fo:table-row>
<fo:table-row padding-top="10pt">
<fo:table-cell text-align="center">
<fo:block>EGG MARKETING REGULATIONS - EGG PRODUCTION SITE ID APPROVAL - <xsl:value-of select="//ROWSET7/ROWSET7_ROW/SITE_ID" xdofo:field-name="SITE_ID"/></fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:block>
<fo:block padding-top="10pt">
</fo:block>
<fo:block>
<fo:table>
<fo:table-column column-width="540pt"/>
<fo:table-body>
<fo:table-row>
<fo:table-cell>
<fo:block>I am writing to inform you that your production facility at</fo:block>
<fo:block padding-top="10pt">
</fo:block>
</fo:table-cell>
</fo:table-row>
<fo:table-row space-after="4pt">
<fo:table-cell>
<xsl:for-each select="//ROWSET5/ROWSET5_ROW">
<fo:block font-size="10pt" text-align="left">
<xsl:value-of select="ADDRESS_LINE"/>
</fo:block>
</xsl:for-each>
</fo:table-cell>
</fo:table-row>
<fo:table-row>
<fo:table-cell>
<fo:block padding-top="10pt">
</fo:block>
<fo:block padding-after="5pt">has been accepted. Your production site has been allocated the following code(s)</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:block>
<fo:block border-width="1mm" border-top="0.5pt solid #000000" border-left="0.5pt solid #000000" border-right="0.5pt solid #000000" border-bottom="0.5pt solid #000000">
<fo:table>
<fo:table-column column-width="540pt"/>
<fo:table-body>
<fo:table-row>
<fo:table-cell>
<fo:block padding="10pt" margin="10pt" >
<xsl:for-each select="//ROWSET8/ROWSET8_ROW">
<fo:table>
<fo:table-column column-width="270pt"/>
<fo:table-column column-width="270pt"/>
<fo:table-body>
<fo:table-row>
<fo:table-cell>
<fo:block><xsl:value-of select="EPS_SITE_ID_7"/></fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block><xsl:value-of select="EPS_SITE_ID_SCO"/></fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</xsl:for-each>
</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:block>
<fo:block padding-top="10pt">
</fo:block>
<fo:block>What the numbers mean</fo:block>
<fo:block padding-top="10pt">
</fo:block>
<fo:block>0UK - "Organic" production system permitted to use the marketing term "Organic Eggs".</fo:block>
<fo:block>1UK - "Free Range" production system permitted to use the marketing term "Free Range Eggs".</fo:block>
<fo:block>2UK - "Barn" production system permitted to use the marketing term "Barn Eggs".</fo:block>
<fo:block>3UK - "Cage" production system permitted to use the marketing term "Eggs from Caged Hens".</fo:block>
<fo:block padding-top="10pt">
</fo:block>
<fo:block>The number located between the UK and SCO is tyour unique production site code. The SCO and or 7 suffiix denotes that the production site is located in Scotland.</fo:block>
</fo:flow>
</fo:page-sequence>
<fo:page-sequence master-reference="master1" font-family="sans-serif" font-size="10pt" text-indent="2pt" padding-top="2pt" padding-bottom="2pt" padding-left="5pt" padding-right="5pt">
<fo:title>Hen House Summary Report</fo:title>
<fo:static-content flow-name="region-header"/>
<fo:static-content flow-name="region-footer"/>
<fo:flow flow-name="region-body">
<fo:block space-after="30pt">
<!-- border-width="1mm" border-top="0.5pt solid #000000" border-left="0.5pt solid #000000" border-right="0.5pt solid #000000" border-bottom="0.5pt solid #000000">
padding-top="5pt" padding-bottom="5pt"> -->
<fo:table>
<fo:table-column column-width="400pt"/>
<fo:table-column column-width="100pt"/>
<fo:table-body>
<fo:table-row>
<fo:table-cell>
<fo:block text-indent="5mm" font-family="sans-serif" font-size="12pt" padding-top="5pt">Rural Payments and Inspections Directorate</fo:block>
<fo:block text-indent="5mm" font-family="sans-serif" font-size="12pt">Eggs and Poultry Unit</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>
<fo:external-graphic space-after="4pt">
<xsl:attribute name="src"><xsl:value-of select="//ROWSET3/ROWSET3_ROW/BASE_URL"/>/i/ScotGov_Letter.bmp</xsl:attribute>
</fo:external-graphic>
</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:block>
<fo:block font-weight="bold" space-after="5pt">Stamping</fo:block>
<fo:block space-after="10pt">All Grade A eggs must be stamped with the relevant producer code. Failure to do so would render the eggs unmarketable for human consumption.</fo:block>
<fo:block font-weight="bold" space-after="5pt">Records</fo:block>
<fo:block space-after="5pt">Records <fo:inline font-weight="bold">MUST</fo:inline> be kept for <fo:inline font-weight="bold" text-decoration="underline">EACH HOUSE</fo:inline> showing;</fo:block>
<fo:list-block>
<fo:list-item>
<fo:list-item-label>
<fo:block>1.</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="1cm">
<fo:block>The date(s) of housing and the number of birds placed</fo:block>
</fo:list-item-body>
</fo:list-item>
<fo:list-item>
<fo:list-item-label>
<fo:block>2.</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="1cm">
<fo:block>The age of birds at the time of housing</fo:block>
</fo:list-item-body>
</fo:list-item>
<fo:list-item>
<fo:list-item-label>
<fo:block>3.</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="1cm">
<fo:block>Mortality figures for the life of the flock</fo:block>
</fo:list-item-body>
</fo:list-item>
<fo:list-item>
<fo:list-item-label>
<fo:block>4.</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="1cm">
<fo:block>The date(s) of the depletion and numbers depleted</fo:block>
</fo:list-item-body>
</fo:list-item>
<fo:list-item>
<fo:list-item-label>
<fo:block>5.</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="1cm">
<fo:block>The number of eggs produced and forwarded to egg packing centres</fo:block>
</fo:list-item-body>
</fo:list-item>
</fo:list-block>
<fo:block padding-top="10pt">
</fo:block>
<fo:block space-after="5pt">Where feed claims are made records <fo:inline font-weight="bold">MUST</fo:inline> be kept showing;</fo:block>
<fo:list-block>
<fo:list-item>
<fo:list-item-label>
<fo:block>1.</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="1cm">
<fo:block>The use of the feed claim</fo:block>
</fo:list-item-body>
</fo:list-item>
<fo:list-item>
<fo:list-item-label>
<fo:block>2.</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="1cm">
<fo:block>Quantities of feed used</fo:block>
</fo:list-item-body>
</fo:list-item>
<fo:list-item>
<fo:list-item-label>
<fo:block>3.</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="1cm">
<fo:block>Type of feed supplied of mixed</fo:block>
</fo:list-item-body>
</fo:list-item>
<fo:list-item>
<fo:list-item-label>
<fo:block>4.</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="1cm">
<fo:block>Source of the feed</fo:block>
</fo:list-item-body>
</fo:list-item>
<fo:list-item>
<fo:list-item-label>
<fo:block>5.</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="1cm">
<fo:block>Date(s) of delivery</fo:block>
</fo:list-item-body>
</fo:list-item>
</fo:list-block>
<fo:block padding-top="10pt">
</fo:block>
<fo:block font-weight="bold" space-after="5pt">Notification of Changes</fo:block>
<fo:block space-after="10pt">You are required to inform this Government Department, without delay, of any changes concerning registered data supplied in your original application, including additional housing and/or birds.</fo:block>
<fo:block padding-top="30pt">
</fo:block>
<fo:block space-after="40pt">Yours sincerely</fo:block>
<fo:block><xsl:value-of select="//ROWSET3/ROWSET3_ROW/RPID_OFFICER" xdofo:field-name="RPID_OFFICER"/></fo:block>
<fo:block><xsl:value-of select="//ROWSET3/ROWSET3_ROW/RPID_JOB_TITLE" xdofo:field-name="RPID_JOB_TITLE"/></fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>
</xsl:stylesheet>

Similar Messages

  • Dynamic Images in PDF Report

    Hi,
    I want to create Badges from employee table (ID, NAME, JOB_TITLE, PHOTO). I downloaded and installed a demo application "USING DYNAMIC IMAGES IN PDF REPORT". It works fine with smale images < 20K. I'm getting the following error for images > 20K :
    "ORA-06502: PL/SQL: numeric or value error: raw variable length too long"
    it seems like a buffer problem.
    could you pls help to solve this problem
    Thanks,
    Ribhi

    Hi Carsten
    That was exactly* I was looking for. Maybe I should Google more in German ;-)
    The main problem was that I defined my image outside the first repeating group (that doesn't repeat, it's always just one object) - the first group is followed by 7 more.
    Just like the "Name" (that's positioned outside the group in the document header), I positioned the image above the table representing the group.
    Doing that, the "Name" is filled correctly, the Image only when the Output Format is Excel or HTML - not Word or PDF ... makes no sense but that's tje way it is.
    After moving the image inside the group....it works great!
    (One more thing...the image size is fixed to the image you use as "dummy". Is there any way to make that more flexible, because now some scaling happens...)???
    @Trent: That was the way we initially did it, but when the size of the row exceeds 32K...you know what happens.. And even with a small image the 32K limit is hit easily
    The way I use it now (very similar to Carsten's description) there is no limit....
    Thank you all!
    Roel

  • How to embed images in long text of PM Notifications/Orders

    Dear Sir,
    How to embed images in long text of PM Notifications/Orders? Kindly help.
    Thanks & Regards
    PM Team.

    Hi,
      Unfortunately, You will not be able to view the graphics within the Long text editor screen.Only Limited word functionality is available on these editors.
      You will have to store these pictures separately as an attachment, through generic object services and then view them through that.
    Regards
    Narasimhan

  • Using Dynamic Images in PDF Reports

    There are a number of threads in the forum where we talked about dynamically including images in PDF reports before. In order to illustrate one technique you can use for doing this, I put together a sample application that illustrates how to dynamically include images that are stored in BLOB columns. I installed the application on apex.oracle.com and made it available for download and local install. You can find the link and login information for this application as well as the download link here:
    http://marcsewtz.blogspot.com/2008/06/one-question-about-pdf-printing-feature.html

    Based on a discussion we had today in another thread, I think it makes sense to add to this thread that the XSL-FO snipped used to get BI Publisher to render images is used when referencing images in a report column, e.g. you included them in your RTF layout using the BI Publisher Desktop Insert->Table option. In this case, the column is referenced with “value-of select”:
    <fo:instream-foreign-object content-type="image/jpg">
    <xsl:value-of select="LOGO"/>
    </fo:instream-foreign-object>
    On the other hand, if you want to dynamically include a company logo, or other data that’s not necessarily repeating, e.g. there’s only one value, then you would use the BI Publisher Desktop Insert->Field option . And you would reference your field as follows:
    <fo:instream-foreign-object content-type="image/jpg">
    <?LOGO?>
    </fo:instream-foreign-object>
    So in this case LOGO refers to either a single-value field, or a single-row report column value.
    Regards,
    Marc

  • How to embed mp4 in PDF  through Adobe Standard?

    How to embed mp4 in PDF  through Adobe Standard?

    That's available in Acrobat Pro.
    See the features matrix

  • How to display the Image in PDF report by using iText Report

    Hi
    Im trying to display the image which is very big one.
    This is my code
    Document document=new Document();
    PdfWriter.getInstance(document,new FileOutputStream("imagePDF.pdf"));
    document.open();
    Image image = Image.getInstance ("1.bmp");
    document.add(new Paragraph("Images in PDF"));
    document.add(image);
    document.close();
    But the image "1.bmp" is displayed partially. Its not spanning to the next page.
    Can anyone help me to solve this one?
    Thanks in Advance
    dhilip

    Do you actually want the image to span multiple pages? I am not sure that will be possible without splitting the image; the itext mailing list would be the place to ask.
    You could make the the page size big enough for the image using Document.setPageSize()

  • How to embed font into PDF - Listener 2.0.2 FOP configuration

    I need to embed custom font into PDF report in order to print one of Slovenian characters: Č (C with caron) This character shows as # sign when I generate standard PDF report using Apex 4.2.2 and Listener 2.0.2. As far as I understand 14 native Adobe PDF fonts are based on Windows 1252 encoding. This encoding doesn't include mentioned Slovenian character.
    Oracle White paper http://www.oracle.com/technetwork/developer-tools/apex/learnmore/custom-pdf-reports-1953918.pdf says:
    "APEX Listener 2.0.2 supports only the Base-14 fonts. To configure additional fonts, see this document: Apache(tm) FOP: Fonts "
    I was able to embed my custom font into standard Apache FOP report server. Solution consist of saving two files my_font.ttf and my_font.xml to server and update of FOP userconfig.xml file (fonts part where path to saved 2 files have to be specified)
    How can I do this on Apex Listener 2.0.2 ? Where is located userconfig.xml file?
    Simon

    Hello Ivaylo Mutafchiev,
                                           There is no way we can control the fonts in the created PDF / while creating the PDF using the class cl_document_bcs in your PDF creation logic.
    You can try some other approach of creating PDF from the Smartforms OTF stream data .
    Try using the follosing FM for the PDF creation and sending email:
    CONVERT_OTF_2_PDF
    CONVERT_OTF_AND_MAIL
    SO_OBJECT_SEND
    CONVERT_OTF_AND_MAIL_NEW (Try this but this FM still uses  the class that you are using currently. But give it a try and see the results)
    Hope this answers your question.
    Thanks,
    Greetson

  • How to embed images in an INX file using script

    Hi All,
    Kindly help me in embedding images in INX file using Indesign Javascript.
    I have used the following code to embed images in an indd document and exporting that document to inx. But the images in inx are not embedded by default.
    var linksCount = myDocument.links.count();
    var linksOnPage = myDocument.links;
    for(var x=0;x<linksCount;x++){
        var linkedItem = linksOnPage.item(0);
        linkedItem.unlink();
    myDocument.save(new File("filename.indd"));
    myDocument.exportFile(ExportFormat.INDESIGN_INTERCHANGE, File("filename.inx"), app.pdfExportPresets.item("[Press Quality]"));
    Thanks in advance,
    Anitha

    Hi
    I think your script has two mistakes
    you embed only first link image in for loop => set x for linksOnPage
    exporting to inx isnot need PDF export preset => remove app.pdfExportPresets.item("[Press Quality]") from exportFile()
    this work for me.
    myDocument = app.documents[0];
    var linksCount = myDocument.links.count();
    var linksOnPage = myDocument.links;
    for(var x=0;x < linksCount;x++){
        var linkedItem = linksOnPage.item(x);
        linkedItem.unlink();
    myDocument.save(new File("filename.indd"));
    myDocument.exportFile(ExportFormat.INDESIGN_INTERCHANGE, File("filename.inx"));
    thank you

  • Images in PDF reports

    I have a report that indicates the health of a project by showing an image, like a stop light. The query looks like this:
    select     "PM_PROJECTS"."ID" as "ID",
    '<img src="#APP_IMAGES#'||lower(HEALTH)||'.gif">' health_image,
         "PM_PROJECTS"."OWNING_TEAM" as "OWNING_TEAM",
         "PM_PROJECTS"."PROJECT_NAME" as "PROJECT_NAME",
    "PM_PROJECTS"."PHASE" as "PHASE",
         "PM_PROJECTS"."HEALTH" as "HEALTH"
    from     "PM_PROJECTS" "PM_PROJECTS"
    where "PM_PROJECTS"."ID" <> 144
    The client likes paper reports, so I have a link to "print" the report to PDF. However, the image does not appear on the PDF version of the report, just an empty column. Is there a way to display the image in PDF output?
    Thanks in advance!

    Hi
    I'm actually wondering about the same thing, however, I'd like to implement a BLOB-image in a PDF Report.
    I found this link http://blogs.oracle.com/xmlpublisher/2006/05/05#a34 which makes it seem that BI Publisher supports base64encoded pictures. (There's a sample there aswell)
    Now my question is; how can we get the blobdata presented as base64 in the XML from ApEx? Anyone with some experience on this?
    Regards,
    Vidar

  • How to embed image in email

    Before iCloud I could attach a small image or pdf in my email and the recipient could see it in the body of their email. Now with iCloud all I can seem to do is attach a file as an icon. How can I embed an image now?

    I click and drag a picture from my desktop no problem... and from iPhoto I can click share>email and an email opens with pic on page. Where in the cloud are the pics and files you are wanting to send that act as you describe?
    What OS are you on?

  • How to include  images in BAM reports

    Hi all,
    In Oracle 11g BAM , i can see some already existing Demo reports, i the Active Studio.
    in that demo reports i can see a report called SLA Violation.Here in this SLA Vioaltion report there is Updating Orderded list within the list they are showing some images .
    can some one help me how to add images like that..? or tell me the steps..
    i tried creating the similar updating ordered list in my sample report and gave the image links gived in that demo report
    " _switch({Process Due Soon SLA}) case(true):(<span style='width: 8px'><img src='../Images/TradeSubmitted.png'/></span><span style='padding-left: 4px;vertical-align:top;'>Submitted</span>) default( <span style='width: 8px'><img src='../Images/TradeFine.png'/></span><span style='padding-left: 4px;vertical-align:top;'>Fine</span>")_but in the updated ordering list instead of the image im getting entries like this " ):(<span style='width: 8px'><img src='../Images/TradeSubmitted.png'/></span><span style='padding"
    Any suggestions on this is Really appreciated..
    TIA,
    Karthik
    Edited by: karthik !! on 20 Jun, 2011 7:28 AM

    Hi,
    I have used four different ways to display images in my applications depending on which method is the fastest to refresh.
    1. Under Application Attributes > Edit Standard Attributes > Substitutions enter your substitution string (MY_IMAGE_URL) and substitution value(http://somewhere/img)
    and then in the region or template use the following syntax &MY_IMAGE_URL. in your html tags eg. img src="&MY_IMAGE_URL./banner.png" width="x" height="x">)
    I have found this the best for image refresh speed, especially if the image is already cached.
    2. Load your image up into Apex and don't associate it with any application and use the following tag img src="#WORKSPACE_IMAGES#banner.png" width="x" height="x" alt="">
    Good for development as all images not associated to an application are available.
    3. Load your image up into Apex and associate it with an application and use the following tag img src="#APP_IMAGES#banner.png" width="x" height="x" alt="">
    This can be a pain during development when your application numbers continually change.
    4. Use standard http address <img src="http://somewhere/banner.png" width="x" height="x">
    Ben
    Message was edited by:
    Benton

  • How to put image into pdf file in which image is set it in particuler frame size

    hi, i m creating app for generate pdf in which i can set image into pdf but the image sizze is large so the image is display over the text and how can i set text into pdf and also how to set textfilelds data into pdf or tableview data into pdf.help me plz

    Are you looking for image in selection column or as a separate column?
    --Shiv                                                                                                                                                                               

  • Displaying images in pdf reports

    a question please..
    can one display only .gif type images or can they also be .jpgs?
    also, is there a limit to the size of the image one displays?
    also, can one control the size of these images in the reports.
    sorry about the above. I have looked around for answers with very little success.
    thanks in advance.

    Hi
    I'm actually wondering about the same thing, however, I'd like to implement a BLOB-image in a PDF Report.
    I found this link http://blogs.oracle.com/xmlpublisher/2006/05/05#a34 which makes it seem that BI Publisher supports base64encoded pictures. (There's a sample there aswell)
    Now my question is; how can we get the blobdata presented as base64 in the XML from ApEx? Anyone with some experience on this?
    Regards,
    Vidar

  • How can I create a pdf-report in a database trigger

    Hi,
    how can I create a pdf-file with Reports 9i in a database trigger ?
    Where can I find informations about it?
    Thanks
    Friedhold

    Here would be the place to start.
    If you have existing reports to call, take a look at the JRC

  • How to embed image in email, not as an attachment?

    I need to know how to embed an image into Mail without making it an attachment. Any ideas?
    Thanks in advance.
    Hana

    drag the image to the email. that's all. how it will show on the other end depends on the email client configuration of your email recipients, not on you.

Maybe you are looking for