Portal DLL Size changes when recompiled?

I have built a custom UI scheme, and when I build the portal50 solution, I noticed that the portal DLLs changed size and are somewhat larger. I have not modified the code of the core portal UI; I only added my own projects which generate their own DLLs. Has anyone else experienced this? Are there some optimizations that aren't configured by default when compiling in release mode that I should be enabling?
Thanks, Tim Halbach

I think it's because of default style of the page on which portlet is placed on.

Similar Messages

  • Image size changes when moving an image between Lightroom and CC.

    Image size changes when moving an image between Lightroom and CC.
    I opened a .dng image in LR and then opened it in the Develop module.  I clicked on Crop Overlay and then on the ‘As Shot’ drop down menu (the lock is closed) and cropped to 11 x 17 and clicked ‘Done’-.
    I click Cntl-E and the image opens in CC.  There I click on Image > Image Size and the Image Size  is 13.288 inches by 20.533 inches.
    Why does the image size change?
    I believe there is a menu to control the size of the image and I've looked everywhere I can think of in LR and CC, I googled various descriptions and I checked two of Scott Kelby's books, but I just can't figure out how to keep the image a consistent size when moving between LR and CC.
    Help!...Please?

    The penny will drop soon or maybe the cloud will lift.
    In Lightroom all editing is undoable/nondestructive.
    Hence a crop of 3x2 is not inches, centimetres, pixels or anything else. It is jst a ratio. When a file is exported, either to PS or disk, then the crop ratio has size determined in respect of pixels and inches or cms.
    So my 6000x5000 pixel image I will crop to 3x2 that leaves (before exporting) a 6000x4000 file.
    Now when exported it can be set to export at
    100pixels per inch and will end up at 60x40" when printed.
    200pixels per inch will end up at 30x20"
    300ppi will end at 20x13.3"
    You will notice in the Crop Tool there are no size denominations such as inches or centimetres as an image file only has pixels and the determination of size is done through exporting or printing.
    Hope that helps somewhat..

  • My font sizes change when I send e-mails from Apple Mail.

    My font sizes change when I send e-mails in Apple Mail.  Sometimes the font style changes, too.
    This is unacceptable, as I use my e-mail for business applications. 
    Any suggestions for a fix?
    Thank you.

    Before you do that I must warn you that also with PC is the same.
    It's not the hardware nor the software that makes the difference, because e-mail must obey to certain rules that is RFC.
    Maybe what you are looking for is a message that looks like a web page.
    You can find something of that kind here.
    http://www.jumsoft.com/stationery/
    But again, the recipient e-mail could have little differences from the original that depend on many variables
    If you are curious enough to know a little more about electronic mail you can read this page
    http://en.wikipedia.org/wiki/Email
    P.S.
    IMHO you already have the best in Hardware and software. It would be a pity to give away that gem

  • After copying a file from NTFS to HFS volume, file size changed when viewing in Windows

    Hi guys,
    I have a Mac Air running Mavericks on a HFS partition and Windows 7 on a BOOTCAMP NTFS partition. I have some files that I want to read/write from/to both systems. Since OS X can't write NTFS and Windows can't write HFS either, and I don't want to use any 3rd-party tools/drivers, I have to adopt a "stupid" way: in OS X, I copy those files from NTFS to its HFS partition, make changes, then switch to Windows and sync them back to NTFS.
    The problem is, after I copied a file from NTFS to HFS in OS X, it seemed ok. But when I switched to Windows, the very copied file in HFS partition had its size changed (bigger) although I didn't make any changes to it in OS X yet. This happens to almost every file I copied, text and binary. For those text files, I tried to open it with EditPlus in Windows and EditPlus reports the correct size on the status bar.
    How could this happen?

    I am not sure if this is what your seeing but...
    The same unaltered file on two different volumes might use different amounts of disk space. This is because a 'disk' is divided in to 'blocks' and a block (also historically known as a 'sector') is a certain minimum size. So if disk-1 has a block size of 512 bytes and disk-2 has a block size of 1024 bytes then a file containing just 10 bytes will use up twice as much space on disk-2 as disk-1 even though it is the exact same file.
    Beyond that, Macs can add additional information like Spotlight tags, labels, icons, etc. which make a file bigger. If you are modifying a file then presumably that also implies adding additional content e.g. for a Word document more text and this will make it bigger. Also depending on some programs are configured or designed 'deleting' text may only mark it as deleted and not really delete. This can apply to older versions of Word which has a 'Fast Save' feature, new versions have removed this and do a proper delete.
    You would have to give more details like what you are doing to the document, what kind of document, and what the two sizes are.
    Finally, there is one other potential difference, some systems and manufacturers use 1024 as a unit for measuring file and disk sizes, some use 1000. It will be the same number of bytes in each case but 1000 bytes in one case would exactly equal 1MB, and in the other it would be 0.9765MB.

  • Slide size change when clicking on pdf links (Acrobat 9 pro)

    Hello,
    I have a problem with an interface mock up I have to deliver to a client.
    The size of image is changing from a slide to another.
    For example, when I click on a home button (this button is a link made in acrobat pro, that send to another page of the pdf document), the slide size changes from full screen to a smaller size with a black border around.
    SOrry it's hard to explain, so I put 2 screenshots and hope it will be clear enough >
    This happen only if I use clicks on the links.
    If I just use the next / previous command (for example if I use keyboard's arrows), the size remain full screen and unchanged for the whole slides.
    Can you tell me how to fix this problem?
    Best regards,
    Mega

    Something to try.
    Using the link tool select the link.
    View the link's properties.
    Select the Actions tab.
    Select the show action then click the Edit button.
    Observe what is displayed.
    You'll note that you can configure the value for "zoom".
    Be well...

  • How Image size changes when zoomed ?

    Hi,
    I am using the following method code to zoom-in and zoom-out my images.
        public void zoom(double zoomFac) {
            this.zoomFac = zoomFac;
            atx.setToScale(zoomFac, zoomFac); // global attribute AffineTrasform
            ParameterBlock pb = new ParameterBlock();
            pb.addSource(getDefaultOrjImage());
            pb.add(atx);
            pb.add(Interpolation.getInstance(Interpolation.INTERP_BICUBIC_2));
            rImage = JAI.create("affine", pb);
            repaint();
            this.setPreferredSize(new Dimension(rImage.getWidth(), rImage.getHeight()));
            updateUI();
        }One can notice that I am using Bicubic interpolation for the purpose.
    I want to predict the size of Image for a given zoom factor. How can I do this?
    I've seen the algorithm of Bicubic Interpolation, but coulndt figure out how I can use its details to predict the size change of the image.
    clearly speaking if my image's
    width = 512, height = 512,
    What will be the width and height when the image is zoomed with zoomFac = 1.2
    Thank u for ur time.
    Regards,
    Rajesh Rapaka.

    The penny will drop soon or maybe the cloud will lift.
    In Lightroom all editing is undoable/nondestructive.
    Hence a crop of 3x2 is not inches, centimetres, pixels or anything else. It is jst a ratio. When a file is exported, either to PS or disk, then the crop ratio has size determined in respect of pixels and inches or cms.
    So my 6000x5000 pixel image I will crop to 3x2 that leaves (before exporting) a 6000x4000 file.
    Now when exported it can be set to export at
    100pixels per inch and will end up at 60x40" when printed.
    200pixels per inch will end up at 30x20"
    300ppi will end at 20x13.3"
    You will notice in the Crop Tool there are no size denominations such as inches or centimetres as an image file only has pixels and the determination of size is done through exporting or printing.
    Hope that helps somewhat..

  • Photo size changes when printing

    This is my problem. When I view a photo in my event, I am happy with the image. When I go to print, I find that parts of my image are cut off. It looks like the image zoomed in a little. How can I print the image exactly like it is displayed in the event? Also, this doesn't seem to change when I print different sizes, parts of the original image are always missing on the print.

    Crop the photo to 11 x 14 before printing. That will insure that what you see in the cropped image will end up in the printed 11 x 14 image.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Line size changes when using Rotate??

    Hello:                                                                           Level: Newbie OS: Windows 7 64bit
    So, I have been using the Line tool and then Grouping two Lines and then using the Object > Transform > Rotate
    The lines I draw are 0px wide and 22px high but when I Rotate them around the circle the Line sizes change ... ??
    Say the two lines are Grouped and the first set is 276px the next set becomes say 276.346 and then 275.582 and 198.682 and so on ...
    I have gone into the Tranform pallette to see if there is something I should be checking but it doesn't seem as though I am missing anything to the best of my (limited) knowledge.
    I have also tried the manual and looked for something like: "why line size would change on rotate" and I've looked under Transform and Rotate but I haven't had any luck.
    As always ... Thank you so much for your time

    OMG! LMAO!! I am literally laughing my _ _ _ off!!
    Sooo Sorry, did i forget to mention that I am dyslexic?? wasn't trying to be cunning ... lol
    Also, and ... Pleeeeease Forgive Me for this ... I didn't take into account that you would actually check the 276.346 ... etc. in my first post ... thought I had mentioned those were just "examples" ... seems It didn't make it from my head to the keyboard to the post
    I just pulled those number outta that thing I'm laughing off ... and now between the tears of laughter I am feeling Super Bad for not considering that those numbers would matter all that much ... I swear ... I'm not usually this numb!
    So, I spoke to someone at Adobe today and it seems as though I am not Aligning things correctly.
    I'm just getting back home again and I'm going to give the tut a go again.
    I'm using CS6 .... have I also mentioned this is my first Illustrator attempt?
    Below is the compass I made in two days ... it's missing the last two steps. I'm also stuck on that dang "Glossy" thing but hey, that's an other post for me to lead you all astray on
    My head has been a bit in the clouds this past week ... so,  I am sorry for that and certainly do Very Much Appreciate Your Amazing Vigilance w/All My Heart!!
    I just cannot give up. I'm not a quitter. I believe I ought to brush up on my (p. poor) math skills as well as sitting down to read the manual front and back before an other tut attempt.
    Thank you again for Everything!! I'll be back to let you know how it goes.
    The inner circles and increments don't look right to me

  • Adobe Reader, MS Office window size changing when switching displays

    I have a current generation (mid 2012) MBP with Retina Display running ML 10.8.3. I also have a Dell U2413 monitor, confgured for
    1920x1200 resolution, connected via a Thunderbolt to Display Port cable that came with the monitor.
    When I switch displays, Adobe reader, Excel, and Powerpoint all have their window sizes change dramatically. Reader
    shrinks to just the status bar and is tucked in the very bottom left hand corner (it took me quite some time to even see it
    was there at all); Excel windows expand dramatically to be much larger than full screen, and Powerpoint windows shrink
    to about 1.5" square. Other windows (Mail, Chrome, Safari, iTunes) change or move slightly but are more or less OK.
    I know this problem is expected when switching to an external monitor with dramatically lower resolution (e.g. old In Focus
    projectors) but I don't believe it should happen with a hi-res monitor like the one I'm using.
    I have compared this behaviour with other users running same SW versions and external monitors with the same
    resoultion and they don't see this problem so I'm guessing there's some configuration option or low level setting
    that is messed up.
    These window size changes happen going both from internal to external and external to internal. Any ideas?

    I have a current generation (mid 2012) MBP with Retina Display running ML 10.8.3. I also have a Dell U2413 monitor, confgured for
    1920x1200 resolution, connected via a Thunderbolt to Display Port cable that came with the monitor.
    When I switch displays, Adobe reader, Excel, and Powerpoint all have their window sizes change dramatically. Reader
    shrinks to just the status bar and is tucked in the very bottom left hand corner (it took me quite some time to even see it
    was there at all); Excel windows expand dramatically to be much larger than full screen, and Powerpoint windows shrink
    to about 1.5" square. Other windows (Mail, Chrome, Safari, iTunes) change or move slightly but are more or less OK.
    I know this problem is expected when switching to an external monitor with dramatically lower resolution (e.g. old In Focus
    projectors) but I don't believe it should happen with a hi-res monitor like the one I'm using.
    I have compared this behaviour with other users running same SW versions and external monitors with the same
    resoultion and they don't see this problem so I'm guessing there's some configuration option or low level setting
    that is messed up.
    These window size changes happen going both from internal to external and external to internal. Any ideas?

  • Color and size changed when upgraded to photoshop CS5

    Hi, I created a flyer in an older version of photoshop and when I upgraded to CS5 the colors and print size changed. This is particularly distirbing b/c this is a flyer/advertisment for work that was almost at the final stage. They are quite small changes, but changes that need to be corrected just the same. The colors look different (duller) on the screen and in print while the size became smaller when I print (to pdf and the printer). My print settings are the same as before as are my color settings (CMYK). I am fairly new at creating flyers in photoshop, so I am hoping this is a simple fix. Thanks.

    Are you 100% certain you are using the same color profiles throughout? That print size issue might be specific to your printer driver... CS5 has a completely rewritten print handling which may not correctly cooperate with your printer driver or conversely the driver might need to be updated...
    Mylenium

  • Font size changes when pasting ito new layer

    Since I updated Phothoshop to CC a strange error occures. When I copy text from one layer and paste it into a new layer the font size changes. I have tried resetting the texttool but this has no effect. Does anybody know what the solution to this problem can be?
    OS 10.9.4, CC 2014

    This should not happen.
    Try duplicating the layer with Ctlr + J...

  • Strange size change when saving ai file as jpeg

    Greetings all!
    I have a quick question (I believe!). I have a couple of images that I am saving as jpeg files. So, I have noted that today only (it worked fine yesterday) when I go to save the file to web, the size of the image changes from 400 px high to 430 px high. I didn't select anything to make each file change like that. There is a white area at the top of the image (which isn't good 4 my image). When I reduce the size of the jpeg - it reduces the image (so the white area remains).
    Does anyone have a suggestion? This has happened with more than one image.
    Thanks 4 your help, Marty

    If you have images to convert to jpg, use photoshop instead.
    If the white are on top is 30 pixels, then you must have a stray point in your document or something that is not visible, but adds to the bounding box of your image. Do a Command Y in illustrator to see if something is there. Also if you are placing images into Illustrator, your original image may have a clipping path or something that is adding to your bounding box.

  • Unwanted image size change when moving a image it's Tab to another Tab in CC 2014

    Hi, I opened a photo with a physical size 16"w 36"h. Since role paper comes in 24" width, I proceeded with expanding the canvas size to 24"w, height is unchanged at 36". Then I opened two photos in separate tabs in Photoshop, changed the image sizes to 8"w x 12"h. One Photo is from a 36megapixel camera and the other from a 16megapixel camera. Created two layers in the 24x36 image tab. Then I proceeded to copy each photo and paste in each of those layers (one image per layer in case you’re wondering). The problem is as follows, the copied images are larger when pasted into those layers, 10” wide and not 8”, 14”high and not 12”. Thinking maybe the canvas size had something to do with this, so I made that change. The result was the same, larger when pasted into those layers, 10” wide and not 8”, 14”high and not 12”. Could someone please advise what I’ve done wrong? Note, the ruler bars are visible. Thanks

    When you bring one image into another, it is the pixel size that counts.  The physical size of the source image becomes irrelevant.

  • Image size change when save as jpeg

    Hi
    I have recently encountered an issue when I save file as jpeg in CS6. I prepared my image for printing and my image is a bit smaller than the print size (20" x 40") so I created a new file (8 bit) with new exact print size. Then I placed my image into this newly created layer and adjust my image size to fit. After this, I flatterned the image and went to file>save as and picked JPG extension. Dialogue box appeared and I selected 10 for quality (scale 1-12) then I hit ok to save. After that I went to open the newly saved JPG file and check the file size and for somereasons, It has been halved to around 10"x20". However, pixle dimension of the image remained unchange because I have unticked resample option. Does anyone have any ideas of why this is the case as It's doing my head in.
    Thanks
    Dean

    This has been discussed ad nauseam here.  Please do a forum search.  < sigh >
    Bottom line:  If the pixel count remains the same, your image has not been "reduced or halved" at all.  Just change the ppi resolution accordingly without resampling.
    Save for Web defaults to 72 ppi regardless of what you had specified earlier,´.

  • Alac file size changes when added to iTunes

    Hello,
    I've converted some FLAC files to ALAC using dbPowerAmp.  The file bit rate remains unchanged.  However, when I add the ALAC files to iTunes, the bit rate shown in iTunes is reduced.
    Example - Alice Cooper, Hello Hurray
    FLAC Bit Rate - 4608 kbs
    Converted ALAC Bit Rate - 4608 kbs
    iTunes ALAC Bit Rate - 3012 kbs
    Any ideas what's going on?
    I'm using iTunes 10.7.0.21
    Thanks.

    Nothing has been changed.
    Sounds like iTunes & dbPowerAmp figure the bit rate differently.
    dbPowerAmp uses the uncompressed file sizeand iTunes figures the compressed file size.
    Since the file is smaller, the bit rate will have to be lower.

