image

jQuery galleria plugin with dynamically loaded images

I'm using the Galleria plugin with jQuery to create my image gallery. I'm trying to get load images dynamically from the user's selection into the DOM and have the gallery auto-update to display those new images but it's not working. Firebug shows the images are successfully loading into the DOM but Galleria displays no thumbnails. I ne...

create image cache - large png images

Hi all I am a first time poster. I have a problem that seems very common to a lot of people but I can't seem to find or decipher an answer anywhere. The game I'm making has 3 rather large sprites on screen (230 high) x various widths. Each sprite has 3 1024x1024 character sheets where the frames of animations are taken from. I've ex...

Get image color

I want to display images inside divs or tables as backgrounds. If they images aren't large enough, I'm going to need to find the outer most color of that image and apply it to the background of the containing div or table cell. Does anyone have experience with this? In PHP. I'm a noob so please explain. Thank you so much ...

Core data not saving images iphone app

If i do the following it saves fine: - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)selectedImage editingInfo:(NSDictionary *)editingInfo { box = (Box *)[NSEntityDescription insertNewObjectForEntityForName:@"Box" inManagedObjectContext:managedObjectContext]; // create an instance ...

Magento Community: Product / Category Images do not upload

I have tried all the obvious: - chmod - php.ini - reinstalled magento Anything else? ...

Automatically generate images from SWF

I'm looking for something that automatically generates images from the content in some SWF and stores the images on a server to be fetched if the user doesn't have Flash Player installed. The purpose is to at least show a static diagram instead of just a table with data, if Flash Player isn't installed. It's quite easy to create an ima...

Refresh the UI in gwt

I have created some custom composite widget, which listens to an events (in my case loginEvent). Once the event is caught the state of the widget changes so as the way it should look (in my case I would like to change one of the icons to a signal that the user is logged in). How, after the event is cought, can I make the widget draw its...

Stuck on a loop!

I am creating an app which will be used to upload images to a specified server. I have created my GUI in Qt Designer, everything works fine I just am stuck on something that I know is simple. Cant seem to wrap my head around it. The idea is for the script to go through and see how many text fields are filed in with paths of images - fr...

GD PHP dynamic pie chart generation issue

I've created a dynamic pie chart with the GD extension using the image filled arc function. I pass to this script, via HTTP GET variables, up to 11 values. the first value, n, is the number of values that follow. n1,n2,n3, etc. are the data itself. These are integer precentages. The goal is to make a chart that will show the percent...

Silverlight Image Positioning/Transformation

What I would like to do is the following: Change the points of the four corners of an image. What is possible now, is to change the top left corner. But that will only move the image. I want to transform the image by changing the corner coordinates. The effect will be a 3d-kind transformation. A skew transformation will not do, I want ...

PHP upload pics with space

Hello, please I need hep with the following. I have an upload pictures form. I need to make sure that pics which contain spaces in name are replaced wiht something else, I guess is %. ie pics name is: aa 22.jpg If uploaded this way it does not show it because of the space between aa and 22. What it the way to get rid of the space or ...

Creating arbitrary sized blank pngs/jpegs

I want to create arbitrary sized pngs and jpeg images of a single block colour at a specified x,y size, however I do not want to do this by generating a raw image in memory and encoding/compressing it due to potential memory requirements. How would this be done? ...

jQuery image src attribute broken in IE7

I'm using jQuery (in an ASP.Net 2.0 website written in C#, FWIW) to handle a fairly simple div expansion and image swap (for display state indication) and it's working like a charm in FF 3.5.5 but failing in IE 7, and I'm wondering if you fine folks might be able to help me ascertain why that would be. I'm loading jQuery 1.3.2 from goog...

How to get the size of an image in bytes with Delphi?

Hi dudes, my app has 3 controls: TThumbnailList (image viewer from TMS components), TImage, and TLabel. I wish that when I drag an image from TThumbnailList to TImage, and drop it, the TLabel object shows the size in bytes for that image. How do I get this? Thanks in advance. procedure TForm1.AssignImage; begin //tl: TThumbnailList ...

Displaying a image from a database in asp.net mvc

Hi all, I have a view which contains a users id and an image column. Here's what i've tried doing to retrieve the image but i keep getting a box with an red x instead of the actual image. View <td><img src="<%= Url.Action( "DisplayImage" , "User" , new { id = item.id} ) %>" alt="" /></td> Controller public FileContentResult Disp...

How to create image with rounded corners in C#?

I'd like to create image (from another one) with rounded corners with GDI+. What's the best way to do this? PS: it's not for web, so I cannot make use of client CSS ...

add dynamic (no matter image size) shadow effect on images?

Is it possible to create a 1 pixel shadow image (say shadow.jpg) in photoshop, and then with PHP repeat that shadow just beneath or on the side of an image, for whatever the width or height of the target image is? Example: If my image is 640x420 then shadow.jpg will be repeated just beneath this image 640 times, thus creating a drop sha...

Flex TileList control, image loading issue

I have a flex 3 TileList in wich a load several image (employee's headshot pictures). The image I'm loading in the TileList are stored in a DataBase (I use the ByteArray class and a Base 64 encoding to store the images in the DB). When I load the images in the TileList from the DB, there is no problem they are displayed correctly, but ...

iPhone: How to get a UIImage from a url?

How do you download an image and turn it into a UIImage? ...

How To: Displayed image file name different than actual filename on server.

I would like to display an image but have the file name different than the actual file name on the server. ex) The user would see <img src="/img/photos/Awesome_Picture_By_John.jpg"> by looking at the source code but the actual file name would be /img/photos/12b7dch2.jpg any help is appreciated. Thx ...