Png, Jpeg, Gif

Hi everybody! How are you?
With my logo, I am wondering what is the best format to save it in. I like png because it has transparency, I usually use jpeg for my website logo and images but I want to put my logo on shirts, coffee mugs, etc. Should I use png because it is transparent? Will the quality be great on the mugs and shirts? Thanks.

If you are going for profesional printing ASK WHAT IS NEEDED. There is no universal solution.
If you are preparing and cannot determine printing requirements in advance, provide a PSD, PDF and TIFF. Be sure you understand what resolution will be needed (as a minimum), because graphics designed for screen only look terrible in print.

Similar Messages

  • How to decoding and encoding PNG and GIF images?

    I could decode and encode JPEG images using following create functions which are in com.sun.image.codec.jpeg package.
    JPEGImageDecoder decoder = JPEGCodec          .createJPEGDecoder(inputStream);
    JPEGImageEncoder encoder = JPEGCodec                    .createJPEGEncoder(outputStream);
    But I dont know required package and functions to decode and encode PNG and GIF images. Please help me.

    Is the API that hard to follow?
    ImageIO.read( file/stream/url)
    ImageIO.write( image, format (e.g. PNG, GIF(1), JPEG), file/stream what have you)
    1) Not sure if Java supports GIF saving, it might if you install JAI, or Java 6.

  • Need help to create report with jpeg/gif image

    Hello,
    I need help with creating a form with a special jpeg/gif seal. I never done this Java. Until now, I created all forms with ansi C++ with HP escape characters to draw lines, boxs, and text. This form will contain boxes which is populated with database information read from a text file.
    Since this form contains a special seal on the upper right, I don't think it can be done with old fashion ansi C++. How can I create a form with Java and create it as a simple exe to just print the form to a specified printer.
    Thanks,
    John

    Hi,
    I am creating a form with boxes (lines and text). What is special about this form is that it has an image jpeg or gif at the top right corner. Is is a state department seal. Up to this form, I had used ansi C++ and print out escape HP character to print out the lines, boxes, and text. I have no idea how to print out the image. I am new to JAVA and only 1 class in it. Is there sample code out there to create this type of form with the image? I need a starting point.
    Thanks,
    John

  • Color issues w/ .png and .gif files in CS5.5 Live view

    Hi All,
    I am having a bunch of trouble with my .png and .gif image files in Dreamweaver CS5.5. In Dreamweaver's design view everything looks fine but when I preview my pages in Live View or in a browser the colors in my .png and .gif files are way off. All my images are designed in RGB.
    Any info anyone has to offer will be greatly appreciated. Thanks!

    GIFS contain a maximum of 216 colors (web safe palette)
    PNG and JPG can contain 16 million colors (true color palette),
    When you say the colors are  "way off"  we don't know what you mean.
    Can you post a link to your web page?
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Photoshop wont open PNG or GIF files

    i have recently encounter a problems that when i tried to opened the PNG or GIF files that i save earlier, photoshop CS3 just wont open it. It keeps giving me a messages saying "Could not complete your request because the file-format module cannot parse the file". I even reinstall the photoshop, but still receiving the same problem. If there any way i could fix it?
    Thanks,

    I just figured out my problem with this as I was gettig the same error message. Not sure if the following information will help with other's problems or not - I am using Photoshop CS3.
    First, I made sure my plug ins for png were updated. You can find the instructions for manually updating this direct from adobe site..... http://www.adobe.com/uk/support/security/bulletins/apsb07-13.html
    Though my plug in for png was not updated, I realized that my mistake was rather simple. I was creating png's in photoshop by saving as, and just typing in .png after the filename instead of choosing .png from the file extension drop down. I wasn't choosng png from drop down extension list because it wasn't appearing as an option, I thought this was weird but I just typed it in myself. It seemed to save just fine, however upon trying to reopen the png file, I was getting the same error message in phtooshop as Kelly.
    The solution - Photoshop does not give you the option to save a file as .png if it is in CMYK image mode. It must be in RGB, which makes sense since .png is a file format created mainly for web viewing. Once you change your image to RGB (menu option: Image/Mode/select RGB), the .png file extension will appear in the drop down and you should not get an error message when opening the file.
    If you were not the creator of the .png file, then you may need to contact whomever saved this file and let them know they need to resave it as mentioned above.
    hope this helps!

  • Can I scan a doc and immediately create a PDF or do I have to save it as a PNG JPEG etc?

    Can I scan a doc and immediately create a PDF or do I have to save it as a PNG JPEG etc file and then convert it? If it has to be the 2nd option how do I do that?
    When I open a JPEG file there is no option to convert??

    Hmmm what version have I downloaded??
    Qty Product
    1  Adobe CreatePDF, Annual ????
    So what can I do with that? scan a doc and save as a PNG/JPEG file and then convert to a PDF file? But how????
    Thanks for your help

  • I have a pdf file 50 pages and want add to 1st page a logo (icon png or gif or jpg), well I have cs4

    I have a pdf file 50 pages and want add to 1st page a logo (icon png or gif or jpg), well I have cs4 master collection... how do it?

    what is "pinch"? what cs4 program(s)
    to use for this?

  • Save Applet as a jpeg/gif image

    I wrote a small applet to draw some lines.
    it work fine.
    What i want to know is how can i save this applet to a jpeg/gif file.
    (Assume there is a Button in the Applet or Even in the HTML page; when click the button needs to save the applet as an image file)
    is it possible??
    import java.applet.*;
    import java.awt.*;
    public class Test extends Applet {
       int width, height;
       public void init() {
          width = getSize().width;
          height = getSize().height;
          setBackground( Color.black );
       public void paint( Graphics g ) {
          g.setColor( Color.green );
          for ( int i = 0; i < 10; ++i ) {
             g.drawLine( width, height, i * width / 10, 0 );
    <applet code="Test" width="300" height="300">
    </applet>
    Message was edited by:
    jugp

    After finding out some facts i tried to do like this;
    but still having some runtime exceptions....
    need help from anybody!!!
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.BufferedImage;
    import javax.imageio.ImageIO;
    import java.io.File;
    import java.io.IOException;
    public class Test extends Applet implements ActionListener{
       int width, height;
    Image backbuffer;
       Button save;
       public void init() {
          save = new Button("save");
          add(save);
          save.addActionListener(this);
               width = getSize().width;
          height = getSize().height;
          setBackground( Color.black );
       public void paint( Graphics g ) {
          g.setColor( Color.green );
          for ( int i = 0; i < 10; ++i ) {
             g.drawLine( width, height, i * width / 10, 0 );
       public void actionPerformed(ActionEvent e) {
         String cmd = e.getActionCommand();  
         if (cmd.equals("save")){
                 BufferedImage bufferedImage = new BufferedImage ( width, height,
                       BufferedImage.TYPE_INT_BGR  );
                        bufferedImage.createGraphics().drawImage( backbuffer, 0, 0, this);
                   try {
                        ImageIO.write( bufferedImage, "jpg", new File ( "image.jpg" ) );
                   } catch (IOException e1) {
                        // TODO Auto-generated catch block
                        e1.printStackTrace();
    <applet code="Test" width="300" height="300">
    </applet>
    */

  • Can assets be images of type jpeg,gif,Tiff,etc... ?

    Hi,
    I am working  on ES2.
    I am able to take PDF file as form to the  my  process. Here  my  new requirement is   in addition to  pdf  I need to take all types  of  images
    say jpeg,gif, and Tiff  as  input to my  process.  But I am not able to do that bcas Workbench only  takes *.pdf as input.
    If you have other extensions  expect  pdf,  while   taking the asset into the  start activity, I  could  not  find that  file in the  application.
    Please help me in this regard how  workbench takes  all image files as inputs into  the  process.
    Thanks
    Praveen.

    Hi Scott,
    Thanks for your reply.
    Yes   I  have to use as image file as form  to the process.
    I am using  Adobe LC ES2.
    Let  me explian my  requirement :  I have  scanned image   and  need to use that image as input to the process i mean image as form  to the process.
    I will invoke the process then  scanned image should come as form  in the  workspace .
    Please help in this regard.
    Thanks
    Praveen.

  • Photoshop cs3 cant open Png or Gif formats?!? a.s.a.p please help!

    i have photoshop cs3 and for some reason every once in a while photoshop cant open gifs or pngs? when i try to save one on the format options it doesnt show either png or gif as an option? i know you can save as web and devices but i really need to get it fixed beacuse i need to open my gif and png pictures please help?

    Can you open them in other programs?
    They are not Photoshop-only formats.

  • Image (jpeg, gif) display in AWT layout manager

    Goodmorning All,
    I am looking for some help, a hint on my AWT Layout challenge i have.
    Example GUI_1:
    =========================
    Window border..................[_][x]..
    =========================
    [label]....|display_area|....[button].
    [label]....|display_area|....[button].
    ...............|display_area|....[button].
    ...............|display_area|....[button].
    ...............|display_area|..................
    =========================
    ...........................................[QUIT].....
    =========================
    I want to
    - display a picture in the "display area" of the this GUI
    - put labels left of it with some text
    - put a couple of buttons right of it, through which i am able to manipulate the image
    Questions:
    *1. Is it (even) possible to display an (jpeg,gif) image in the "display area" while using a layout manager?*
    Surfing over the internet...so far i only have found applet-examples that use the full gui surface of the applet to display an image via the g.drawImage (imagename, x,y); without any gui elements (labels, buttons) beside it.
    *2. What kind of AWT gui element do i need at the location of the "display area"?*
    Is is possible to use a CANVAS or do i need somethen else? (e.g. glue an image on a button)
    *3. Is is possible to display an ANIMATION (series of sequences jpeg, gifs) in the display area?*
    I already found out how to locate and load the images (via mediatracker).
    Now i need to find a way to "paint" the loaded images in the GUI.
    *4. Is this even possible with AWT layout or do i need to switch to SWING layout?*
    I have not used Swing yet, cause i'm working my way up through the oldest gui technologie first.
    *5. Do know any usefull websites, online tutorials (on awt and displaying images) that can help me tackle my challenge?*
    Thank you very much for your hints, tips and tricks

    A link as Gary pointed out is the best way to see what the problem may be.
    Did you save the image to your working folder and have you defined a site pointing to this folder.
    Defining a site helps Dreamweaver track and organize the files used in this site.
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14028
    If you can't see the image, this means that the path to the image is incorrect.
    Nadia
    Adobe Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • Jpeg/gif attachments in GW2012 client on Windows7 slideshow

    Hi,
    We have noticed this on a few PCs so far.
    Gw2012 client on Windows 7 64-bit.
    Problem only noticed in jpeg/gif attachments.
    When the user right-clicks and OPENs a jpeg/gif attachment, the file opens in the Windows Photo Viewer. However, it defaults to a slide show and starts showing other jpeg/gifs which were opened in the previous emails. How can we stop the slideshow and have only the opened file displayed?
    Anyone has experienced this problem?
    Any help in this regard would be greatly appreciated.
    Regards,
    Yaser

    yasers wrote:
    > We have noticed this on a few PCs so far.
    >
    > Gw2012 client on Windows 7 64-bit.
    >
    > Problem only noticed in jpeg/gif attachments.
    >
    > When the user right-clicks and OPENs a jpeg/gif attachment, the file
    > opens in the Windows Photo Viewer. However, it defaults to a slide
    > show and starts showing other jpeg/gifs which were opened in the
    > previous emails. How can we stop the slideshow and have only the
    > opened file displayed?
    >
    > Anyone has experienced this problem?
    I've had this problem with Windows photo viewer on Windows 7 64-bit,
    but even outside of GroupWise. Just go to My Documents and
    double-click a JPG and the same thing happens, after about 3-4 seconds
    you'll suddenly be looking at another picture in the same directory.
    I've never found a solution other than to use something other than
    Windows Photo Viewer. But again based on my experience it has nothing
    to do with GW.
    We're your Novell--again. http://www.novell.com/promo/backtobasics.html
    BrainShare 2013 is coming! http://www.brainshare.com

  • JPEG/GIF image to BASE64

    Hi,
    I like to convert JPEG/GIF or any type of image into BASE64 format and Viceversa. Can somebody provide me the java code for doing this.
    Cheers,
    Siva Maranani.

    Rather than use an undocumented API, I would suggest a 3rd party library for Base64 encoding such as the one that I wrote:
    http://ostermiller.org/utils/Base64.html
    It even has several convenience methods for encoding files:
    static void      encode(File fIn)
    Encode this file in Base64.
    static void      encode(File fIn, boolean lineBreaks)
    Encode this file in Base64.
    static void      encode(File fIn, File fOut)
    Encode this file in Base64.
    static void      encode(File fIn, File fOut, boolean lineBreaks)
    Encode this file in Base64.

  • Dynamically convert swf to jpeg/gif format

    hello,
    I need a help to dynamically convert swf to jpeg/gif format
    using java/jsp
    this feature is implemented in php in the below URL
    http://www.sephiroth.it/tutorials/flashPHP/print_screen/index.php
    Thanks and regards
    Namratha

    You need to go here:
    Screen
    Cap Using Flash 8 and PHP
    It is exactly what you need.
    Walter
    And you can kiss the ground and thank God above that I was
    able to point you to this, it took me months to find!!!

  • How is add/insert jpeg/gif files on wiki (code gallery)

    Hi;
    I prepared new wiki-code gallery page. I must insert/add jpeg/gif files on my page. But I dont know  How is add/insert jpeg/gif files on wiki (code gallery).
    Please help me.
    Thanks.
    http://wiki.sdn.sap.com/wiki/display/Snippets/NewTimeDomainandConversionRoutineforTotalTime

    Hi;
    Mr Moshe Naveh helped me. He sended me new template page.
    I again prepared my wiki with new template.  ( http://wiki.sdn.sap.com/wiki/pages/createpage-entervariables.action?spaceKey=stage&templateId=113147905 ) I added jpeg files on new wiki page.
    Then He moved my new page.
    Thanks him.
    Best regards.

Maybe you are looking for

  • Sales Freight charges booking

    Hello Experts, We started the new plant & production as well. Last month we done our first month sale in FOB and CIF term. Usually we are booking in the freight charges in FB60 with sales cost center. What is the purpose of sales order number using w

  • User blogs using non-OD accounts

    I'm attempting to deploy user blogs but all my users are currently in an external LDAP. I've been able to get authentication working so that an LDAP account can login, create a blog, and act as the owner. But any other LDAP user can login and post to

  • How to get pse 9 serial number for rehosting.

    Lost it materials.  Over a year ago.  Have regestered product w. Adobe.  So can I get help?

  • Prepared for shipment in the uk

    My iPhone 4 has just gone prepared for shipment here in the uk. At last I can relax

  • Simple problem but help needed

    how do I accept a character y or n from the user? otherthan readLine()used for String console input. which function should I use to accept y or n and proceed based on y or n , same is the case with boolean. If I would want to accept a boolean value f