How can I create a high res image gallery, need to have print res photos for a pressroom section.

How can I create a high res image gallery, need to have print res photos for a pressroom section.

If you want Muse to "pass through" your images and not adjust, compress, crop etc - you need to place your images in the lightbox EXACTLY at the right size, pre-cropped and prepped in Photoshop.
So if your light box is 800x600 the image you're dropping into that must be 800x600 exactly with no effects, rotation etc added to the lightbox frame. This stop Muse fiddling with your images, if they are perfect when inserted and you're not asking Muse to crop, expand, add effects etc. If it's perfect when inserted, Muse SHOULD also leave the resolution alone too, but I have not tried that one, but in theory, it should work.

Similar Messages

  • How can I create a java.awt.Image from ...

    Hi all,
    How can I create a java.awt.Image from a drawing on a JPanel?
    Thanks.

    JPanel p;
    BufferedImage image =
        new BufferedImage(p.getWidth(), p.getHeight, BufferedImage.TYPE_INT_RGB);
    Graphics2D g = image.createGraphics();
    p.paint(g);
    g.dispose();

  • HT2731 how can i create apple id account if i don't have credit card?

    how can i create apple id account if i don't have credit card of any gift certificates from itunes?

    You already have an Apple ID, or you wouldn't be posting here. I presume you mean an iTunes Store account. If you only want the free apps, take a look here:
    http://support.apple.com/kb/HT2534
    Read the steps carefully as the order in which you follow them is  critical. Note that you can do this only when creating a new Apple ID. You cannot use an existing ID. 
    You will of course not be able to get anything other than the free content without entering in some sort of payment method (credit card, prepaid iTunes card, gift certificate, etc.)
    Regards.

  • How do I create a High Quality Image with a low file size???

    Dear All,
    I am creating an invitation in Illustrator which I then place into photshop to create a JPEG. I want to create a high quality JPEG version of it but with a low file size because I am emailing the invitation. Am I correct in placing the image into photshop or should I export it from Illustrator.
    The image is built of of vectors and one JPEG but they are not high in quality.
    Can anyone help me please
    Thanks
    Ben

    The image is built of of vectors and one JPEG but they are not high in quality.
    For this type of image you would probably be better choosing GIF format (now known for some reason as 'Compuserve GIF'). Taking the number of "colors' down untl it still looks high quality, and anti-aliasing is preserved.

  • How can I create a rotating basketball image in Motion?

    I need to have a basketball rotate and do a full 360 degree. I took an image from Google Images and dragged into Motion and applied the sphere filter. Is that the best 3D looking basketball I can get from a 2D image? Thanks!
    Message was edited by: Host <to correct typo in title, change it to clarify>

    You need an unrolled basketball image and wrap that around a sphere...
    Like this:
    Patrick

  • How can I create a host name site collection when I have a 443 web application already created for App model?

    Hi all,
    I have a 2013 farm set up with the App model
    1 web application for path based site collection using host name
    1 web application with SSL (no host name)
    1 web application for mysite
    My business request is that  I need to migrate SSL enabled 2007 content to this farm and use host name site collections.  I tried to create one more web application for this without any luck (the 443 IIS folder is already used by another web application). 
    I thought I bind the previous 443 web application with another IP address should be fine.  Seems like the IIS site is taken (https://server name:443) so it will not let me create one more.  How can I solve this problem so I can create the web application
    to host those host name site collections?  Any suggestion is greatly appreciated.
    Thanks in advance.
    Sally

    Hi Trevor,
    Thanks again for your quick reply.  I try the option 2 right after your post.  I use my front end server name for public URL (https://WFEName:443) and it fails again.  The error message is:
    The directory C:\inetpub\wwwroot\wss\VirtualDirectories\443 is already being used by another IIS Web Site.  Choose a different root directory for your new Web application.
    After reading more, I saw mix Hosted Name Site collection and Path-based site collection aren't recommended.  Unfortunately I already have Path-based site collection created with App model web application
    (the web application without host name) in my farm.  In my Option 2, that web application without host name is used for App routing.  This takes the root folder 443 which will not allow any other web application to use the same name again. 
    Does that mean we can't create Host Named Site collection in the same farm?  Is there any configuration I need to check?
    Thanks again.
    Sally

  • How can I place a Lightroom 3 image gallery in a Dreamweaver page?

    I would like to use an image  gallery that I built in Lightroom 3 in a Dreamweaver CS5 website. I  would like the image gallery to operate on my Dreamweaver page, not to  be re-directed to a different page.
    I'm pretty sure this  is possible, but in my search for help in the forums, books, etc., I am  not having much luck. Perhaps I'm using the wrong search words? Help to  direct me would be very much appreciated. Cheryl B.

    You'll need to work in CodeView.
    Copy the relevant code from your image gallery page into your site page.  Adjust paths to images & scripts as necessary.
    Another simpler approach, insert an iframe into your site page. Point the iframe src to your gallery.html page.  Adjust iframe height and width to accommodate the size of your gallery page.
    http://w3schools.com/html/html_iframe.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How can I create a single background image for a BorderLayout?

    I can create a background with an image file for the individual panel (North, West, Center, East and South) in a BorderLayout, but I've been spinning my wheel for a long while now trying to figure out how to create just one background with a single image file for all of these panels?
    In my application, a panel may contain various buttons, a listbox, a group of checkboxes, a combo box, or a canvas. Even if I used the same image file, when the panels are finally put together, one can clearly see that the end product is the result of a lot of patch works.
    Hope someone has an answer for this. BTW, I'm using AWT because it works with existing browsers without the need for a separate Java plug-in.
    Regards,
    V.V.

    Look at this :
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import java.awt.image.BufferedImage;
    public class PanI extends Frame
         Image map;
         Panel pan;
         myPan p8,p4,p6,p2,p5;
         BufferedImage I;
    public PanI() 
         addWindowListener(new WindowAdapter()
        {     public void windowClosing(WindowEvent ev)
              {     dispose();
                   System.exit(0);}});
         map = getToolkit().getImage("map2.gif");
         MediaTracker tracker = new MediaTracker(this);
         tracker.addImage(map,0);
         try   {tracker.waitForID(0);}
         catch (InterruptedException e){}
         I = new BufferedImage(1,1,BufferedImage.TYPE_INT_ARGB);
         setBounds(10,10,map.getWidth(null)+8,map.getHeight(null)+27);
         setLayout(new BorderLayout());
         pan = new Panel();
         add(pan,BorderLayout.CENTER);
         pan.setLayout(new BorderLayout());
         pan.setSize(map.getWidth(null),map.getHeight(null));
         p5 = new myPan(5);
         p5.setBackground(Color.red);
         pan.add(p5,BorderLayout.CENTER);
         p8 = new myPan(8);
         p8.setBackground(Color.orange);
         pan.add(p8,BorderLayout.NORTH);
         p4 = new myPan(4);
         p4.setBackground(Color.blue);
         pan.add(p4,BorderLayout.WEST);
         p6 = new myPan(6);
         p6.setBackground(Color.green);
         pan.add(p6,BorderLayout.EAST);
         p2 = new myPan(2);
         p2.setBackground(Color.pink);
         pan.add(p2,BorderLayout.SOUTH);
         setVisible(true);
    public class myPan extends Panel
         int where;
    public myPan(int i)
         super();
         where = i;
    public void paint(Graphics g)
         if (I.getWidth(null) != pan.getWidth() || I.getHeight(null) != pan.getHeight())
              I = new BufferedImage(pan.getWidth(),pan.getHeight(),BufferedImage.TYPE_INT_ARGB);
              Graphics      G = I.getGraphics();
              G.drawImage(map,0,0,pan.getWidth(),pan.getHeight(),null);     
              G.dispose();
         int x1=0;
         int x2=getWidth();
         int y1=0;
         int y2=getHeight();
         if (where == 8)
         if (where == 2)
              y1 =  p8.getHeight()+p5.getHeight();
              y2 =  getHeight()+y1;
         if (where == 4)
              y1 =  p8.getHeight();
              y2 =  y1+getHeight();
         if (where == 5)
              x1 =  p4.getWidth();
              x2 =  x1+getWidth();
              y1 =  p8.getHeight();
              y2 =  y1+getHeight();
         if (where == 6)
              x1 =  p4.getWidth()+p5.getWidth();;
              x2 =  x1+getWidth();
              y1 =  p8.getHeight();
              y2 =  y1+getHeight();
         g.drawImage(I,0,0,getWidth(),getHeight(),x1,y1,x2,y2,null);
    public void update(Graphics g)
         paint(g);
    public static void main (String[] args) 
         new PanI();
    Noah

  • How can I create a bootable DISK IMAGE of my PB Internal Drive?

    I would like to make a bootable image of my Hard Drive but without including any Free Space.
    You see all I need on the image are the OSX and the programs, NOT the 60GB of Free Space. Disk Utility however wants to create a 80gb image which includes 60GB of Free Space.
    I would like to use the Bootable image as a source image to use with the RESTORE function in Disk Utility.
    Regards

    You'll need a second machine or an external HDD with Mac OS X installed on it.
    For purposes of this procedure I'll be calling your machine the 'source' and the second machine or your external HDD the 'target'.
    First either boot the source into target mode by holding down the 'T' key while it boots. Once you see the FireWire icon on the screen, let go of the 'T' key and plug the source into the target. If you're going with the external HDD route, boot your source of off your external HDD.
    Now, select the drive of your source machine, and hit Apple-I to bring up the information pane. Down at the bottom (in the permissions area) you'll see a check box labeled "Ignore ownership..." Uncheck that.
    Open up Disk Utility. Select the source drive and run First Aid and Repair Permissions on it.
    Now, select the File menu -> New -> New Disk Image from Folder. You're going to want to hit that big "New Image" button, but don't. Trust me. It'll only cause trouble for you down the road.
    Select the source drive as the source. You can leave everything else the same and click "Image".
    Select the target as the destination. Click Save.
    Wait for a couple of hours (depending on how much stuff you have).
    When it's done, select the Images menu -> Scan image for Restore.
    Select the disk image you just made and click "Scan".
    When that's done you have a restorable image. Just use the restore tab to restore it.
    I've done this literally hundreds of times and it's worked every single time.

  • How can I create a negative from image in iPhoto

    I wish to create a negative from an image in iPhoto so I can print as if the negative. Is it possible to do this in iPhoto?

    GraphicConverter, Pixelmator  and Photoshop Elements for Mac all have the invert function.

  • How can I create a jpeg thumbnail image?

    I'd like to create a clear jpeg thumbnail image of the first page of a document created in InDesign.  It will be used in Constant Contact as a link to the online version of the document.  (Constant Contact doesn't take JPEG's)
    I especially need help making it crisp and clear.
    Thank you!

    And there will be occasions when it's not better, and there are alternative ways to get better results.
    You may not have tested every situation and font, but I've done enough to know that sometimes it doesn't work as expected. And it wasn't a "challenge", it was an observation.
    Here's 3 ways to make a JPEG - and the one that is the best is the one that was exported to PDF and then opened in Photoshop and then Saved as a JPEG.
    .........Direct Export .........................Export PDF................................Export PDF
    .....to JPEG.from ID.....................Open in Photoshop.............Save to JPEG from Acrobat.
    (EDIT - The forum is adding extra compression to the images - I assure you the middle image is the best)

  • How can I create a gif slider image in PS?

    Right now I have a jquery slider on my homepage but I would like to replace it with a gif image. Is this possible?

    I don't see why not. Keep in mind gif is a poor format as it does only has 256 colors, one of which is used for transparency. Meaning a single shade of gray for transparency vs. 256 shades of gray for transparency in any other format that supports transparency.
    I don't think I have ever used the word transparency so many time in one paragraph. LOL...

  • How can we create a data source on structures

    Hi,
       How can we create a data source on structures.
    Regs,
    abdul

    Abdul,
        Welcome to SDN!
        We can't create Datasource using Strcutres. We need to have base tables.
        For Function Module Extractors, we will create strctures. We will use these strctures as Extract Structures. But, we will get the data from Base tables only not from Strcutures.
    Strctures won't contain data.
    all the best.
    Regards,
    Nagesh Ganisetti.

  • How can I create a Online Store using Muse?

    How can I create a Online Store using Muse?
    I have been looking around for solutions but I can't find one.
    I was just hoping that someone else might have known of a way.
    Thanks!

    Since you can access the Alpha File Manager it means the option to "Enable online content editing (incompatible with Muse)" is ticked up under your profile details. With this enabled you can create Web Forms under Site Manager. Once you create the contact form open the Alpha File Manager (AFM), select the page where you want to insert this and choose the Web Forms from the right hand column. On the pop-up window select the web form to insert and click Insert.
    Regarding the upgrade, as long as the site is in trial mode you can choose any plan for the site, see my answer #7. Create a new trial site, choose the link to the new trial site created from PP and publish your site there for testing purposes so you will have ecommerce included and available for you to try out.
    If things go well you can request an upgrade to your current site to have the ecommerce included (the only situation in which this upgrade won't be available is when the site is published on one of the 5 sites received with the CCM subscription, they are webBasics and cannot be upgraded: http://www.adobe.com/products/creativecloud/publish-anywhere.html under "Publish websites" section, and the option will be to create the site from partner portal and publish the content from Muse)
    At this moment indeed there's little documentation on how to integrate the two but this is because Muse is just not ready to take advantage of BC capabilities. It was never intended for CMS features of BC to be available in version 1 of Muse. This has already been mentioned a few times (one relevant example: http://forums.adobe.com/message/4355214#4355214#4355214)
    Regards,
    Cristian

  • HT4623 how can i create an apple ID  account without a credit card???

    how can i create an apple ID account without a credit card?

    Try the More Like This  section on the right
    Also, Please See item 3 Here  >  Community etiquette

Maybe you are looking for

  • How can i fix this for my iPhone4? "attempting to copy to the disk "iPhone" failed because the disk could not be read from or written to. "

    i keep gettign this message when trying to drag music in itunes. attempting to copy to the disk "iPhone" failed because the disk could not be read from or written to.

  • HDX18T Monitor Goes Black

    For the past week or so, I've had to move the power plug around to get the laptop to charge. I determined that it's not the cable, but is the internal part. Today, when I opened the lid to bring the laptop out of sleep mode, my desktop displayed for

  • Anything wrong with starting a new catalog

    I use PSE3. I have over 9,000 pics in My Catalog. I was thinking the turn of the year would be a good opportunity to begin a new catalog. But I vaguely recall that some think that's not a good idea. I can see that there could be inconvenience if I wa

  • SFTP refuses to connect, ports 21 & 22 closed on my end?

    I have an off-site storage server I can use that I constantly SFTP into. All of a sudden my SFTP client starts telling me the connection is refused. The IP guys say it's not on the server's end and that it's my computer. I've port-checked ports 21 &

  • Adobe AIR communicate with PHP

    Hi, How can I have Adobe AIR program to communicate with PHP? For example, I need my app to get some value from PHP and display it. I have tried with "webservice" and using the example I found here: http://dimuthuc.blogspot.com/2008/01/php-webservice