image

CDN/sub-domain, resources, and versioning

Hey all, I’m hoping to investigate/implement a CDN (initially just via a sub-domain, though moving over to CDN in time) and am having a mare finding resources that talk about handling of versions of files on that sub-domain. Most places I’ve worked previously have implemented caching of resources (images, javascript, css, etc.) and whe...

draw hebrew text to an image using Image module (python)

Hi I am trying to use Image module in order to make bitmaps with hebrew lettering in it. when printing from the shell (idle) I managed to print hebrew, but when trying to draw text to a bitmap it draws some ascii lettering. this is the code: import Image import ImageDraw a = "אריאל" #or any other hebrew string im=Image.new('RGB',(2...

Get all Images from WebPage Program | Java

Hi Currently I need a program that given a URL, returns a list of all the images on the webpage. ie: logo.png gallery1.jpg test.gif Is there any open source software available before I try and code something? Language should be java. Thanks Philip ...

Converting a series of BufferedImages to a video in Java?

How would I convert an an array of BufferedImages into a video? I'm making a screen recorder. This is my main question, but if you know, how would I compress the video afterward? Thanks. ...

Imageslider jQuery

Hi everyone (this is my first thread here) I'm making an "imageslider" (but with div:s) with jquery. The question is, How do i hide my scrolling elements outside of the div with the border? (I'm new here so i cant do post with links so i deleted them) The code: <script type="text/javascript"> var pos = 1; $(document).ready(func...

Display image in NSTableView

Now can I display an image in a table view. The big thing is there will be multiple data sources and each one has a different image. I'm using pubsub to get the data. Ex: data source 1 image -data -data1 data source 2 image 1 -data 2 -data 3 ...

JQuery load event on images

I want to resize an image parent to the same size of the image, when the images are loaded. At this time i'm using this code: $(window).load(function(){ $('.image-principale').each(function(){ $(this).parent().css('height', $(this).height()); }); }); It work, except than it runs only when every image has loaded. I tri...

In an html document, is it a bad practice to resize images with the height and width tags?

If I have a logo image, and I want to use it on another page where I require it to be a smaller size, it is my instinct to create a new image, resized with a graphics editor. However, I am hearing that it is better for the user if I instead refer to the original image and resize it with the browser by changing the height and width in th...

Image storage as a service

Google App Engine provides a image API for storing / retrieving images. We are currently not in a position to deploy our application on top of App Engine because of limitations in the java frameworks (jboss seam 2.2.0) we are using to build our j2ee application. We would eventually want to deploy our production application on top of Goo...

regular expression to validate image filename

Heya im looking to validate a string and make sure it is the following format "thumb_*.jpg|gif|png" where * is a wildcard, and jpg|gif|png are optional file extensions this is in PHP Is that possible? ps: i just want return value true or false ...

Retrieve Images from sql server database

Hi All, i am storing images to the database. How to retrieve all the images from the database. Eg: select images from imagetable Problem: Data Logic: while (dr.Read()) { ///Check for null if (!dr.IsDBNull(0)) { try { ///C...

Image Button property to popup new window

Below is my sample code that already done, unfortunately the the popup window doesn't has min & max icon on right top of the window. It just close icon only and it appear maximum of the screen size. <asp:ImageButton ID="ImageButton2" runat="server" ImageUrl="images/icon_edit_moderator.gif" OnClientClick="window.show...

create share menu and add images

Hello I've two questions for you, which i can't solve: 1) How do I create a menu like this --> . 2) How can I add multiple images like the iApp named HotBook do? . Thanks in advance for your help. Sean ...

Image uploader + crop

Hello! I'm running a web application built on Seam. I would like to have an image upload + crop component.Preferably on client side, so the image uploaded to the server would be the result of the crop. I read this can be made with Flash 10. I was thinking flex is also a possibility. Does anyone has good hints to give me, what component ...

Display TIFF image in all web browser

How to handle [TIFF][1] file in HTML pages? I want to display a TIFF file in my HTML page. I have tried using embedded tag, object id, img, etc. But I am unable to display the image (TIFF) in the HTML page. I am not using Java, .NET or any other thing in my project. I am using HTML only. # Hi all, To the above question, yesterday ...

image display in jqgrid?

Hello All, I want to show the images related to particular record in the jqgrid,please tell how shall I do that . Please tell from where shall I start it. Thanks Ritz ...

django - pisa : adding images to PDF output

I'm using a standard example from the web (http://www.20seven.org/journal/2008/11/pdf-generation-with-pisa-in-django.html) to convert a django view / template into a PDF. The mechanics work wonderfully. Thanks! My question: Is there an "easy" way to include images (either from a url or a reference on the server) in the template so th...

Is there a way to use the UIImagePickerController with your own images?

I was wondering if there is a way to make a UIImagePickerController use a collection of images that you specify (in other words I make 10 photos of doorbells and make the UIImagePickerController show me those photos and let the user select one). In other words, a custom photo gallery is where I'm heading. Is there a way that I can do th...

How do you vertically align images within a list or a div?

Hiya, I have the following code for showing some images: HTML: <div class="footer-logos"> <ul> <li><img src="/sites/default/files/imagefield_thumbs/All Ears Cambodia Logo_1.png" alt="" class="first"></li> <li><img src="/sites/default/files/imagefield_thumbs/MLF rev.jpg" alt="" class=""></li> ...

how do I resize an original image in an HTML table?

Hi I created a table with 4 rows and 16 columns in HTML and I inserted an image in one cell and text in another until I had all my rows and columns. See my code below. My problem lies with the image: the image size is too big. I don't know how to get it to about the size of a thumbnail. Also the text isn't sitting right next to the imag...