Problem while rendering report generated with iText API

Hi!
I am stuck with problem of rendering report generated through iText API.
What exactly happens is, I have to put an image (.jpg) on my report, when I am generating HTML file using iText API, the image size is normal i.e., as it is taken.
But when I render it to take print through printer, the size of image is getting short i.e., it prints like an Icon on Paper. What can I do to get the proper image size on paper also?
The code is as follows, which I have used to render
public class HTMLPrintRenderer implements Printable {
    ReportAbs objReport;
    JEditorPane editorPane;
    String fileName;
    final int STARTING_PAGESET_NUMBER=0;
    int currentPageSetNumber=STARTING_PAGESET_NUMBER;
    /** Creates a new instance of HTMLPrintRenderer */
    public HTMLPrintRenderer(ReportAbs  objReport) throws Exception{
        this.objReport=objReport;
        this.fileName=ReportsUtility.getReportLocation()+ objReport.getReportFileName();
        if(objReport.isLayoutLandscape()){
            SCALE =600.0/1000;//600.0/850;
        else{
            SCALE =600.0/850;
        init();
    private void init()throws Exception{
        setDocument(STARTING_PAGESET_NUMBER);
    public void setDocument(int pageSetNumber) throws Exception{
        editorPane=new JEditorPane();
        ((AbstractDocument)editorPane.getDocument()).setAsynchronousLoadPriority(-1);
        editorPane.setText("text/html");
        editorPane.setPage("file:"+fileName+"."+pageSetNumber);
        currentPageSetNumber=pageSetNumber;
    int pageCountInPageSet=0;// counter to track number of pages in each pageSet
    int currentPage=-1;
    double pageStartY=0,pageEndY=0;
    final double SCALE;// =600.0/1000;//600.0/850;
    final int HEADER_HEIGHT=30;//50;
    final int FOOTER_HEIGHT=70;
public int print(Graphics graphics, PageFormat pageFormat, int pageIndex) throws PrinterException {
        Graphics2D graphics2D;
        graphics2D = (Graphics2D) graphics;
        initEditorPane(editorPane,pageFormat);
        ReportPrinterUtility.printPageAttributes(pageFormat);
        /// print custom here... page numbers and page headers may be printed here
        /// meant only for HEADRS and FOOTERS
        ///                 caution... DO NOT ALTER GRAPHICS OBJECT ATTRIBUTES
        /// @author Manoj       
        //TRANSLATE..............must also be reverse translated
        double x=pageFormat.getImageableX();
        double y=pageFormat.getImageableY();
        graphics2D.translate(x,y);
        paintCustomPage(graphics2D,pageFormat);
        //REVERSETRANSLATE
        graphics2D.translate(-x,-y);
        graphics2D.scale(SCALE,SCALE);
        //  V set clipping area
        int headerHeight=HEADER_HEIGHT;
            graphics2D.setClip((int)(pageFormat.getImageableX()/SCALE),
            (int) ((pageFormat.getImageableY()+headerHeight)/SCALE),
            (int) (pageFormat.getImageableWidth()/SCALE),
            (int) ((pageFormat.getImageableHeight()-FOOTER_HEIGHT)/SCALE));
        //  VI set pageStart on editorPane
        if (pageIndex > currentPage) {
            currentPage = pageIndex;
            pageStartY += pageEndY;
            pageEndY = graphics2D.getClipBounds().getHeight();
            pageCountInPageSet++;
        //  VII
        graphics2D.translate(graphics2D.getClipBounds().getX(),
        graphics2D.getClipBounds().getY());
        //  VIII prepare clipping area
        Rectangle allocation = new Rectangle(0,
        (int) -pageStartY,
        (int) (editorPane.getMinimumSize().getWidth()),
        (int) (editorPane.getPreferredSize().getHeight()));
        View rootView=editorPane.getUI().getRootView(editorPane);
        if (printView(graphics2D,allocation,rootView)) {//page exists          
            System.out.println("page exists"+pageCountInPageSet);
            return Printable.PAGE_EXISTS;
        else {// page does not exist
            System.out.println("resetting page parameters");
            pageStartY = 0;
            pageEndY = 0;
            currentPage = -1;
            if(!setupNextPage()){///more pages exist TODO:
                return Printable.NO_SUCH_PAGE;
            else{//no more pages exist
                //                call next page
                pageCountInPageSet=0;//reset to first page in pageSet
                resetGraphics(graphics2D,pageFormat);
                return print(graphics2D,pageFormat,pageIndex);
private void resetGraphics(Graphics2D graphics2D,PageFormat pFormat){
        graphics2D.clearRect(0,0,
        (int)(pFormat.getImageableWidth()/SCALE),
        (int)(pFormat.getImageableHeight()/SCALE));
        graphics2D.translate(-graphics2D.getClipBounds().getX(),
        -graphics2D.getClipBounds().getY());
        graphics2D.scale(1/SCALE, 1/SCALE);
    }

Hi!
I am stuck with problem of rendering report generated through iText API.
What exactly happens is, I have to put an image (.jpg) on my report, when I am generating HTML file using iText API, the image size is normal i.e., as it is taken.
But when I render it to take print through printer, the size of image is getting short i.e., it prints like an Icon on Paper. What can I do to get the proper image size on paper also?
The code is as follows, which I have used to render
public class HTMLPrintRenderer implements Printable {
    ReportAbs objReport;
    JEditorPane editorPane;
    String fileName;
    final int STARTING_PAGESET_NUMBER=0;
    int currentPageSetNumber=STARTING_PAGESET_NUMBER;
    /** Creates a new instance of HTMLPrintRenderer */
    public HTMLPrintRenderer(ReportAbs  objReport) throws Exception{
        this.objReport=objReport;
        this.fileName=ReportsUtility.getReportLocation()+ objReport.getReportFileName();
        if(objReport.isLayoutLandscape()){
            SCALE =600.0/1000;//600.0/850;
        else{
            SCALE =600.0/850;
        init();
    private void init()throws Exception{
        setDocument(STARTING_PAGESET_NUMBER);
    public void setDocument(int pageSetNumber) throws Exception{
        editorPane=new JEditorPane();
        ((AbstractDocument)editorPane.getDocument()).setAsynchronousLoadPriority(-1);
        editorPane.setText("text/html");
        editorPane.setPage("file:"+fileName+"."+pageSetNumber);
        currentPageSetNumber=pageSetNumber;
    int pageCountInPageSet=0;// counter to track number of pages in each pageSet
    int currentPage=-1;
    double pageStartY=0,pageEndY=0;
    final double SCALE;// =600.0/1000;//600.0/850;
    final int HEADER_HEIGHT=30;//50;
    final int FOOTER_HEIGHT=70;
public int print(Graphics graphics, PageFormat pageFormat, int pageIndex) throws PrinterException {
        Graphics2D graphics2D;
        graphics2D = (Graphics2D) graphics;
        initEditorPane(editorPane,pageFormat);
        ReportPrinterUtility.printPageAttributes(pageFormat);
        /// print custom here... page numbers and page headers may be printed here
        /// meant only for HEADRS and FOOTERS
        ///                 caution... DO NOT ALTER GRAPHICS OBJECT ATTRIBUTES
        /// @author Manoj       
        //TRANSLATE..............must also be reverse translated
        double x=pageFormat.getImageableX();
        double y=pageFormat.getImageableY();
        graphics2D.translate(x,y);
        paintCustomPage(graphics2D,pageFormat);
        //REVERSETRANSLATE
        graphics2D.translate(-x,-y);
        graphics2D.scale(SCALE,SCALE);
        //  V set clipping area
        int headerHeight=HEADER_HEIGHT;
            graphics2D.setClip((int)(pageFormat.getImageableX()/SCALE),
            (int) ((pageFormat.getImageableY()+headerHeight)/SCALE),
            (int) (pageFormat.getImageableWidth()/SCALE),
            (int) ((pageFormat.getImageableHeight()-FOOTER_HEIGHT)/SCALE));
        //  VI set pageStart on editorPane
        if (pageIndex > currentPage) {
            currentPage = pageIndex;
            pageStartY += pageEndY;
            pageEndY = graphics2D.getClipBounds().getHeight();
            pageCountInPageSet++;
        //  VII
        graphics2D.translate(graphics2D.getClipBounds().getX(),
        graphics2D.getClipBounds().getY());
        //  VIII prepare clipping area
        Rectangle allocation = new Rectangle(0,
        (int) -pageStartY,
        (int) (editorPane.getMinimumSize().getWidth()),
        (int) (editorPane.getPreferredSize().getHeight()));
        View rootView=editorPane.getUI().getRootView(editorPane);
        if (printView(graphics2D,allocation,rootView)) {//page exists          
            System.out.println("page exists"+pageCountInPageSet);
            return Printable.PAGE_EXISTS;
        else {// page does not exist
            System.out.println("resetting page parameters");
            pageStartY = 0;
            pageEndY = 0;
            currentPage = -1;
            if(!setupNextPage()){///more pages exist TODO:
                return Printable.NO_SUCH_PAGE;
            else{//no more pages exist
                //                call next page
                pageCountInPageSet=0;//reset to first page in pageSet
                resetGraphics(graphics2D,pageFormat);
                return print(graphics2D,pageFormat,pageIndex);
private void resetGraphics(Graphics2D graphics2D,PageFormat pFormat){
        graphics2D.clearRect(0,0,
        (int)(pFormat.getImageableWidth()/SCALE),
        (int)(pFormat.getImageableHeight()/SCALE));
        graphics2D.translate(-graphics2D.getClipBounds().getX(),
        -graphics2D.getClipBounds().getY());
        graphics2D.scale(1/SCALE, 1/SCALE);
    }

Similar Messages

  • I am having problem while using ms word with anjal( OS X Lion 10.7.5 (11G63))

    i am having problem while using ms word with anjal  is not working properly but its working in facebook and other areas.i need and  its very important to using tamil fonts for my job.can anyone help me out from this problem.
    thanking you
    by
    moses

    Those who are knowledgable in this area (myself not among them) say that Word's support for Asian languages is faulty. The best word processor for that use is "Mellel."

  • Experiencing the problems while encoding the barcode with Code 128 font

    Hi Tim,
    Hope you are doing good.
    We are experiencing the problems while encoding the barcode with Code 128 font.we have followed the Oracle BI Publisher Blog i.e Barcoding 102 http://blogs.oracle.com/xmlpublisher/discuss/msgReader$281.
    Before applying the encoding Java class we were able to display the barcode but after applying this encoding Java class we are not able to display the barcode.
    We are requesting you to help us for encoding the barcode with Code 128 font and read barcode by scanner.
    We will appreciate and thankful if anybody help us in this regard
    Thanks,
    SubbaRao.

    Hi Tim,
    I am trying to create 128 Barcode, output shows little junk characters. I followed the your "Barcoding 102 instrucitons but no luck. I apprciate your help if you provide some help on this.
    http://blogs.oracle.com/xmlpublisher/2006/06/06
    1. Created Java class under $JAVA_TOP/oracle/apps/oracle/xdo/template/util/barcoder
    2. Registeted and applied the format the barcode to the form field. I will sedn my XML, RTF and Java class, Would you pleae advice me on this
    Thanks
    Venu

  • I have a problem, i can't generate with DPS App Builder "App distribuzione.zip" to be sent to Apple to publish APP, this is the error message: is not a valid distribution certificate Apple. What do I do?

    I have a problem, i can't generate with DPS App Builder "App distribuzione.zip" to be sent to Apple to publish APP, this is the error message: is not a valid distribution certificate Apple. What do I do?

    As Bern510 says, you'll need to recreate certificates that are valid. I suggest following our step-by-step publishing guide, which walks through how to obtain certificates correctly.
    http://help.adobe.com/en_US/ppcompdoc/Step_by_step_guide_to_dps_se.pdf
    Neil

  • AUDIO PROBLEM WHILE USING OR ALONG WITH WEBCAM

    Hi friends,
    SUBJECT : AUDIO PROBLEM WHILE USING OR ALONG WITH WEBCAM
    I'm not getting any sound while using web-cam.
    I tried recording my voice , and played.. i can see my video but audio
    Do we have any settings where i need to cross-check to make sure that everything being turned-on ?
    My laptop details:-
    HP Pavilion dv6 laptop
    Operating system Installed - Windows 7
    Can someone help me with this?
    Thanks
    kiran

    Hi,
    not sure if coincidence or the same question, but the same question got asked internally. The seeded option is required to get the OJSP filter installed. Here's the internal response
    ADF View integration with MDS not configured
    In web.xml, you need to have mds-ojsp intg enabled to load jspx base + customizations from MDS. In your web project in Jdev, go to ADFv project properties and select “Seeded customization” property. It would enable mds-jsp engine configuration in web.xml. If you want to use user personalization feature at runtime, you would need to select “User customization” property as well which would enable ADFv change persistence config in web.xml.
    Warning: Some of the metadata under ... is packaged as part of both WAR and MAR. This metadata cannot be accessed from WAR using MDS.
    For these two packages, you are including the files in both WAR & MAR. This warning conveys that since these base files are being put in MAR, at runtime they would be read from mds repository & not from WAR.
    Frank

  • Connection problem while trying to connect with server on i cloud??

    When i try to connect to i tunes i have a connection fault that says problem while rying to connct with server?
    Please help!

    I am having the exact same problem.  Cox has no fix.  I am in RI.

  • Problem while exporting to PDF with japanese character in Crystal Report X1

    Hi,
    I am using Crystal report X1 with classic ASP on a Windows 2003 Enterprise Server, SP 2. In my application, I have to export the report into PDF, CSV, DOC formats. I am have Japanese strings in the report. While exporting to PDF, empty boxes has displayed in the place of Japanese string and in CSV file, question mark has been displayed instead of Japanese string. But the Doc file is exported correctly. I have not installed any language support software either in server or in client machine. I have used MS Gothic and Arial Unicode MS fonts for the text-objects which has Japanese strings.
    Please give me a solution so that I will get PDF file with Japanese strings instead of empty box or question mark.
    Do I need to install any language support pack software?
    Thanks in advance.
    Regards,
    Manju

    Hi Don,
    Thank You for your reply. I have resolved the issue of exporting to pdf from crystal report X1 having Japanese data after installing the language pack.
    But when I am exporting to CSV or TXT, i am getting ??? instead of Japanese characters. I have tried "export" through crystal report designer and got ??? instead of Japanese.
    The Crystal report version I am using is Crystal report X1  11.0.0.1282
    Crystal Report Desinger is installed in Windows Xp machine
    Font set for Text object is Arial Unicode MS, MS PMincho, MS PGothic
    Does the Crystal report X1 11.0.0.1282 has the UTF-8 support for CVS / txt
    Please provide me a solution
    Thanks in advance,
    Regards,
    Manju

  • While opening specific Document "Not enough Memory" while rendering the Document with Large Image

    When Opening a PDF-File with a Large Image, the Adobe Reader and Acrobat will Crash while rendering with the Message Out of Memory.
    After some investigations this error is reproducable on Windows 2008 R2 and 2012 R2 Machines running on HP ProLiant BL460c Gen8.
    The Servers are updated with the latest Firmware from HP.
    This error does not occure on a Virtual Machine running Windows 2008 R2, so it seems like a Hardware dependent Bug.
    When disabling the Option Show large Images, the error will not Show up. But this is neither a solution nor a workarround, as we Need to Display all Information in the PDF.
    Thanks for any Help

    Hello SumitV
    Thanks for your answer.
    Indeed the Output File can be opened without any Errors. It's a good workarround, but it's not a solution.
    Why does it work (and much faster) on a Virtual Machine, but not on a very Powerful HP Machine?
    I hope Adobe will investigate in this case to solve it completely.
    We have a test machine where we could install some debug tools, are there any to get a deeper analysis of this problem?
    Thanks a lot.

  • Problem while creating a JButton with an Icon

    Hello,
    I'm experiencing a problem while setting an Icon to a JButton. Here is my code :
    Icon icon = new ImageIcon("TRONCONCIRC1.gif");
            JButton switchTypeButton = new JButton();
            switchTypeButton.setIcon(icon);
            switchTypeButton.addActionListener(new ActionListener(){
                   public void actionPerformed(ActionEvent e){
                        // Some Action
         });The button works well, but there is no icon on it.
    Does anyone have an idea ?
    thanks,

    Icon icon = new ImageIcon("TRONCONCIRC1.gif");
       //I thinks that the only problem it can be is that there is a wrong path
       //to your icon. Try tthe following. I am right if this will write null.
    System.out.println(icon);
    JButton switchTypeButton = new JButton();
    switchTypeButton.setIcon(icon);
    switchTypeButton.addActionListener(new
    ener(new ActionListener(){
                   public void actionPerformed(ActionEvent e){
                        // Some Action
         });

  • Problem while running report for Multiple Language

    Hi Friends,
    The set up for the apps is done for two languages 1. German 2. English.
    I’m printing Invoice Report. It is associated with MLS language function.
    It returns US or D (for German) according to the setup.
    When I run the report from English User, the report runs fine for MLS language function which returns 'US' and not working for ‘D’ as the template is not being picked up(it completed with status Normal and i'm able to see the output by running 'XML Report Publisher' program)
    Similarly when I run the report from German User, the report runs fine for MLS language function which return 'D' and not working for ‘US’.
    I have created two template for testing purpose.The setup for the template as follows.
    Language English Territory US.
    Language German Territory Germany.
    There is no effect on the combination of the language and territory.
    Please help me...
    Regards,
    A. Swain

    When a report terminates with an error, REPORT_OBJECT_STATUS returns the value "TERMINATED_WITH_ERROR", which is 21 bytes of data, but rep_status is defined as 20 bytes. The 6502 error is due to the data not fitting the variable.
    I recommend wrapping the REPORT_OBJECT_STATUS function with a SUBSTR that limits the data returned to 20 bytes, which will ensure the results fit.
    For example:
    rep_status := SUBSTR(REPORT_OBJECT_STATUS(v_rep), 1, 20);

  • Difference in the appearance of HTML vs. Standard reports generated with the Report Generation VIs?

    When I generate a "Standard Report" (to a printer or PDF) with the attached code, the output looks like this:
    If I instead use the same code to generate an HTML report, the output looks like this:
    Can anyone explain why the HTML output has had the extra spaces stripped out of it?
    Is there anything I can do to prevent it from happening?
    VI is attached (LV v11.0.1f2) but this is what it looks like...
    Attachments:
    Print Test.vi ‏47 KB

    SteveBale wrote:
    If you look at your html source the spaces are there. The problem is the way html is rendered it removes the spaces. You will either need to add in <pre> </pre> tags to tell the browser to include those spaces, or insert the string &nbsp; which the browser interprets as a single space.
    Regards,
    Steve
    OK, thanks. I guess I'll end up living with it the way that it is because
    using either method seems to also have the side effect of causing the output to become double-spaced and
    the only reasonable place to implement the change (so that it did not also impact the "standard report" output) would be within the report generation VIs and I'd rather not be modifying them.

  • Problems while uploading files using the FileReference API

    I've built an image uploader module in Flex using the FileReference API and PHP.
    While this works perfect for images upto 1 MB, What I'm noticing is that for images greater that 1 MB even after the Event.COMPLETE  has triggered, the file hasn't yet been uploaded into the folder.. its only after a couple of seconds or minutes after the Event.COMPLETE,  that the image actually shows up in the FTP folder. Morever I also noticed that for such files the DataEvent.UPLOAD_COMPLETE_DATA that we are using to get feedback from PHP never gets called.
    I thought it would be related to the PHP script getting timed out... but the PHP script does get executed and the images do show up in the folder but thats way after the Event.Complete has been triggered and more importantly  DataEvent.UPLOAD_COMPLETE_DATA doesnt get called.
    Everything seems to work fine as long as the file size is under 1 MB
    Did others too face similar problems and any ideas on how to fix it?
    Thanks in advance

    I don't believe there is, as the browse button renders out as an html input type file component, and this has no ability to get native file size from the client. The only way to do it is to check the file size server side, but that kind of defeats the purpose to some extent, as the file is required to be uploaded before the file size can be checked.
    There is no way to do this on the client short of using a third party client side component - ie. java, flash or some other active component that gets file system level access.
    Ben

  • Problems while making a MovieMaker with different transition and music.

    Hi..I am making a MovieMaker in flash.I dont have much of experince in flash ,There are some problems which I am facing.kindly guide me..Thanks.
    There are 4 things in my project.
    1)Uploading Images-First of all User will Upload the images,Based on those uploads there will be one xml generated which will be stored in a disc and by that xml the images uploaded be the users will be get in the flash.
    Problem1-How to generate an xml file that would be stored in disc or localhost through which we can get the path of images?
    2)Theme Selection-After the images have been uploaded and xml file have been generated then then the images would be loaded in one window.This is for the purpose of viewing those images that has been uploaded by users.After that there is one button below the window "Select Theme".In clicking that Button there is simply another frame opens (by removing child of the previous frames) in which there are some dummy animationswhich are already made .Like in oneAnimation there are 9 Transition effects fading,fly,spiral etc etc and in another Animation there are another 9 effects like zoom,blend  and so onetc.User can select one theme out of suppose 9 themes then that theme is the theme of their movie.There is one file called themes.xml tahat containes all the information of the themes.After the theme is selected ,There is button in ThemeSelection called Select Music.
    3)Music Selection-There are categories of songs like sad,instrumental,slow,pop etc,In each category there are some songs that are stored in server.Whatever the user will select that will be the theme song.songs are also fetching from xml.After selecting the song there is Make Movie Option in the music frame.
    4)Make Movie-Finally based on the above selection the movie is generated which should create new swf dynamically and user can download that movie also with above theme and music selection and those images should play that theme with the background music as selected by user.
    Problem2:-How to generate new swf that donot take images.xml,transition.xml and songs.xml.First of all i dont know how to create new swf at run time while using the file operations.and
    Problem 3-secondly if i made some swf supposingly movie.swf then whatever the user selected then based on those images,theme and songs selection i called the movieClip object of the movie.swf and all those images with the selected transition and background music are playing in it BUT they need the xml files and images.But i want to give the user one independant swf which dont use xml files and images folder.How can i do that?
    The Project is similar to this one
    http://pmdvd.kodak.com/
    Regards
    Ankur

    It looks like there is lack of fundamental understanding of flash/ActionScript capabilities.
    Your post covers too many topics - forum works the best if questions are focused. You may need to polish your knowledge which will allow you to have answers to some of the problems.
    The main thing you should know before proceeding is that one cannot generate swf files at runtime in Flash. And it doesn't matter if you go with Flash or Flex. Should swf generation be a centerpiece of your application, you may want to consider server side compiler.
    Otherwise you may not need to generate swfs at all but allow users to see results of their work with help of dynamic content generation including database. In any case, you probably will need and extensive server side application.

  • I could not open iPhoto on my mac pro ...clicking on it report generates with just ok button enable

    i could not open iPhoto application tried to uninstall and install it again still same problem....
    Error message comes up like this :
    Process:               iPhoto [1365]
    Path:                  /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:            com.apple.iPhoto
    Version:               ???
    Build Info:            iPhotoProject-910029000000000~1
    App Item ID:           408981381
    App External ID:       729712666
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           iPhoto [1365]
    User ID:               501
    Date/Time:             2015-01-04 15:09:44.980 +1100
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        3D91453B-A9AC-9C65-61B6-B0E5F96324D5
    Time Awake Since Boot: 4600 seconds
    Crashed Thread:        0
    Exception Type:        EXC_BREAKPOINT (SIGTRAP)
    Exception Codes:       0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    Dyld Error Message:
      Library not loaded: /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary
      Referenced from: /Applications/iPhoto.app/Contents/MacOS/iPhoto
      Reason: image not found
    Binary Images:
        0x7fff6625c000 -     0x7fff66292837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
    Model: MacBookPro11,1, BootROM MBP111.0138.B11, 2 processors, Intel Core i5, 2.4 GHz, 8 GB, SMC 2.16f68
    Graphics: Intel Iris, Intel Iris, Built-In
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x802C, 0x384B54463531323634485A2D314736453120
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x802C, 0x384B54463531323634485A2D314736453120
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x112), Broadcom BCM43xx 1.0 (7.15.124.12.10)
    Bluetooth: Version 4.3.1f2 15015, 3 services, 19 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM0256F, 251 GB
    USB Device: Internal Memory Card Reader
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.2
    please help me out.....!!!!!!

    Thanks LarryHN for replying me I tried that as well but finally I got the solution, I have by mistake deleted one of the iTunes library framework file while removing the virus.
    Following steps are done by me to solve the problem:
    1) I have removed the iPhoto by dragging it into the trash from applications
    2) I have empty the trash
    3) I have shutdown the laptop
    4) while starting it back, press and hold the command and r button until the apple symbol goes off , after which you can select the reinstall OS option -> that will rebuilt your OS if something has been removed without removing your files or data.
    5) after completion, install the iPhotos from app store
    Now, its working perfectly

  • Problems while restoring iPhoto library with Time machine

    Hello,
    I've had some problems in iPhoto 11 for a while. Pics being removed or altered in different ways.
    I then decided to restore my iPhoto library to an earlier date using Time machine. I used a one week old backup and after 2 hours or so when it was done, no pictures in the folder anymore! I panicked and restored once again, this time on the whole "Pictures" folder. Now i cannot even open the folder, i get this message - "The folder “Pictures” can’t be opened because you don’t have permission to see its contents."
    I am the system administrator.. ive checked the "get info" option and made sure that all users can "read and write" in the folder.
    When I try to restore the Pictures folder again i get a message telling me that it cannot be restored because the folder is being used... even if i dont use it!
    I really need help to solve this... 60Gb pictures are gone
    Please help me! What can i do? Is there any way to do a complete system restore for 1 week so i get rid of these problems? Or what would be the best and easiest fix?
    Sorry if i placed this thread in the wrong place, but i think there are multiple problems that belong in different areas...

    First ry the following on the library:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete the contents the following folder:
    User/Library/Containers/com.apple.iPhoto
    3 - reboot, launch iPhoto and try again.
    NOTE: For Mavericks, 10.9,  go to your Home folder and use the View ➙ Show View Options menu to bring the this window:
    where you can check the Show Library Folder checkbox.
    If there's no improvement continue with: Try the following:
    1 - launch iPhoto with the Command+Option keys held down to open the First Aid window.
    2 - Run Option #4, Rebuild Database, and if needed Option #1 and Option #2.

Maybe you are looking for

  • ICloud / Calendar app keeps changing my calendar colors

    I just noticed this happening two days ago, the calendar app on my iphone and macbook is changing the colors of my calendars at random. They're only cycling between two colors for each of the 3 calendars (the original color, green, orange, purple and

  • XSLT issue: copy-of

    Hi friends, I'm now having an issue when using copy-of in XSLT: I have a top node called PutXMLDocument, a second level node XMLString, and 3 level nodes in my xml. With a XSLT mapping, I'd like to move all contents of 3 level nodes into 2nd level no

  • ADF TreeTable - How to hide Disclose/Expand icon for leaf node

    We are using ADF Tree Table in our application. Whenever a node is expanded - all the child nodes have the disclose/expand icon along with it. But, we don't want to show the disclose/expand icon if it is a leaf node. How can this be done? JDeveloper

  • How To Sync WITHOUT Changing App Pages On Device

    *Help please. I can connect and sync my iPod Touch without probs. I want to sync apps WITHOUT changing the pages, or location of icons on each page, as they appear on my device. How may I do this?? There are options to "sync by" size, date, etc, etc.

  • Can't Download oracle 10g

    Bonjour, J'ai le message "Exceed_File_Count_Limit" lorsque je télécharge : 10g_win32_db.zip pour windows 32bits. exemple : 10g_win32_db.zip (604,263,765 bytes) (cksum - 1594035171) Savez-vous comment résoudre le problème. P.S : Idem avec Entrepri