How to zoom the webpage in CS3

Hey guys
I have a standard website, but need to create another copy
which enlarges this by 400%.
I know that internet explorer has this facility, but I want
my website to already have this, so that a visually impaired user
can use this straight away.
Do you know whether the CSS can be adjusted or will I have to
enlarge every item on the website (picture on the website?)
If there is code available I will be most grateful. Thanks
Johney

JoeyD1978 wrote:
> There's not any way to do what you're looking to do
easily no. You can't make a
> web image 400% larger without severally distorting it
anyway, so you'll need to
> acquire the same version of your image, but at the
larger size you need. Once
> you have your assets you can build the larger version.
>
> You can look into javascript/css options that will let
you enlarge the *text*
> of your site, those use to be pretty common, but again
that won't do anything
> for your images.
>
> I'm curious though, since people with visual impairments
are already used to
> just pressing ctrl + to enlarge the site, why do you
think you need to do this?
They probably have there browser setup with zoom on already,
so when
they visit this zoomed version it will be way too large.
Dooza
Posting Guidelines
http://www.adobe.com/support/forums/guidelines.html
How To Ask Smart Questions
http://www.catb.org/esr/faqs/smart-questions.html

Similar Messages

  • How to view the webpage of midlet webserver using webbrowser from computer.

    hello guys im trying the code from http://javaswamy.blogspot.com/2003/09/j2me-turning-your-phone-into-web.html
    here i want that to do.
    i want that my mobile run as webserver and i want to view the webpage in my laptop computer how to do that using datacable?
    i cant access the webpage from my mobile.
    j2me as webserver //<--
    connection via datacable //<--
    my laptop as a visitor of j2me webserver //<--
    thanks in advance.

    Moderator action: Moved from New to Java
    db

  • How to replace the background in cs3?

    I have had unsuccessful attempts to mask the subjects against the black background (following this to mask the subject: http://www.scottkelby.com/blog/2009/archives/5384).
    I couldn't select just the black background as subject's hair is also in black color.
    How to separate the background in these situations?

    Along with the excellent tips above, two things that might help you create your Mask would be to explore the Channels in Lab Mode (Image>Mode>Lab Mode), as there is different info in those Channels. Also, I have used Image>Adjustments>Highlight & Shadow on a dupe Layer (Ctrl+J) to get more separation between the hair and the background. Use that to "see" the areas that you need to include in the Mask, or delete from the Mask. When done, just Delete that adjusted Dupe Layer, as it's only for you to "find" the edges of the hair.
    Good luck, and be patient. The time that you take will pay off with a great Mask. Those are part art, part science and an investment in time.
    Hunt

  • How to Zoom the Image in JAI

    Hi,
    I need to zoom the image during the each button click.I have done 1 program ,but i coulnt able to change the parameter block's value each time.Take this program and just change the pic's path and run
    it ll show the pic,smaller than its actual size,because i changed the parameter block's value.this cahnge i want to do for each button click,please try to solve my problem,
    the code is
    import javax.swing.JFrame;
    import java.awt.Toolkit;
    import java.awt.Dimension;
    import java.awt.image.RenderedImage;
    import java.awt.image.BufferedImage;
    import java.awt.BasicStroke;
    import java.awt.Color;
    import javax.swing.Icon;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseEvent;
    import javax.swing.JPanel;
    import java.awt.image.renderable.ParameterBlock;
    import java.io.IOException;
    import javax.media.jai.Interpolation;
    import javax.media.jai.JAI;
    import javax.media.jai.*;
    import java.awt.geom.*;
    import java.awt.geom.AffineTransform;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import javax.media.jai.RenderedOp;
    import com.sun.media.jai.codec.FileSeekableStream;
    import javax.media.jai.widget.ScrollingImagePanel;
    * This program decodes an image file of any JAI supported
    * formats, such as GIF, JPEG, TIFF, BMP, PNM, PNG, into a
    * RenderedImage, scales the image by 2X with bilinear
    * interpolation, and then displays the result of the scale
    * operation.
    public class JAISampleProgram extends DisplayJAI implements MouseListener
    JPanel jp=null;
    ParameterBlock params=null;
    Interpolation interp=null;
    RenderedImage image1;
    RenderedImage image2;
    RenderedImage rop;
    ScrollingImagePanel panel=null;
    JFrame jf=null;
    BufferedImage buff;
    Graphics2D graph;
    int width;
    int height;
    JAISampleProgram()
    JButton zoomin= new JButton(ico1);
    JButton zoomout = new JButton(ico2);
    jp = new JPanel();
    FileSeekableStream stream = null;
    try
    stream = new FileSeekableStream("D:/muthu/My Pictures/anniyan1.jpg");
    catch (IOException e)
    e.printStackTrace();
    System.exit(0);
    /* Create an operator to decode the image file. */
    image1 = JAI.create("stream", stream,null);
    * Create a standard bilinear interpolation object to be
    * used with the "scale" operator.
    interp = Interpolation.getInstance(
    Interpolation.INTERP_BICUBIC_2);
    * Stores the required input source and parameters in a
    * ParameterBlock to be sent to the operation registry,
    * and eventually to the "scale" operator.
    params = new ParameterBlock();
    params.addSource(image1);
    params.add(0.1f); // x scale factor
    params.add(0.1f); // y scale factor
    params.add(0.0F); // x translate
    params.add(0.0F); // y translate
    params.add(interp); // interpolation method
    /* Create an operator to scale image1. */
    image2 = JAI.create("scale", params,null);
    /* Get the width and height of image2. */
    width = image1.getWidth();
    height = image1.getHeight();
    /* Attach image2 to a scrolling panel to be displayed. */
    panel= new ScrollingImagePanel(image2, width, height);
    panel.setSize(400,300);
    setPreferredSize(new Dimension(image1.getWidth(),image1.getHeight()));
    buff = new BufferedImage(image1.getWidth(),image1.getHeight(), BufferedImage.TYPE_INT_RGB);
    width=image1.getWidth();
    height=image1.getHeight();
    graph = buff.createGraphics();
    graph.setStroke(new BasicStroke(2.0f));
    panel.addMouseListener(this);
    jp.add(zoomin);
    jp.add(zoomout);
    jf = new JFrame("sample");
    jf.setContentPane(panel);
    jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    repaint();
    public void mouseClicked(MouseEvent e)
    ParameterBlock pb = new ParameterBlock();
    interp = Interpolation.getInstance(Interpolation.INTERP_BICUBIC_2);
    pb = new ParameterBlock();
    pb.addSource(image2);
    pb.add(0.5f); // x scale factor
    pb.add(0.5f); // y scale factor
    pb.add(0.0F); // x translate
    pb.add(0.0F); // y translate
    pb.add(interp); // interpolation method
    rop = JAI.create("scale", params,null);
    panel= new ScrollingImagePanel(rop, width, height);
    panel.setSize(400,300);
    setPreferredSize(new Dimension(image1.getWidth(),image1.getHeight()));
    buff = new BufferedImage(image1.getWidth(),image1.getHeight(), BufferedImage.TYPE_INT_RGB);
    width=image1.getWidth();
    height=image1.getHeight();
    graph = buff.createGraphics();
    graph.setStroke(new BasicStroke(2.0f));
    repaint();
    public void mouseEntered(MouseEvent e)
    public void mouseExited(MouseEvent e){}
    public void mousePressed(MouseEvent e){}
    public void mouseReleased(MouseEvent e){}
    public synchronized void paintComponent(Graphics g)
    panel.paintComponents(g);
    Graphics2D g2d = (Graphics2D)g;
    g = jp.getGraphics();
    g2d.setColor(Color.BLUE);
    g2d.drawLine(50,50,100,100);
    graph.setColor(Color.yellow);
    g.drawLine(60,60,120,120);
    g2d.drawRenderedImage(rop,AffineTransform.getTranslateInstance(100.00,100.00));
    /* params = params.set(0.1f,0);
    params = params.set(0.1f,1); */
    public static void main(String[] args)
    /* Validate input.
    * Create an input stream from the specified file name
    * to be used with the file decoding operator.
    JAISampleProgram jai = new JAISampleProgram();
    /* Create a frame to contain the panel. */
    jai.jf.pack();
    Toolkit theKit=Toolkit.getDefaultToolkit();
    Dimension dim=theKit.getScreenSize();
    int scrWidth=dim.width;
    int scrHeight=dim.height;
    jai.jf.setSize(scrWidth,scrHeight);
    jai.jf.show();
    }

    scale your Graphics2D object
    http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Graphics2D.html#scale(double,%20double)
    Also check the documentation of
    http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/JComponent.html#paint(java.awt.Graphics)
    and see if your code would be better in paint(java.awt.Graphics) instead of paintComponent(Graphics g)

  • How to shrink the webpage into JEditorPane

    JEditorPane is used to display webpage here.
    and scrollbars are added to the panel. so the webpage can be displayed in its original size..
    here is the code:
    JEditorPane webPage = new JEditorPane();
    webPage.setEditable(false);
    JScrollPane webPageScroll=new JScrollPane(webPage);
    webPageScroll.setBorder(BorderFactory.createLineBorder(Color.black));
    htmlPanel.add(webPageScroll);
    *******but now I want to shrink the webpage to the size of the JEditorPane, instead of using scrollbars.
    What should I do then,,
    any ideas are appreciated..
    thanks a lot.:)

    Is the point to have a full-sized (too big) JEditorPane and a scaled down screen shot of it at the same time?
    If you put the JEditorPane actually into your GUI in some panel in some frame, then it's going to be set to the appropriate size for that component. If you don't put it in anything, probably if you put it in a JScrollPane, then the size should become the maximum value to display the page. At that time, you can get the size or preferredsize of the pane and do the paint onto the image thing to get a scaled copy.
    (Unless it's smart enough to know that it's in a scroll pane and not paint itself outside the visible viewport bounds.)

  • How to download the older version CS3 dreamweaver into my new windows if there is no DVD drive

    I took my older CS3 dreamweaver out of my old computer to put into new computer, windows 8.1, but this computer has not drive how to get it to this computer.

    Hi Ladyweed,
    Your query has already been answered on the below thread
    http://forums.adobe.com/message/6136588#6136588
    Thank you for posting on Adobe forums.

  • How to zoom the .pdf file to 50% when opening

    I do have a report which is in Adobe .PDF format and it will
    open from a link through a .htm page.
    Now, I want to make this .PDF open in 50% view of the Acrobat
    reader.
    How to do this?

    You can specify pdf open parameters like zoom.
    http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf#zoom

  • How to zoom the value on chart?

    hi,
    i am using chart control, i deactivated autoscale. but i want to zoom my data, i mean want to reduce the x. scale division... how to do this...?
    labview 8.6 
    Regards,
    Balaji DP

    You can directly edit the numbers on the x axis if you want - click and type. As long as autoscaling is off, you will get a resized graph.
    You can do this programmatically using the XScale.Range property node.
    Alternatively, have a play with the magnifying glass icon on the 'graph palette' of the graph. (Right click the graph, visible items, graph palette)
    Ian

  • How to ZOOM the JFrame and its components ?

    Hi
    I could not find any solution/suggestions for this, so I am asking help.
    I am adding multiple components (JLables, JtextFields and a JTable) in to Jpanel(s) and to a JFrame window and I want to add Zoom (+ or - ) functions.
    I don't want to take each and every component from JFrame/ JPanel(s) and resize or repaint.
    Is there any way, that you can increase and decrease the whole JFrame and JPanel's view so that the components, which are been added to them, look like their sizes are also increased / decreased?
    Any suggestions or help would be appreciated.
    Thanks.
    Regards,
    Vally.

    ok...
    god bless the "GlassPane"
    you can take a snapShot of your frame...
    draw it on your glassPane..
    and just use your glassPane
    to paint the image with the requested size...
    in this approach you cant press a button and to things..
    shay

  • How to convert the webpage to website

    I had created my website locally
    eg file:///C:/Users/user/Documents/Unnamed%20Site%202/homepage.html#
    But I need to change it to website
    eg www.example.com
    so that I can include a search function withinin my website. I do not have a server too.
    Is that any way to do it?

    WAMP Server is only to test 'locally' by using your regular PC as a 'server-environment' so you can run PHP or any server side files.
    If you want to host a 'real' website that everyone can access on the web, look up 'Domain name registration' and 'Web hosting' on Google. Domain name is your website's name - www.runningmanhaha.com, for example. Web hosting is your space on a server where you can put your files for everyone else to see.

  • I want to set a maximum size for pictures when FF shows websites. How can i do that? NO I DONT MEAN "HOW TO ZOOM".

    I have FF 34 but this problem has been there for a lot of earlier versions. On many webpages there are pictures that cover my whole screen, and I want to set maximum size for showing images on webpages.
    I ONLY wanr to change the maximum size of the images, AND IAM NOT asking about how to zoom the webpage.

    Do you want to hide large images or merely make them smaller by setting a max-width and max-height?
    You would probably have to use JavaScript (bookmarklet) to achieve this reliably.
    There are bookmarklets to make large images fit in the window to avoid a horizontal scroll bar
    You can try this code in the <b>userContent.css</b> file (adjust the max-width accordingly).
    *http://kb.mozillazine.org/userContent.css
    <pre><nowiki>img { max-width: 1024px !important; height: auto !important; }</nowiki></pre>
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the <b>chrome</b> folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    *Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
    *Use a plain text editor like Notepad to create a (new) userContent.css file in the chrome folder (file name is case sensitive)
    *Paste the code in the userContent.css file in the editor window
    *Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userContent.css.<br>Otherwise Windows may add a hidden .txt file extension and you end up with a not working userContent.css.txt file

  • Embed the webpage in email

    Hello Every one how to embed the webpage /word content with images and text box into the Email using code.
    Your help
    Thanks.
    Message was edited by:
    ChJ

    http://www.rgagnon.com/javadetails/java-0504.html

  • How do I set the screen zoom, so that it doesnt change each time I open Firefox. Because I see the webpages in smaller print, and I want them larger , without having to re zoom each time I open Firefox.

    I need to know how to set the zoom option under "View" Tab, shere I dont have to re zoom each time I open Firefox. I have a wide screen monitor and generally, when viewing webpages, the web content on any page is confined to center of the page, and I was wondering if there was anyway to permanently set the zoom preferences without having to change them each time i open a webpage.
    IE 8 and 9 has a feature to set the magnification and i set mine to 150% which works perfectly for me. I wonder if Firefox has a similar feature.

    TonyE
    Thanks a lot. I downloaded the Default FullZoom Level add-on. My problem is now a history. thanks a million

  • Everything on all the webpages are so small, and only take up half the screen. How can I make it bigger, without changing the settings on my computer and by that change the size of everything on my computer.

    Everything on all the webpages are so small, and only take up half the screen. How can I make it bigger, without changing the settings on my computer and by that change the size of everything on my computer.

    The Firefox [https://support.mozilla.com/en-US/kb/Page+Zoom Page Zoom] feature does a domain by domain level of saving the users preferred zoom level settings, there is no default Page Zoom level setting in Firefox, as with some other browsers.
    Try the Default FullZoom Level extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/6965
    Or the NoSquint extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/2592/

  • [CS3][JS] How to get the file type of current document

    Hi,
    How to get the file type of current opening document (e.g., tif, jpeg, png) using JavaScript with Photoshop CS3.
    I am using file object the open the files one by one in the folder (the files sometimes don't have the extensions).
    If the current document is in tiff format then I need to convert to 8-bit, if its an Jpg image then needs to ignore the file.
    Regards,
    Karthik

    Do you really need to know the file type? What about just checking the bit depth?
    var doc = activeDocument;
    if (doc.bitsPerChannel != BitsPerChannelType.EIGHT) {//Not 8 bit
    doc.bitsPerChannel = BitsPerChannelType.EIGHT;
    //do your save etc
    }else{
        //Ignore

Maybe you are looking for

  • GHIII wont play!!

    I just got Guitar Hero 3 and it goes until right before the neck of guitar pops up in the song. I really want to play this on my trip to CA....with my keyboard but it just freezes...will it play with my Intel GMA X3100 graphics card?

  • HELP - DO MY WORK FOR ME SO I CAN GET A PAY CHECK

    Well, I got this huge new project at work, and need everyone to do it for me. I can do it, I am just a lazy programmer who wants to sit around and get credit, and a pay check, for someone elses work. I figured why should all the lazy college students

  • ODS Settings and performance

    Could any of the following ODS settings individually or in combination have an impact on performance?  BEx Reporting Set quality status to 'OK' automatically Activate ODS object data automatically My ODS will have a maximum of 250,000 records and is

  • I received an error when trying to open itunes

    I received an error when trying to open itunes.  It said itunes stopped working, so I tried to uninstall and re-install.  It let me install it, but when I tried to open it, it gave me the same error message.  How can I get itunes back on my laptop (w

  • How wide to make a website in pixels?

    Haven't made a website in a WHILE, and I realize the game has changed. How many pixels wide are people designing at these days, as a rule of thumb?