Maybe you are looking for

  • PJC CURSORPOS NOT WORKING CORRECTLY

    Hello I require cursor positioning control within a block item offered by the Forms Demo Cursorpos PJC. After a similar problem successfully resolved in a previous release Forms 9i, I followed the same steps for Forms10g. Using my local OC4J environm

  • Unregistering of a database from RMAN Catalog

    Hello, We had set up RMAN backup though RMAN Catalog for one of our database. We later decided not to take the backups of this particular database. One of the DBA did something but what we can see now is that - 1. Target database is not registered in

  • Detection method for first time a Node is rendered

    Hello, I need to lazily perform some computation until after a particular Node is shown to the User. So if the app has multiple tabs, the goal is to not do work for a tab that hasn't even been switched to yet. I figured the VisibleProperty of Node wo

  • How can I make xterm show Unicode chars other than Latin and lines?

    I'm trying to get my terminal (xterm) to show more Unicode characters. The UTF-8 and Unicode FAQ for Unix/Linux suggests that xterm can display quite a wide set, but I'm not seeing that. I have the locale resource set to true as suggested in the wiki

  • Calendar could not be found?

    I think I solved the problem.  I went to ical then selected calendar then selected go offline.  The pop up request error Calendar could not be found message has not showed up.  I will keep everyone informed if that should change.