image

take picture and directly save image to pc using edsdk 2.8

Hello I'm new to this EDSDK 2.8 At the moment, my program can take pictures, However, when a picture is taken, that picture is temporarily stored in a buffer in the canon camera i would like to know how we could save it directory to PC? Does anyone have any ideas? or a sample code with c# or vb.net? thanks ...

Quick query to retrieve binary image on Image Load?

Is there such a thing?! So for eample, on my image load I have the following hooked up to a table where "Image" is a binary image set of data. protected void Image1_Load1(object sender, EventArgs e) { myent logo = new myent(); var query = (from p in logo.tblLogoes where p.Id == id && p.Id2 == ...

uitableview cellforrowatindexpath display different images for cell image

I'm trying to have a different image for each one of the cells of my tableview. I do this with the following code in the cellforrowatindexpath method: if (platform = @"Win") { UIImage *winImage = [[UIImage imageNamed:@"Vista.png"] retain]; cell.imageView.image = winImage; }else if (platform = @"Mac") { UIIma...

writing Jpeg 2000 images in java

I am trying to encode (write) jpeg 2000 in Java. I am reading a '.bmp' image and try to write '.jp2' image. I am using: javax.imageio.ImageIO.write(img1, "jpeg 2000", file1); I do not receive any error, but the size of the produced image is zero. Can anybody help me please? Thanks a lot in advance. ...

Optimizing performance for image displays.

I am writing a web application that has a page that returns a list of results of objects that each have a profile photo. I am unsure of how large I expect this page to get, but I want to account for it getting to a larger level. Right now, I am only returning 5-10 objects each with an associated photo, and I am seeing a performance decr...

all images in table view are the same in iPhone app

I have a table view where I want a different image for each cell based on logic. Here is my cellforrowatindexpath code: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *MyIdentifier = @"MyIdentifier"; UITableViewCell *cell = [tableView dequeueReusableCel...

css a:link style text and images

I've got a quick css questions that bugging me, and I can't seem to figure out right now. I've styled the links on my page to have a bottom border on on hover, but it the bottom border is appearing on image that have links as well and I can't figure out how to keep the border from appearing on the images. Here is what I currently have....

Launching and database of png images - iPhone

Hello everyone! So, I'm actually making an iPhone app with a big library of guitar chords and scales. The scales are logical, so they are successfully draw by following musical theory. On the other hand, I have a library of 4500 small png files (3ko) for the guitar chords. My problem is that even if it's not used for the launch (but f...

Enable scrolling window in the Sharepoint 'Select an image' dialog window.

Is it possible to make the default image-select popup window in Sharepoint to be a scrolling window? It shows 8 images at a time in thumbnail view, but once there are a few hundred images in a collection it gets very tedious to click through the arrows to find your image. There is a 'detail view' which shows more images at once but wi...

Javascript for hover over one image to bring up another with description in a fixed place.

Hey so I'm trying to create the JavaScript, functions and HTML coding for the website I am working on.I have 8 small images on the left hand side. A default large image on the right. I want to make it so when I hover over each small image another different large image replaces the default large image on the right hand side with a descri...

Cropping whitespace from an Image

Hi guys, Anyone know of a good method of cropping whitespace from an image? I have an external method which generates Image objects containing charts, but unfortunately they have lots of white space which I would like to remove. Thanks, Alex ...

refresh a bitmap or canvas in android

hello guys, can anybody tell me how to refresh or reset a bitmap or canvas to draw another image on it? actually i have a map binary file which contains bitmap tiles in bytes now problem is i have a buffer image with buffer image i get screen image to display. so when i move my screen image i need to refresh my buffer image and draw n...

C++ - image format question

Hello! Is there any fast way to determine if some arbitrary image file is a png file or a jpeg file or none of them? I'm pretty sure there is some way and these files probably have some sort of their own signatures and there should be some way to distinguish them. If possible, could you also provide the names of the corresponding rout...

wmd-editor.com textarea editor, picture upload like the one used in stackoverflow.com

How to change this... into this? ...

django store image in database

Does anyone know if there's an out-of-the box way of storing images directly in the database vs. using ImageField model type that simply uploads it to the MEDIA_ROOT. And if there is, how does one serve those images then? Cheers ...

Disadvantages of storing images in a Database?

Hey! Can anyone please tell me the disadvantages of storing images in a MySQL database? Is it not as efficient as storing the images on the server? Like, will it take longer for the images to load and perhaps slow download the database? Appreciate the help! ...

Jquery: add the width of all image elements within a container

Hey everyone, I have an idea of how I might do this but I was wondering if anyone had a better thought or could help me out. I have an unordered list with a varying number of images dynamically generated within them. I'd like to add the width of each image and set the containing unordered list width to that value. For example, if thr...

css backgrounds images

Hi I have a 1px png file,which I am trying to set as a background image for two divs which are adjacent to each other horizontally.The html and css are as under:- <div id='one'>hi</div> <div id='two'>hello</div> The css is like this div { width: 50%; height: 50% } #one, #two { background-image: url(/images/image.png); ...

IIS 7.5 no images css js showing

I have 2 Windows 2008 R2 x64 servers NLB, ARR with shared configuration. I have the application files in a network share. ASP.net pages (.aspx) come up fine but no css,images,js work. I also have a .htm file shows css and images just fine. In the iis log I do see a 401.3 message. So it seems to be permissions but not sure what else to...

How do I set a Xul window background image? Or, how to add a caption over a image?

I have a window in Xul, and I want to put a background image on it. I found nothing about the z-order, and the background-image and z-index in css is not working for the window.. any idea? In the following test, the image is showing, but not as background. The image starts after the last caption. My xul file: <?xml version="1.0"?> <?...