image

Android - Using Camera Intent but not updating correctly?

Hello - I am using an intent to capture a picture: Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); i.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(Environment.getExternalStorageDirectory(), "test.jpg"))); startActivityForResult(i, 2); And then once taken I do the...

How to get an image onmouseover

Hi I am using an image by default But i need the image only when i am doing my mouse over option This is the div In which Ihave the image <div style="float:left; height:90px; width:90px; background-color:#CCCC99" style="display:block" onmouseover="return mouseOver();" > <img src=<?=base_url()?>images/m11on.gif name=b1 width=...

getting null when gets image from an url

Hi, Can someone please provide me some solutions as i get null from an image when i tried to retrieve it from an url. It only happens to some images. Here are my codes: image = ImageOperations(this.getBaseContext(), "http://example.download/fairylando_sihc2nck_2.jpg", "image.JPEG"); LinearLayout filepanel = (LinearLayout) findView...

why my image path is not taken?

Hi I am getting the image path from database in this foreach foreach($image as $row){ $value = $row['dPath']; $imgpath =base_url()."images/".$value;//this is not taken $imgpath = base_url()."images/con_icon.jpg";//this$imgpath is taken echo $value; when i give $imgpath as $imgpath = base_url()."images/con_icon.jpg"; it ...

Right way to dispose Image/Bitmap and PictureBox

I am trying to develop a Windows Mobile 6 (in WF/C#) application. There is only one form and on the form there is only a PictureBox object. On it I draw all desired controls or whatever I want. There are two things I am doing. Drawing custom shapes and loading bitmaps from .png files. The next line locks the file when loading (which i...

How to read and write images and video with php?

I am creating a downloadable zip file. In that zip, I want to add php, html, and images and videos. All of them are in other folders. I can read and write php and html files from other files/folders. But I don't know how to read and write (or move from one folder to anther folder) images and videos. I will appreciate any help. Th...

scale image in div after load complete with jQuery

I have some thumbnails and when you click on them I have a Modal box with a DIV that I want to scale 50% w/h from the bigger image. I would like to know if the following method for scaling is valid and cross-browser for an image of 800x530px: #foo-img { width: 100%; height: 100%; } #foo-div { width: 400px; height: 265px; padding...

How to cancel a jquery.load()?

I'd like to cancel a .load() operation, when the load() does not return in 5 seconds. If it's so I show an error message like 'sorry, no picture loaded'. What I have is... ...the timeout handling: jQuery.fn.idle = function(time, postFunction){ var i = $(this); i.queue(function(){ setTimeout(function(){ ...

How does MediaWiki calculate the file path to an image?

Hi All, I'm just installing MediaWiki (loving it). I'm lookin at this for adding images. I can se the logic of [[File:MediaWiki:Image sample|50px]] but where so I set the filepath for "File" (nothing obvious in LocalSettings.php) ... or is there some other logic at work? I'd appreciate any help Thanks ...

How can I alter anythingSlider so that it disables the next / previous buttons when only 1 <li> in the <ul>?

I have a page with multiple instances of anythingSlider on it and I'm using PHP to dynamically load pages that swap out the content in them. Reference: http://ceedcreative.com/CEED_2.0/ I would like to edit the anythingSlider to disable the previous / next buttons if the UL it's displaying only has one LI within it. In other words, n...

python convert 12 bit image encoded in a string to 8 bit png

I have a string that is read from a usb apogee camera that is a 12-bit grayscale image with the 12-bits each occupying the lowest 12 bits of 16-bits words. I want to create a 8-bit png from this string by ignoring the lowest 4 bits. I can convert it to a 16-bit image where the highest 4 bits are always zero using PIL with import Image...

Loading Amazon S3 images into Flex with temporary / signed URLs

I have some secure images on S3 that I need to load into Flex. I was expecting to be able to do this using signed temporary URLs but can't get it working. I know the URLs I'm generating are correct, because they load fine in my browsers' address bar. Moreover, Flex has no problem loading my images with a non-signed url when they are pu...

Hosting a web server through an image

Is it possible that, on my Windows machine, I get the vmware player and an ubuntu image and host a web server from that image? ...

Making dynamic images have static filenames

My website currently has various links to a php script that generates the images dynamically. For example, the link may say "img source="/dynamic_images.php?type=pie-chart&color=red" Obviously, this is not great for SEO. I'd like to somehow make the filenames of these links appear to be static, and use a solution (like Mod-Rewrite) t...

System.Drawing.Image as source for asp.net image container

I created image from byte array System.Drawing.Image newImage; using (MemoryStream ms = new MemoryStream(imageBytes, 0, imageBytes.Length)) { ms.Write(imageBytes, 0, imageBytes.Length); newImage = System.Drawing.Image.FromStream(ms, true); } and now I need to have this image as a source for asp:Image (Sys...

Add image gallery to node in Drupal

I'm using Image module for Drupal 6 and the submodule of Image Gallery. Image gallery is identified by taxonomy term of certain vocabulary. What I need is to attach Image Gallery View supplied with Image Gallery to certain node. I am now trying to use Views Attach to do this. But how can I pass an argument of taxonomy term for gallery to...

why my image and first name disappears in this code?

Hi This is my foreach function <? foreach($Selected as $row) $value = $row['dPath']; $imgp = base_url()."images"."/".$value; {?> <td> <?=$row['dFrindName'].'</br>';?> <?php */?> <img src="<?=$imgp ?>" name="b1" width="90" height="80" border="0"/> </td> <? }}?> Print_r($Selected); results in `Array ( [0] => Array ( [dFri...

Android - What is the best way to create different select (touch regions) on an image button/view

I would like to have different select regions on and image button that are not rectangular? Is that possible? ...

SEO with image link alt text vs standard text-based link

Hi, I'm currently developing a website and the main navigation is made up of image links because the font used for them isn't standard. My client's only worry is will this mess up search engine optimization? Can I just add alt text to the images like "link 1" or use the name attribute of the anchor tag? Or would it be better to just ha...

c# make square image

Hi How to resample an image to square, padding with white background in c# preferable without using any 3rd party libraries (.Net framework only)? Thanks! ...