image

PHP GD Trim Transparent Pixels from created PNG

I am currently working on a website and lately have been using GD with PHP to automatically create transparent images that consist of text for use with navigation, headers, etc on the website. It saves me a lot of time in Photoshop plus I can change the text on the buttons instantly when needed. Well I have hit a dead end here. I foun...

How can I create a collage in MATLAB?

I want to write a program that can create random collages from a given folder of pictures. To begin, I want to create a simple collage from three images. Something like this: I have almost no code right now clc; clear all; close all; a = imread('a.png'); b = imread('b.png'); c = imread('c.png'); % create a new image of size X x Y ...

How to get images from over webscope using PHP?

Hi ! How can i display an image on my webpage which i located above webscope? The image is located at /home/image.jpg and the website is located at /home/www/example.com/index.php which refers to http://example.com/. I have tried this code to retrieve the image, but it does not work :( header('Content-type: image/jpeg'); read...

how do i use a UIPageControl???

I am making an app where 10 images can be scrolled through using a page control. The problem is that I have absolutely no idea how to use a page control. Any help at all is appreciated. ...

Jquery slider boxes

Not sure if this is a javascript issue or can be solved with CSS. Im using an image with a text overlay slider but seem to having some issues with where the slider starts on page load. This is the live example, I would like the slider to be hidden on load and appear from below on rollover. http://www.warface.co.uk/clients/detail-shoppe...

problem with itext pdf image extraction !

Hello. I have a problem in my image extractor code. Any suggestions are appreciated. I first get a stream from the PDF and check each of the objects, if an object is an image I save it. The code is working properly and I can get all the images in the PDF. Some images are unusual because part of the image missing (hidden/erased) and ima...

jquery image resize transition onMouseOver

Hello, just wondering if there is any jquery plugin that when your mouse is over an image, this image will increase in size and if your mouse is out of the image it'll decrease in size all this as a smooth transition. thanks! ...

Loading external images then fading between them using ActionScript 3.0...?

Hi, I'm using the Loader class in AS3.0 to load external images. I need to load a random image each time and I'm using a timer to load a new image after 5 seconds or so. When I load the first image, I call... myMovieClip.addChild(loader); After the first time I call... if (myMovieClip.numChildren > 0) { myMovieClip.addChildAt(lo...

How to display and tag a region of an image with python

I'm used to writing python scripts that interact with files, data and databases but I haven't done user-interfaces. For my current project, I want to show an image (jpg/gif/png) to a user so it can be region-tagged. Region-tags are not just information about the image (like location or has/doesn't have people in it) but about the conten...

Is there any way to look for an image using the path? MediaStore.Images.Thumbnails (Android)

Hi, I'm using MediaStore.Images.Thumbnails in order to show the images the user have. But i'm not able to get an image through its path. Is there any way to look for an image using the path? String [] proj={MediaStore.Images.Thumbnails._ID, MediaStore.Images.Thumbnails.IMAGE_ID, MediaStore.Images.Media.DATA}; String selection = Media...

Pulling Images from rss/atom feeds using magpie rss

Hi all, Im using php and magpie and would like a general way of detecting images in feed item. I know some websites place images within the enclosure tag, others like this images[rss] and some simply add it to description. Is there any one with a general function for detecting if rss item has image and extracting image url after its b...

Converting pdf file to images using c#

Hello folks., using c#,i need to Convert each page of a pdf file into separate images and display the images? is it possible to do this without using 3rd party dll? any pointers ? thank you ...

Strange ListView scrolling issues

I have a ListView in my app that has a background image. All of the rows are a semi transparent white (#35FFFFFF). Whenever I scroll the list, the rows turn a light green that obscures the background image until I stop scrolling (usually--sort of unpredictable). Sometimes it flickers between the background image/color and the green. And ...

Simulate Photoshop's Multiply in PHP with gd or ImageMagick

Having until now only used PHP's gd image library to resize, crop and greyscale images I'm currently struggling to find a way to simulate what happens when, in Photoshop, you place a coloured layer over a greyscale image and select 'multiply' from the layer effects menu. Or, as my old print lecturer would explain it, I need to make a duo...

Where to find jstree jquery plugin images?

I'm trying out jstree, the jquery plugin to create a treeview. It works fine, but I can't get some of the inner workings of it. And one (seemingly) simple thing bothers me like crazy: Where do the images for the folder icons etc come from? I mean, even if I don't define a theme there are still default icons for the folders in the result....

Editing an image in iphone sdk?

Hey guys! So right now I'm making an app that takes the data of pixels (like rgb values) and I want to modify these values to smoothen out the image. I already have the getting the values done, now I just need to set them. How would I go about changing the rgb values on pixels in an image? Thanks in advance! ...

Dynamically filling ListView with an image and a string

I would like to fill my ListView with do aligned elements, a little icon (either a confirm mark or a cross) and a string which contains the result of a question (Right / Wrong, that's why icon). daInserire = new ListViewItem(); daInserire.Foreground = new SolidColorBrush(Colors.DarkGreen); daInserire.Content = "Giusto: "+ straniero.Text...

The file is not part of the project or its build action property is not set to resource.

Here's a screenshot: How can I display the 'no.png' image? It seems changing it to Resource worked. How can I change the image in my code-behind c# file? imgStatus.Source = new ur??? ...

Setting an Image to my Image control.

private void SetShipmentStatus(bool status) { if (status) { txtStatus.Text = "Su envio fue entregado!"; imgStatus.Source = ??? } } How can I give my XAML Image control a source programatically? I have the image in this location as Resource: ...

Jquery Image Slider with Margin Issues

View a live example here http://ninjaparadise.co.cc/ , you click it to the right it goes fine but when you click it to the left then you see whats wrong.. Heres the javascript code i use /* Slideshow */ $(document).ready(function() { slideshow_loading = true; slideshow_busy = true; current_slide = 1; slideshow_loop_interval =...