picture

JQuery picture load

Hi everyone, I need some help in jQuery. What I'm trying to do is to create some sort of a small picture gallery. In this gallery I've got a couple of small pics and one big pic. By clicking a small picture I want jQuery to load and replace the big picture. Here's a little try which does not work! But probably someone could tell me wh...

C# Very Simple Image Resizer

I am in need of a very simple c# image resizer. By simple, I mean simple. This is just a program that loops through a single directory and changes all the pictures in that directory to the same resolution. Here's what I have so far. private void Form1_Load(object sender, EventArgs e) { string[] files = null; ...

Search a photo for drawing

I want to be able to do something like take a picture of a chalkboard and search for what the teacher wrote and then delete the chalkboard and make like a CGContext Path of what the teacher wrote, or just have what the teacher wrote ...

Excel picture tools format vba

In excel & word 2007 there is a picture tools tab that shows up in the ribbon when you insert a picture or clip art and there is the smart art. Is there a way to manipulate these objects and settings (e.g. transparency, position, effects etc) in vba. A macro doesn't seem to work for me either. ...

Drupal: Checking to see if User Has Picture

I'm displaying the userpicture on a node with this code here: <?php $user_load = user_load($node->uid); $imgtag = theme('imagecache', 'avatar_node', $user_load->picture, $user_load->name, $user_load->name); $attributes = array('attributes' => array('title' => t('View user profile.')), 'html' => TRUE); print l($imgtag, 'u...

path of an image in an eclipse project

I'm trying to display two pictures on my JFrame, the way I found was to use icons and JLabels, this seems pretty straightforward and I'm not having problems with this. But when it comes to locating the image I can't get it to work. I'm on a linux machine thus the forwardslash style. I created a folder called pics in my project which is c...

images vb.net file used by another process error

Hi I'm writing a little program where I select a picture through an open file dialogue. When I selected a picture I want it to overwrite the current picture and display the new image. Now I don't have any problems with picking an image with a different extension. So when I currently have a .png I can select a .jpg but when I choose an i...

Algorithm of naming embedded Pictures in OpenOffice

I need to embed images inside OpenOffice Text documents without the help of OpenOffice itself. For that I need to work directly inside the zip archive and modify the appropriate xml files. The problem I have now is that OpenOffice stores embedded pictures inside a picture folder and asigns a unique name to them according to the informati...

Help with looping Pictures

Hi guys my code for collision detection is as follows i need it to loop through 55 pictures on the main form //aliens are named alien1, alien2 ect //image2 is the collison object ( the bullet) CODE IS TURBO DELPHI procedure TForm1.TimeralienshotTimer(Sender: TObject) var ax2 : integer; bx2 : integer; ay2 : integer; by2 : integ...

How to go about saving images to disk at runtime

I'm creating a basic program (in Java) for a class that helps students study using flashcards, notes, etc. I need a way to allow the user to upload a certain image or video into my program so that it will be available even after they quit and relaunch. I'm thinking of something along the lines of writeObject and readObject and creati...

Avoid flickering while loading a picture in Flash with AS3

Hello, i just trying to learn basic flash programming skills, now i got a program that load an image from my local machine, and show it with uiloader component, code is something like: var myImage:String = "picture.png" var request:URLRequest = new URLRequest(myImage); uiLoader.load(request); it´s working fine, but when dynamically ...

FBConnect on iPhone. question about the profile image

Hi, Im developoing an app for the iPhone where users can chat using their facebook account info. in this case: the facebook username & profile image. my question is How can I share the users profile picture in the chat box so that people can see each others avatars? the pictures must be online somewhere? how to get to that url? I sho...

Rotating a picture using mouse position in C#

Hi everyone. Basically what I'm trying to do is have a picture rotate using mouse events. For example, while you hold down the left mouse button, the picture rotates when you move the mouse up and down. I found another question on here almost like mine (How do I rotate a picture in C#) but when mapping the angle parameter in the rotate m...

Grabbing a picture from within an App?

I want my Android app to take a picture, as part of something larger it is doing. Ideally, I would like to just send out an Intent saying "snap a picture" and get back an image file. Is there an Activity that can handle that, or do I need to do all the low level work with the Camera class myself? Thanks, Peter ...

DIfferences in pictures between ie6 and ie7

BACKGROUND-IMAGE: url(../images/feedback_trans_tab.png); _background-image: url(../images/feedback_tab_ie6.png) I've seen code like this in a css file feedback_tab_ie6.png is 886 bytes and feedback_trans_tab.png has 1.64Kb Both pics have transparent backgrounds so that you can apply your own background color. Both look the same. yet i...

Out of memory with multi images in one picturebox

Hi, ive problem with out of memory when im trying load few images into one picturebox. Pls Help :) public void button2_Click(object sender, EventArgs e) { FolderBrowserDialog dialog = new FolderBrowserDialog(); dialog.ShowDialog(); string selected = dialog.SelectedPath; string[] imageFileList = Dir...

Open Source Java/Groovy library for picture file format conversion?

I need to convert tons of pictures, coming from all kinds of sources, in all kind of file formats. I want to store them all in the PNG file format (even if it means losing e.g. layer data from ESP's). I'm looking for a library that is preferably open source and has a Java or Groovy API (on top of JNI/JNA, if necessary). ...

Is PNG the most economically sound file format to store pictures in?

I am looking for an economically sound solution to store pictures long time. I read about the PNG file format that it has superior characteristics compared to JPEG, namely in these categories: no patents, no licenses, no royalities no quality loss yet compressed I have a lot of big ESP's from PhotoShop that contain tons of metadata,...

Qt - serialize/deserialaize text plus picture

I want to use a field (kind of QTextEdit), which is capabale of storing picture and text (like MS Word is doing) and it serializes and deserialaizes picture+text data. Is there any Qt Widget that allows us to manipulate with picture and text simultaniously and it has set/get functions which operate with serializable type? In othger word...

Is there unresizable space in latex? Pictures in good looking grid.

I've created latex macro to typeset guitar chords diagrams(using picture environment). Now I want to make diagrams of different appear in good looking grid when typeset one next to each other as the picture shows: The picture. (on the picture: Labeled "First" bad layout of diagrams, labeled "Second" correct layout when equal number of ...