Http post large images

Hello people ...
I've been working on this for almost a week
am trying to post an image and some text with it to my server
i know that i can post large images to an ASP.NET page .. but now am dealing with apache 2.2.3 and am using multipart post
I've tested this code using nokia devices and it is working fine
but on sony ericsoon devices " z520 and z610" it is giving 502 proxy error response ...
here is the client and server responses ....
WHAT IS WRONG WITH SONY ERICSSON DEVICES
any idea what is happening
here is my code
InputStream is = null;
        OutputStream os = null;
        DataInputStream dis = null;
        StringBuffer responseMessage = new StringBuffer();      
        StringBuffer b = new StringBuffer();
        HttpConnection c= null;
        try
            String message1 =  "-----------------------------2789938726602\r\n" +
                    "Content-Disposition: form-data; name=\"post[id]\"\r\n\r\n" +
                    "-----------------------------2789938726602\r\n" +
                    "Content-Disposition: form-data; name=\"post[title]\"\r\n\r\n" +
                    " bahjat\r\n" +
                    "-----------------------------2789938726602\r\n" +
                    "Content-Disposition: form-data; name=\"post[discription]\"\r\n\r\n" +
                    "Description\r\n" +
                    "-----------------------------2789938726602\r\n" +
                    "Content-Disposition: form-data; name=\"post[username]\"\r\n\r\n" +
                    "Username\r\n" +
                    "-----------------------------2789938726602\r\n" +
                    "Content-Disposition: form-data; name=\"post[password]\"\r\n\r\n" +
                    "Password\r\n" +
                    "-----------------------------2789938726602\r\n" +
                    "Content-Disposition: form-data; name=\"post[category_id]\"\r\n\r\n" +
                    "1\r\n" +
                    "-----------------------------2789938726602\r\n" +
                    "Content-Disposition: form-data; name=\"post[file]\"; filename=\"mobile.jpg\"\r\n" +
                    "Content-Type: image/jpeg\r\n\r\n";
             String message2 ="-----------------------------2789938726602--"; 
             byte[] Message1 = message1.getBytes();
             byte[] Message2 = message2.getBytes();
             int total_length = Message1.length + Message2.length + postByte.length ;
            c = (HttpConnection) Connector.open(URL, Connector.READ_WRITE);
            c.setRequestMethod(HttpConnection.POST);
            c.setRequestProperty("Host","hq.d1g.com")  ;
            c.setRequestProperty("Accept"," text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5");
            c.setRequestProperty("Accept-Charset"," ISO-8859-1,utf-8;q=0.7,*;q=0.7");
            c.setRequestProperty("User-Agent", "Profile/MIDP-2.0 Confirguration/CLDC-1.0");
            c.setRequestProperty("Accept-Encoding", "gzip, deflate");
            c.setRequestProperty("Accept-Language","en-us,en;q=0.5");
            c.setRequestProperty("Http-version","HTTP/1.1");
            c.setRequestProperty("Content-Type", "multipart/form-data;boundary=---------------------------2789938726602");
            c.setRequestProperty("Content-Length", Integer.toString(total_length) ); 
            c.setRequestProperty("Keep-Alive","300");
            c.setRequestProperty("Connection","Keep-Alive");
            os = c.openOutputStream();  
            os.write(Message1);
            os.write(postByte);
            os.write(Message2);          
            os.close();
            Message1 = null;
            Message2 = null;
           int rc = c.getResponseCode();
           if (rc != HttpConnection.HTTP_OK) {
                b.append("Response Code: " + c.getResponseCode() + "\n");
                b.append("Response Message: " + c.getResponseMessage() +
                        "\n\n");        
           Resived_String=b.toString();
           is = c.openInputStream() ;
            // retrieve the response from server
           int ch;
           while( ( ch = is.read() ) != -1 )
                responseMessage.append( (char)ch );
           String s=responseMessage.toString();
           Resived_String+=s;
        catch (Exception ce) {
            Resived_String=ce.getMessage(); }
        finally {
            if(dis != null)
                dis.close();
            if (is != null)
                is.close();
            if (os != null)
                os.close();
        return Resived_String;here is the headers as i followed them using wireshark
client
POST /gallery/post/update HTTP/1.1
Host: hq.d1g.com
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
User-Agent: Profile/MIDP-2.0 Confirguration/CLDC-1.0
Accept-Encoding: gzip, deflate
Accept-Language: en-us,en;q=0.5
Http-version: HTTP/1.1
Content-Type: multipart/form-data;boundary=---------------------------2789938726602
Keep-Alive: 300
Connection: Keep-Alive
User-Agent: UNTRUSTED/1.0
Transfer-Encoding: chunked
server response
HTTP/1.1 502 Proxy Error
Date: Wed, 04 Apr 2007 12:49:40 GMT
Content-Length: 493
Connection: close
Content-Type: text/html; charset=iso-8859-1
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>502 Proxy Error</title>
</head><body>
Proxy Error
The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request POST /gallery/post/update.
Reason: Error reading from remote server
<hr>
<address>Apache/2.2.3 (Fedora) Server at hq.d1g.com Port 80</address>
</body></html>
and some times i get this response
404 not found
so any idea what i can do

Thank your reply,and I think there are some bad with code,but there is only
a swc,and I can't analyze the c/c++ code,so I relly don't konw how to solve
it, Can you provide me some c/c++ code,and I can compile them to Alchemy
code...
2009/10/28 zazzo9 <[email protected]>
It is either a bug with your code or with the library, which may be
aggravated by a bug in alchemy where it fails to report exhausted memory
properly.  The library you are using is just a demonstration and may likely
have bugs.
>

Similar Messages

  • Get file from HTTP POST (upload image)

    Hello,
    I would like to integrate http://www.plupload.com flash component to my APEX 4.1 website. I need it because I want to resize image and transform image before upload on client side, upload multiple files etc..
    But I don't know how to read image binary data from POST method.
    When I hit "Start upload" button on plupload component it makes some transformations and creates POST method like this:
    ------pluploadboundary1334433145869
    Content-Disposition: form-data; name="name"
    p16qp6jm3nhan1ca46me1ocr3tu1.jpg
    ------pluploadboundary1334433145869
    Content-Disposition: form-data; name="chunks"
    1
    ------pluploadboundary1334433145869
    Content-Disposition: form-data; name="chunk" 0
    ------pluploadboundary1334433145869
    Content-Disposition: form-data; name="file"; filename="centerd.jpg"
    Content-Type: image/jpeg
    ÿØÿà�JFIF������ÿÛ�„�
    image content
       now I would like to read content of this HTTP POST and read sended image and store it to DB.
    Question is... how can I read file sended with HTTP POST in APEX pl/sql process or pl/sql procedure?
    Thank you...
    Edited by: cardel on Apr 14, 2012 11:17 PM

    Hi,
    here are my two cents ...
    this will be a bit difficult. When you use the standard APEX File upload it is not PL/SQL handling the POST request. The request is handled by the webserver - depending on the variant you are using it is either mod_plsql, the C code of the Embedded Gateway or the APEX Listener. The webserver is also doint the insert into APEX' file repository. So I see two options:
    It might be possible to configure your plugin (don't know about it) the behave the same as a standard browser upload. Then for APEX there would be no difference - mod_plsql should handle the files accordingly.
    If you want to handle the POST request yourself, as said, you can't do this in PL/SQL. It would be possible to write a Java servlet doing this and deploy that servlet on the same container as the APEX Listener (when using Apache with mod_plsql you would need an additional Java server for that) ....
    Hope this helps ...
    Best regards
    -Carsten

  • Web Flash Gallery: Problem setting Large Images size

    When using the Lightroom Flash Gallery I am not able to change the size of the Large Images (Web | Appearance | Large Images | Size). When I set the size to Medium or Small, the large images always ends up with the same size as when set to Large. Only when setting the size to Extra Large there is a slight change in size.
    How can I change the Large Images size to Medium and Small?
    Jørgen Johanson

    jools2005 wrote:
    Adobe please address this issue.
    This is a User to User forum not official Adobe support. Yes, Adobe staff may participate from time to time, but not often enough that you can depend on them reading your post. Therefore, I suggest that you support a bug report using the facilities provided at https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Optimization on Load Time (Large Images and Sounds)

    Hi,
    I have an all flash website that works by having each portion of it to load and unload in the center of a frame based off the navigation chosen.  Load times on everything but one part of my site are ok.
    The dimensions of the part inside the frame are 968x674.  I know that's relatively large for a flash file, but that can't be changed at this point.
    Within the page there are objects that come up when you find an item on the screen.  Its a dialog box and it shows text, an image, and has a voice over that reads what the text says.  After you're done looking at it, there is an x-button to dismiss the window.  There are 15 of these and they are exported to the actionscript.  I add them in the actionscript via addChild.  I figured this is a huge spot that could be reconfigured, but I'm not sure if it would make much a difference.
    The other huge thing is there is a ton on the screen.  It starts you off in an environment, and when you click 3 different sections, it zooms into that portion allowing you to look for the items you're trying to find.
    There is also a man that talks and animates in the beginning and at the end.  We are planning on taking out the end part and putting a text box up.
    Here is the website..  its a propane safety site for kids.  I know its kind of a weird idea, but it works and people seem to like it.
    www.propanekids.com
    The two parts of the site we are trying to optimize is the main menu when you first are at the site, and the "Explore" section.  (Just click on the cloud on the front page.
    If someone could take the time to give me some new ideas of how I can get these loading times down, I would greatly appreciate it!
    Thanks

    Ok, who ever posted this message is hacking me  and i can't believe you guys are helping
    Date: Thu, 27 Jan 2011 11:07:28 -0700
    From: [email protected]
    To: [email protected]
    Subject: Optimization on Load Time (Large Images and Sounds)
    Hi,
    I have an all flash website that works by having each portion of it to load and unload in the center of a frame based off the navigation chosen.  Load times on everything but one part of my site are ok.
    The dimensions of the part inside the frame are 968x674.  I know that's relatively large for a flash file, but that can't be changed at this point.
    Within the page there are objects that come up when you find an item on the screen.  Its a dialog box and it shows text, an image, and has a voice over that reads what the text says.  After you're done looking at it, there is an x-button to dismiss the window.  There are 15 of these and they are exported to the actionscript.  I add them in the actionscript via addChild.  I figured this is a huge spot that could be reconfigured, but I'm not sure if it would make much a difference.
    The other huge thing is there is a ton on the screen.  It starts you off in an environment, and when you click 3 different sections, it zooms into that portion allowing you to look for the items you're trying to find.
    There is also a man that talks and animates in the beginning and at the end.  We are planning on taking out the end part and putting a text box up.
    Here is the website..  its a propane safety site for kids.  I know its kind of a weird idea, but it works and people seem to like it.
    http://www.propanekids.com
    The two parts of the site we are trying to optimize is the main menu when you first are at the site, and the "Explore" section.  (Just click on the cloud on the front page.
    If someone could take the time to give me some new ideas of how I can get these loading times down, I would greatly appreciate it!
    Thanks
    >

  • MSOutlook HTML newsletter issues - large gaps between large images and small gaps...

    Please can you help me!
    Searched the web & found plently of advice but still getting formatting display issue when viewing HTML newsletter in MS Outlook.
    Fully aware on the basics regarding the multiple issues when creating HTML newsletters but this is driving me crazy.
    Apparently there is a image height limit within Outlook (can't find out what this is) so I have sliced my larger images into 5/6 parts which solves the display issue in Outlook.
    But the gaps between the slices are now being displayed as small blank spaces within Hotmail.
    I did use <br> between each slice as without caused the fixed 600px wide containing table to expand due to the slices stacking hoz.
    Also still getting small gaps (like <br> spaces) between all images in Outlook when displaying perfectly (no gaps) in a browser.
    This is my newsletter displaying correctly via a browser:
    http://eu.shorts.tv/site-admin/modules/mod_mail/SHORTSTV_DECEMBER_2012.htm
    Using Dreamweaver 4 (do have the latest version via Adobe Creative Cloud Membership but not on this system).
    Hope you can help
    Many thanks

    Many thanks David
    I also found this article which is currently sitting on my desk.
    Pdf would make perfect sense or even a url link to view via a browser but these guys need it contained within the email.
    Thanks again for your kind advice.
    Regards
    ShortsTV
    Date: Fri, 30 Nov 2012 18:05:08 -0700
    From: [email protected]
    To: [email protected]
    Subject: MSOutlook HTML newsletter issues - large gaps between large images and small gaps...
        Re: MSOutlook HTML newsletter issues - large gaps between large images and small gaps...
        created by David__B in Adobe Creative Cloud - View the full discussion
    Hey Shortstv, Not something I know much about, searched and found thishttp://robcubbon.com/create-html-email-newsletters-outlook/ Maybe create it as a PDF attachment instead? -Dave
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4888255#4888255
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4888255#4888255
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4888255#4888255. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Creative Cloud by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Read large images fast?

    Hello all,
    I'm not sure if this is the appropriate place to post this but here goes. I am working on creating an image viewer application and so far its going great. But i've noticed one problem when reading large images typically over 1 megabyte in size. These images using <tt> ImageIO.read() </tt> takes anywhere from 1 to two seconds to finish loading. I've searched all over the web for faster methods of reading large images but I haven't had any luck. Here is an example of what code i'm using to read an image.
    try {
         BufferedImage b = ImageIO.read(someLargeImageFile); // this is slow for images over 1MB in size.
    } catch(Exception err) {
    }So my question is does anyone have any tips or tricks I could use to read large images faster. I see programs like iPhoto reading images up to 5MB in size in under one second. Just wondering what I could do to read these kind of images just as fast.
    Thank you for your help :)
    Nathan D.

    user5287726 wrote:
    What version of the JVM are you using? How much RAM is available? What OS are you running? What kind of storage are the images on? How many other users and how many other processes are fighting over that storage?
    And if the JVM is recent and has a lot of RAM available, and you have eliminated any storage bottlenecks, have you tried Java Advanced Imaging?
    http://java.sun.com/javase/technologies/desktop/media/jai/
    I've used it to process image files in the hundreds of MB size range, and while I don't have any benchmarks handy I'd be surprised if those files were processed much if any slower than the processing speed you're getting with your much smaller files.I'm using the most current JVM, lots of RAM is available the application i'm developing can use up to 1.5 GB of RAM on the current machine. I'm using Mac OS 10.6 but the problem occurs on all operating systems i've tested it on including, Windows XP, Windows Vista, Windows 7, Mac OS 10.4, 10.5, 10.6, and Linux. I develop the software on an iMac which I just recently reformatted to factory settings so there are little to no other processes fighting over that storage.
    I've heard of JAI and just really never gave it a second thought cause I never really needed any more features then ImageIO gave me. However does Java Advanced Imaging read images in a different way then ImageIO would? I'm beginning to think that it isn't so much the actual size of the file but the dimensions. Even small files in the 100kilobyte range load slow because there dimensions are large for example 3000x3000. Though i'm assuming those 100 megabyte images you processed with speed also had large dimensions?
    Now for a moment I was thinking it was something in the BufferedImage class that was taking a long time to process and not the ImageIO class. However the following proves that wrong.
    try {
         ImageIO.read(someLargeImageFile);
    } catch(Exception err) {
    }The above code doesn't even use a buffered image so I guess its down to something in the ImageIO class. I'll see if I have better luck with JAI but can someone explain why this might be faster then using ImageIO.read() or if there are any other tips or ticks to reading large images such as these faster?
    Thank you for your help :)
    Edited by: neptune692 on Jan 6, 2011 8:35 AM

  • Large images show up as red boxes?

    hello all ---
    im looking for some advice/feedback
    i designed this website a while back
    http://www.angusmcritchie.com/
    apparently the images i used in a scoller
    show up as red squares on some peoples computers.
    ( they are extremely long - 20,000 px wide )
    it works fine for me - and others - but i just checked on my
    friends and am having this problem
    could it be the persons internet settings?
    would it have to do with flash player?
    i would think it has to do with the actual size of the images
    - but then why would it work on some computers and not others????
    any advice / similar problems????
    also - if you check the website and see red - could you post
    i want to test the severity of the problem
    thanks,
    anton

    Known issue with Flash Player 9.0.115.0 that I need to get
    documented soon. I don't see a fix coming for this anytime soon
    either..
    Two workarounds:
    Workaround:
    1. Switch to lossless compression
    2. Slice the large image into smaller images of less than
    1024 px (but keep jpeg compression)

  • Thumbs with Large Image and Text/Links

    Hi,
    I am running some script on the link below to try and get a look of when you click a thumbnail the large image and text that goes with it changes with each different thumb.  I am able to do that right now, but not to the affect that I want. 
    Ideally I would like all the text to be on the right hand side of the image with spacing and links, but I seem to only be able to get the text to show itself on the bottom of the picture right now.  I think I need to approach it in a different way then I am currently.  Any help would be greatly appreciated.
    This is the page I am working on - http://mnkr.com/womens_stylepages/bigsur_TEST
    Please let me know if I can offer up any other info.
    Kandace

    Sorry to keep replying to my own post, but I am trying to work on this in the meantime.
    I am currently trying to get this to work through this forum - http://forums.adobe.com/message/4001227?tstart=0
    This is what I have done so far and I think I am on on the right track?. 
    http://mnkr.com/womens_stylepages/bigsur_TEST2

  • Greyscale threshold using ni black gives invalid results on large image

    I am analyzing images of hot steel slabs looking for cracks in the surface of the slab.  The images are 2048 pixels wide by 14000 to 40000 pixels high.  I am using NI Vision Assistant 8.5.
    Sometimes the threshold does not work right when using the grayscale threshold, Local Threshold: Niblack.  For smaller images it works ok, but for larger images it will not work.  There are no errors, but the result is an image full of colored pixels rather than an image of particles.
    I have attached some sample images.  These are small crops of the larger image.
    The first one is from an image about 17000 pixels high which worked properly.  The second is from an image about 25000 pixels high, which did not work.
    Is this strictly a size issue?  Is there something I can do to fix it?
    Thanks!
    Attachments:
    Image11.jpg ‏44 KB
    Image21.jpg ‏55 KB

    I am having the problem within Vision Assistant.  I think at one point I migrated it to a LabVIEW vi and had similar results.
    I am going to try to post a link to the files.  The images are rather large, about 5MB.  I have also attached the script.
    The first file should work with the script, the second should not.
    Thanks for looking at this!
    Glen
    http://us.share.geocities.com/theace999/Images/11192003.jpg
    http://us.share.geocities.com/theace999/Images/11209307.jpg
    Attachments:
    Image Processing41.scr ‏4 KB

  • Scan large image with small image.

    Is it possible to take a large and a small image, and check if the small image is somewhere in the large image.
    Perhaps with some sort of precision so it doesn't have to match 100 %.

    prometheuzz wrote:
    eikhorsholm wrote:
    Super, that's all...! Thanks...
    Or... Perhaps some code-example, You are probably not fully aware of how difficult this is. It's impossible to post an "example snippet": it's no Hello World kind of thing.I agree. In fact, I'm guessing OP isn't up to speed on "Image Processing". If so, I'd recommend OP studies Image Processing for a good 6 months to a year before even attempting this project.
    links to tutorials, source-code etc. would be nice!The Quantitative Imaging Group of the Technical University in Delft are among the top of their field:
    [http://www.ist.tudelft.nl/qi]
    and their previous home page [http://www.ph.tn.tudelft.nl/]
    I'm sure they have some interesting reports/publications on their website.Yeah, and you can search for pattern recognition or image matching or something and find stuff on Google. It's not the most complex thing in the world, but you have to understand some core fundamentals. i.e. if you're right out of high school you'll need possibly months of study before succeeding.

  • OutOfMemoryError When Sending Large Image

    Hi All,
    We are developing a midlet that is esentially a photo blogging app. We are using an HTTP POST to send the image to the web server. The code is working properly as we are able to send images up to about 80KB.
    However, when sending images larger than ~80KB, the midlet gets an OutOfMemoryError.
    The image is being sent in chunked data packets, so shouldn't this mean we could send any size file since it would just keep sending more data chunks until it has reached the end of the file?...
    Has anyone else out there encountered this or perhaps know of a work around?
    Any help would be greatly appreciated.
    Thanks!
    Jim

    We are currently loading the entire image into memory at the moment which is
    probably causing the OutOfMemory exceptions. Would you know how native
    phone applications send images through HTTP which are many times the
    size of available memory?
    The only way I could think of is to somehow connect the input stream
    which gets the image from the phone's memory and the output stream
    which writes out the HTTP data. By doing this no new byte array will get
    declared (explicitly anyway) to temporarily hold the entire image in the phone's
    memory. I'm wondering could I accomplish something like that by somehow
    collapsing these two chunks of code into one that declares no arrays to hold
    the entire image in memory?
    Here's our current code for reference:
    Getting the image from the phone
    theFile is a FileConnection object which references the image file we want
                        InputStream fileInputStream = theFile.openInputStream();
                        fileContent = new byte[(int)filesize];
                        fileInputStream.read(fileContent);
                        fileInputStream.close();Writing image to HTTP output stream
    data is a byte[] array holding the entire image in memory
    httpOut is a DataOutputStream
    SuperViewerMidlet.httpOut.write(data);

  • IIS Virtual Directory and Application Pool for Large Images folder

    I have a large images folder used for Upload and Download with approx. 1.5 TB for a web site.
    My Website use AppPool_A.
    For performance reasons, do I need to create different Virtual Directory and different Application Pool (AppPool_B) for Images folder. Assuming, if the number of users increase in upload/download images the memory & cpu utilization will be
    more and App Pool recycle happens more often. And other impact is if Website and Images are in same App Pool, the application performance slow.
    Pls. suggest
    AnilKumar Bedide

    Hi,
    Please post on IIS fourm instead of here.
    http://forums.iis.net/
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history pa

    When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history page etc. Happens on all options that should open new page. I am so frustrated, this has been happening since Firefox updated itself 2 days ago to Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 ( .NET CLR 3.5.30729; .NET4.0C) was fine before that. using windows vista. Can you please advise what I should do? Also can you go back to previous version? Error console eg
    Warning: Error in parsing value for 'cursor'. Declaration dropped.
    Source File: https://ib.nab.com.au/nabib/styles/menu_nab.css?id=009
    Line: 116
    ib.nab.com.au : server does not support RFC 5746, see CVE-2009-3555 and Warning: Selector expected. Ruleset ignored due to bad selector.
    Source File: https://ib.nab.com.au/nabib/styles/nabstyle.css?id=014
    Line: 837
    == This happened ==
    Every time Firefox opened
    == 2 days ago after update.

    Do you have that problem when running in the Firefox SafeMode?
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Tiling or slicing large images in tables? Completely outdated?

    I'm working through the XHTML tutorials on Lynda.com
    The instructor does a demo of slicing a large image with sections that have animated .gifs. He slices the static portions and slices the animated portions and then combines them in a 3 slice x 3 slice table.
    He says "I still prefer to do this with tables, since it's what it was designed for."
    I know tables are outdated, but I'm not sure if it's in all respects. Like if I was going to do a data table, I certainly would use tables...
    Im not sure when this video was made, but is it still in practice and a good practice?
    He then shows a similar demo of how to combine slices using CSS. Is this outdated too? Are people still slicing large images?

    Unlike print design where everything is static and unchanging, web pages need to be flexible and web accessible to accommodate all users, displays and devices.
    Image slices have their plusses and minuses.  Occasionally, you may need them to create a flexible container that resizes to content.
         3 image slices in a CSS layout ~
         http://alt-web.com/DEMOS/Image-slices-in-a-CSS-based-layout.shtml
    That said, you can add visual interest to web pages without a lot of images using CSS.
         2-image web page design ~
         http://alt-web.com/TEMPLATES/2-image-web-design.shtml
    Finally, have a look at CSS Zen Garden where the power of CSS is demonstrated.
    Each page contains identical HTML markup but with wildly different styles.
    Hopefully this will inspire you to move away from tables and use CSS for primary layouts.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Printing Questions - "Poster" - One image on multiple sheet of paper (to create an enlargement)

    Hello,
    Tried to find this in the archives - apologies if this has already been answered. Kindly reply with that link and I won't ask you to chew your cabbage twice...
    On my older PC, I used to be able to print an image in "poster" mode, which essentially let me print and enlarge an image by printing it across multiple pages (e.g. 4, 6, 9 pages.) Since I'm a painter, this was an easy way for me to print out an image - and enlarge it - from which I could tape the pages together to create the enlargement. I then could use that rough poster-enlargement-on-multiple-sheets-of-paper to trace on to my canvas. (And my photographer friends have already pointed out the ease of which to actually print poster size images, but I don't need that expense or hassle for my purposes. I basically want an enlargement to trace onto a larger size canvas to paint on.)
    Since I just got a new Mac, I've downloaded PSE9 Mac trial, but can't for the life of me figure out how to replicate what I used to do on my PC, granted with an older version of PSE.
    Hoping this makes sense - and hoping against hope that someone can nudge me in the right direction...
    Thanks!
    Greg
    BTW - IF this does make sense, AND I can do on the Mac or the newer version of PSE - anybody got an idea for a workaround? (Short of buying PS CS5...?)

    Juergen,
    Thanks so much! Of course you're right - and this does the job perfectly! Thank you so much for the prompt replay, explained clearly, and very helpful! You've really helped me move onto items which I've really wanted to do!
    Very gratefully,
    Greg

Maybe you are looking for

  • I can't print any web page. after the print command, it wants to save xps files. on cannon printer. vista system

    can't print any web page. after the print command, it wants to save as a xps file. == This happened == Every time Firefox opened == after up grade to 3.6.6 == == User Agent == Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NE

  • HP Laserjet P2055dn won't print pdf files

    I have just hooked up a new iMac with Mac OS 10.9.5 and now my reliable HP Laserjet P2055dn won't print .pdf files anymore--it just hangs for hours. I am an academic and work 50% with pdf's.  I tried to download a new driver from the HP site for all

  • Recover exchange 2010 to a new server

    I recently took over a position here at this company. The exchange server had 2gb left on the C drive. I had to disable windows updates and clear logs just for email to begin working again. That exchange server had since failed, but was able to recov

  • Dear Adobe Programmers

    Has anyone a view on this matter? I am not very hopeful after experiencing the incredible number of walls that need to be climbed to find anyone who could may be listen Thanks anyway Wihlem

  • Italics not working in TextEdit and Mail

    Hello, I have system 10.4.11, version 1.4 for TextEdit and version 2.1.3 for Mail. I have TextEdit set up for Rich Text but the option to use italic is whitened, not an option and the same for my Mail program. Is this normal? If not, does anyone know