Okay, I just cannot figure this one out. After looking and re-looking at my code for what is probably hours now, I am still not any closer to finding out this strange behavior.
It has to do with the fading of the background and that it is leaving off about 12 of the images that are listed in the array.
The images that are being left o...
I want to crop an image. Is it possible to do like this. And if yes, how would the crop() function look like?
$imgURL is always a .jpg image.
$image = file_get_contents($imgURL);
$maxWidth = 100;
$height = 68;
$image = crop($image, $maxWidth, $height);
file_put_contents("media/imgname.jpg", $image);
function crop($image, $maxWidth, ...
How can I display an image in C# or VB when the name is in a database?
I am using visual studio 2008 VB or C#
I want to display an image on a windows form
The image name is in a SQL2005 Database
The image is stored in a directory structure.
Ideally I would also like to be able to browse a directory
select an image and add the image n...
Hi,
I created an app which creates an image by using CoreGraphics. The images appears on the screen when using the iPhone Simulator (OS 3.1 beta3) but not when I run the application on the device. What could be the cause of this?
The code snipped which extracts the image from the context and puts it in an image view looks like this:
...
I have an image (.png) and I want this picture to convert to binary. How can I do this?
I am using Webforms ASP.NET C#
...
Hello guys,
I have a hidden contact form which is deployed clicking on a button. Its fields are set as CSS background images, and they always appears a bit later than the div that have been toggled.
I was using this snippet in the <head> section, but with no luck (after I cleared the cache) :
<script type="text/javascript">
$(document...
Hey,
I have a jquery scroller i made with thumbnails and I am trying to create a mini script.
When a user clicks on the thumb nail, it updates code like this:
<div id="big_image">
<img src="HERE.jpg" alt="my image"/>
</div
So when you click a thumbnail on the scroller it updates the SRC of the IMG tag on the page? Any ideas how ...
I need to put images in my Jasper reports that match rows in a database. I have the image data in proprietary archive files which I can easily extract in Java code. I need to know how to connect my Java code to the Jasper report to make the extraction process happen, something like BIRT's onRowSets() method. (I need overview documentatio...
I'm importing some images dynamically into a SWF from an external site using AS2.
It works perfectly when I load my images from my computer, but when I try to load them from the external server the smoothing doesn't work.
My code:
var imageLoad:MovieClipLoader = new MovieClipLoader();
imageLoad.addListener({
onLoadInit:function ...
Users are uploading fotos to our php build system. Some of them we are marking as forbidden because of not relevant content. I´m searching for optimalisation of an 'AUTO-COMPARE' algorithm which is skipping these marked as forbidden fotos. Every upload need to be compared to many vorbinden.
Possible solutions:
1/ Store forbidden files ...
Hi All,
I have one jpg image which is getting rendered in FF but not in IE6.
<img src="Image/warn.jpg" alt="aimage" />
Path is correct as this is working on FF. any clue?
...
In my project, I have a list box. When I click an item on the listbox, I want the PNG image from a file (stored in Global Varible, GV.dir) into the Picture Box named picBox... this is what I have...
picBox.Image = Image.FromFile(GV.dir + lstFull.SelectedIndex.ToString() + ".png");
GV.dir is equal to -> @"C:\Files"
...
Hello,
I have some images in raw RGB and raw YUV data format having 10 and 12 bit depth. i.e. each R,G,B or a Y,U,V is 10/12 bit unpacked format
1.) Is there any image viewer which can view these files.
2.) Also is there any data to view if the data is in packed format? i.e. no zero padding of 6/4 bits after 10/12 bits of data?
Than...
I need to develop simple image viewer, much like the default iPhone Photos application, but for images located on remote server. I don't have any point where to start as I don't have any experience yet with such task (how to make a slideshow and how to handle animations when user slides photos with his finger etc.)
Can you please point ...
hello,
i’m going bananas here, somehow below all of my images in my page there is a gap, a margin
wich isn’t there in the code.
Even Firebug can’t see it but Firefox and Safari are rendering it - EVEN WITHOUT CSS AT ALL!
Never happend to me before...!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml...
Hi I want to set dynamic path to my picture box in winforms. Is it possible to do like this
my image is here some thing like
http://www.indianorphanages.net/images/india-political-map.gif
now I want to bind it to picture box (winforms)
Is it possible?
...
Hi,
Im having a grid in whre the user can specify an image to be shown, and its alignment. If the user chooses a small image and aligns it bottom -right, i want to provide the user with an option to assign a background color to fill in the rest, eg. pink/black/white. When the user now chooeses a small image the background is always white...
Hey guys,
I am using an image switch function in Jquery for a site I am building. There are a ton of projects so I am heavily compressing a lot of these images. Some of them however dont look nice as .gifs and it really only makes sense to make a .jpg.
My problem is that this code only swaps one image, to another image of a different n...
I'm totally new to how to cache images.
I output all images in a gallery with php, and want the images already shown, to be cached by the browser, so the php-script don't have to output the same image again. All I want is the images to show up faster.
when calling an image I do like this:
<img src="showImage.php?id=601">
and the sho...
Hi, I am having trouble working out how to get a simple fade in fade out loop to work. I am pretty new to jQuery as you can maybe tell. I have had a go at it but now it’s taking too long to work out so I thought I would ask for some help.
What I want to do:
I have two Images, id's #img1 and #img2. I want image 1 to fadeIn then wait fo...