Αυτός ο ιστότοπος θα έχει περιορισμένη λειτουργικότητα, όσο εκτελούμε εργασίες συντήρησης για να βελτιώσουμε την εμπειρία σας. Αν ένα άρθρο δεν επιλύει το ζήτημά σας και θέλετε να κάνετε μια ερώτηση, η κοινότητα υποστήριξής μας είναι έτοιμη να σας βοηθήσει στο Twitter (@FirefoxSupport) και στο Reddit (/r/firefox).

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Μάθετε περισσότερα

Which plugin should i use for displaying images of jpg,gif,png types

  • 9 απαντήσεις
  • 4 έχουν αυτό το πρόβλημα
  • 6 προβολές
  • Τελευταία απάντηση από havefun

more options

i'm developing a web application where i need 2 display images and videos. videos are working fine but not able to display images using object tag since not able to figure out correct plugin

i'm developing a web application where i need 2 display images and videos. videos are working fine but not able to display images using object tag since not able to figure out correct plugin

Όλες οι απαντήσεις (9)

more options

There shouldn't be a plugin needed to display image or media files.
If such files are send with the correct content type by the server then it should work.


<object data="http://<link_to_image" type="image/jpg"> </object>

data:text/html;charset=utf-8,<object data="https://support.mozilla.org/media/img/avatar.png" type="image/png"> </object>
more options

It doesnt works for me. Even for video if i disable media player plugin it is not working because mime type for my video extension is available in media player plugin only. so i need to know which plugin can support mime type of image/jpg so that image can be displayed

more options

Can you post some sample code to show what you want to achieve?

more options

C# code

if (galler.RowCount > 0)

{
       if (galler.s_IImageCategoryId == "2") // for Wall Photos
             {
                    drRowsShare["Type"] = "image/jpeg";
                    drRowsShare["UserShareImageLoaded"] = AppDomain.CurrentDomain.BaseDirectory + "/WallPhotos/" + galler.IUserId + "/" + galler.s_SImageName;
              }
              else if (galler.s_IImageCategoryId == "4")  // for videos
              {
                        drRowsShare["Type"] = "video/x-ms-wmv";
                        drRowsShare["UserShareImageLoaded"] = AppDomain.CurrentDomain.BaseDirectory + "/WallVideos/" + galler.IUserId + "/" + galler.s_SVideoName;
               }
              drRowsShare["GalleryId"] = GalleryId;
 }

Aspx code:

<object data='<%# Eval("UserShareImageLoaded")%>' type='<%# Eval("Type")%>' height="250" width="250">

<param name="autostart" value="false" />
</object>
</object>

more options

You can try type="image/jpg" for the image and type="application/x-mplayer2" for the media file to see if that works better

more options

still same problem exists. I m not able to find any difference with the change

more options

Do you have a sample page online that has the problem?

more options

no i dont have. i'm working in localhost

more options

i'm completely changing my logic so its not required now. anyways thanks for your kind replies