image

opacity not working for img pointed by Hyperlink

In an asp.net applicaiton I am using Hyperlink which points to an image. On certain condition I am setting its "filter" property to alpha(opacity=70) for IE and "opacity" prop to 0.7 for Firefox so that it is shown dull to depict disable mode. This works fine in FIREFOX ie it shows dull in disabled mode but not in IE. I see that the...

dynamic image resize using php

I have an image which i am going to be using as a background image and will be pulling some other images from the database that i want to show within this image. So if i am pulling only 1 image, i want the bottom part of the background image to close after the first image, if there are multiple images then i want it close after those ima...

update filename in a url with jquery

Wonder how I could do the following wit jquery - I have a url pointing to an image -> http://www.website.com/folder/folder2/image_current.jpg (this value is stored in a variable) I have variable that holds the value -> new_image.jpg How can I with jquery update the full url (held in the variable) from http://www.website.com/folder/f...

Efficiently loading hidden/layered images in web page

I have a layered div component which displays a successive series of large kb images by slide-animating away the top image to reveal the next image below. I'm trying to understand how best to approach this. Approach 1: layer a number of divs on top of each other, each with an image assigned as background, and slide away the divs as ne...

Display .svg image in cfm problem

There is an svg file I want put into my cfm page. Safari can render it correctly, however, other browsers: In Chrome and Opera it will only show up as xml source; In IE it just left as blank; In FF it display as a plugin icon, if I click it, it will search for plugin, eventually will tell me there is no plugin available. I had Adobe SVG ...

PHP GD center gradient

I've made gradient images using PHP GD horizontal and vertical but how can you get images like these. These are example images for the Emulate Gradient Fill PHP class EDIT: I want to know how to make these from scratch, the website is an example ...

How to find file associated with resource (C#)

I need to edit a toolbar image, but the Image Collection Editor doesn't give a clue WHERE it resides. No file name or resource ID. How can I find this image? ...

Detect web image is correct complete downloaded in filesystem

I use C#, VS 2008, winforms app, for download images JPG, automatized way. Some images haven't downloaded right. I think many bytes (more 70% bytes of image corrupted) not write well in filesystem (folder). I try view the image JPG "corrupt" (using Preview view in WinXP) and I can view 20%-30% of imagen,but 70%-80% is wrong, and I see ...

C# - Loading images into a imagelist and listview

Hello, I have gotten a program Im working on to load some pictures and display them within a listview after using a openfiledialog. What I am looking to do now is take this one step further and auto-load the images from a directory 'icons' within the application directory. Im not too sure how to go about it, So Im going to paste my curr...

find image tutorial

Hi: When I start to use the java 2D API to handle some image, I found that there are some classed I can not know how to use even read the api. I think it is caused by my poor knowledge about the image it self, so I wonder if there is any document about image? ...

mask image via another image

Alright what I am trying to do is: given an image where there is a circle within that image that is "blank". I want to take an existing image from user library and then mask it so that only a certain part of that image is shown on the "blank" image.. I have tried a few masking code but they all seem to work the other way around ... ...

PrinterSetting are ignored while printing an Image

I'm trying to print an Image using PrintDocumentin C# but somehow the setting (like Number of Pages and Image Quality ) are ignored while printing and preview. Is there anything wrong in following code, Am I missing something? private void button1_Click(object sender, EventArgs e) { using (var printDialog = new PrintDialog()) ...

is there any image library can cut the white edge of a picture?

Hi All, I'd like to know if there are any image librarys can cut the white edge of a picture automatically, for example: cut The Wonderful Wizard of Oz.png to cutted.png opensource would be very handy Thanks advance for your help. Best regards, hb ...

Copy BitmapData From mx:Image

How can I copy or duplicate the bitmapdata from a mx:image component? I need to display the same image in multiple screens of my application and don't want to have to download the image multiple times. I could just use a urlrequest to download the image as a bitmap and copy that but I like the way you can can just set the source of th...

Grails:-How To display image in file system

I need to display image that is in file system not in project directory in grails.. i used < img src="${createLinkTo(dir: '/Users/ME/ddImages/reg/', file: '${userInstance.fileName}.jpg')}" alt="User Photo"/> but that doesn't seem to work so any help? ...

Drupal - different images for different languages

Hi all, I have to "i18n" an existing drupal installation and add a second language. I have an image on the homepage that is defined as a 'background-image' in a CSS file. The image contains text, thus I need to show different images depending if the URL is: http://mysite.com/en/ or http://mysite.com/es/ How can I show a different ...

When I upload term image to new Forum topic, it doesn't show

Hi, When I upload term image when creating new forum topic, it doesn't show on website. Instead there is some random image from exact foolder ... it is changed by another programmer in forum-list.tpl.php file. There is this: <div class="forum-item"> <a href="<?php print $forum->link; ?>"> THIS img-> <img src="/sites/all/the...

grid image gallery flash as2.0 big image never in place

hello all, i'm having a bit of a problem with a flash image gallery, this are my problems: I need the big images to appear always at the same place: x=0, y=0, but i've tried everything, modified the AS and not only they never appear at 0,0, but each appears in differents places, any idea how I can fix this? how can I have a next / prev...

Can I have a List view and images icon with textview on the Android

I need to have a listview like it is having for the following android application Since I cannot post the image this is how it should be INAGE Over here | Some Free text | User name etc Here is your task Task 1 > Task 2 > Task 1 & Task 2 are the list which would be dy...

File extension from System.Drawing.Image

I'm writing a method that needs to save a System.Drawing.Image to a file. Without knowing the original file the Image was created from, is there anyway to determine what file extension it should have? The best solution I've come up with is to use a Switch/Case statement with the value of Image.RawFormat. Does it even matter that I save...