Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
7answers
5k views

How to get a screen capture of a .Net control programmatically?

How do you programmatically obtain a picture of a .Net control?
8
votes
17answers
2k views

Which tool do you use to draw simple diagrams/pictures to illustrate a technical point?

Which tool do you use to draw simple diagrams/pictures to illustrate a technical point in a document?
6
votes
5answers
3k views

Get contacts photo which are synced with facebook for android

I am trying to show contact pictures in my application but I am getting pictures of those who were added manually only and not those which are synced with facebook. How to work around this? Here is my ...
5
votes
3answers
199 views

How to shrink a picture?

Question about Delphi - 7 language. I have image (500x500) but I need to resize it to 200x200 and paint it on TImage. How to achieve such result? NoteI know about Strech property in TImage, but I ...
5
votes
2answers
147 views

Taking a low-quality picture of the screen

I want to be able to take a low-quality image of the screen. I can take a bitmap picture, but no matter what I do I can't lower its quality.
5
votes
3answers
6k views

Android post picture to Facebook wall

I am trying to post a picture to my wall on Facebook. I have managed logging in and posting text to the wall. However, when I try posting the picture, nothing happens. I am using the Android Facebook ...
5
votes
3answers
15k views

C# : How to save a picturebox control as a jpeg file after it's edited

Hi I have a picture box on my windows forms. I load a picture in it and I have enabled Paint Event on my code.It draws a rectangle. Like this; private void pictureBox1_Paint(object sender, ...
4
votes
2answers
55 views

Getting all friends' pictures using the fields parmeter doesn't seem to work?

I use the JavaScript SDK for Facebook Connect. Yesterday I loaded all the friends of a logged in user like this: ...
4
votes
1answer
47 views

Java image copy ok on windows but altered on linux

I download a picture from a URL with the following method : private void download(String srcUrl, String destination) throws Throwable { File file = new File(destination); if (!file.exists()) ...
4
votes
2answers
413 views

Picture.writeToStream() not writing out all bitmaps

I'm using webview.capturePicture() to create a Picture object that contains all the drawing objects for a webpage. I can successfully render this Picture object to a bitmap using the ...
4
votes
2answers
291 views

Best way to bundles photos with app: files or in sqlite database?

Lets say that I have an app that lets you browse through a listing of cars found in a Sqlite database. When you click on a car in the listing, it'll open up a view with the description of the car and ...
4
votes
1answer
1k views

ABPersonSetImageData Only Altering the Contact Thumbnail and Not the Full Pic

I am trying to add a border around each contact photo. I have working code to create this bordered image and working code to set it as the contact image: if (image) { NSData *dataRef = ...
4
votes
3answers
28k views

How to do picture overlay in HTML (something like marker on top of google map)?

Anyone know how to do picture overlay or appear on top of each other in HTML? The effect will be something like the marker/icon appear on Google Map where the user can specify the coordinate of the ...
3
votes
1answer
53 views

How can I save a Panel in my form as a picture?

I have a form that has 2 panels. I'm trying to save the contents of Panel2 as an image. I saw a thread that talked about using the screen capture to do this, but I can't find the thread anymore. Also ...
3
votes
1answer
113 views

Is it possible to post a file by JS without a form?

I've designed a webpage that posts some information like this <form> <table> <ul> <li> <input name="a"> </li> ...
3
votes
2answers
630 views

Get Path and Filename from Camera intent result

I want to make a picture with the camera intent and save it to the default DCIM folder. Then I want to get the path/filename where the picture is stored. I am trying it with the following code: ...
3
votes
2answers
258 views

excel 2010 vba image logo swap switch

Have several logo images (similarly sized) inserted on a resources sheet. Need a way for users to easily select which company they want, and have that logo replace the default logo in upper left ...
3
votes
1answer
462 views

Android Camera continuous focus

I need to implement an app on android which uses the camera and it needs to keep the focus continuously on objects. Whenever user changes the camera position, it should autofocus itself for that ...
3
votes
1answer
128 views

which java library to use to modify a camera picture?

I'm currently looking into creating an app that takes a picture using the phone's camera. The app will be used for clients that are pre-op for breast augmentation. The user will be able to take a ...
3
votes
5answers
2k views

Loading Facebook profile picture securely

I'm trying to include users profile picture from facebook, which works fine, but the thing is when you want to include it on a SSL-secured page. I can't find a way to get the picture to load from a ...
3
votes
5answers
3k views

Android and Facebook: How to get picture of logged in User

I use the official Facebook SDK in my Android Application. After the user logs in, I can get the uid and the name of the facebook user like so: Facebook mFacebook = new Facebook(APP_ID); // ... user ...
3
votes
1answer
552 views

Android Camera Preview — How to 'freeze' the camera?

I'm currently trying to build an android application to take pictures and I need to freeze the camera preview on a given event (i.e. picture taken) and restart it only after another event. What I ...
3
votes
1answer
617 views

MATLAB: Setting window/picture title

I have: img = imread('pic.jpg','jpg'); r = img(:,:,1); g = img(:,:,2); b = img(:,:,3); figure, imshow(r); figure, imshow(g); figure, imshow(b); How to set title over each picture?
3
votes
0answers
149 views
3
votes
1answer
304 views

The way to find out whole picture width in PGF (Latex)

I've got a latex macro that draws a picture using PGF and Tikz according to given parameters. The width of picture drawn depends on these parameters. PGF automatically calculates the resulting width ...
3
votes
1answer
995 views

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, ...
3
votes
2answers
2k views

RDLC, Dynamic Picture based on parameter, c#

Is it possible to add a dynamic picture to a paramter in rdlc? for example: =SWITCH(Parameters!picture.Value="1","picture1.jpg", Parameters!picture.Value="2","picture2.png") or something ...
3
votes
2answers
463 views

How can I grab the color of a pixel on my desktop? (Linux)

I want to grab the color of a pixel with known coordinates on my Linux desktop. Until now, I've used "import -window SomeWindow -crop 1x1+X+Y /tmp/grab.jpg" then extracting the pixel value using ...
3
votes
4answers
2k views

Take picture using webcam from command line

I have a Logitech webcam (QuickCam Pro for Notebooks), and I'd like to take a snapshot using the cam from a command line. Does it have any command line interface? If not, is there an API that will ...
3
votes
3answers
7k views

Download a picture OnClick

How do you actually download a picture when you click on it? Is there some kind of a javascript code to do just that? Here is how i show the image with pure HTML. <a href="#"><img ...
3
votes
2answers
1k views

How can you access a set of photos with the iPhone SDK?

I know that I can access the camera or show the image picker to the user, but what if I just wanted to pick 10 photos, randomly, from the images stored on the device with no user interaction? Using ...
2
votes
1answer
25 views

Display random image pairs from directory

I searched the site but I could not find any solution to this problem. It is a pretty simple thing I am trying to accomplish, but I really cannot figure out how to do it. I have a directory of ...
2
votes
0answers
221 views

Upload picture / photo/ image facebook (android)

I'm using the official Facebook library and I publish photos perfectly. But I've a doubt. When you post for first time, the image appears in the message above the wall. But when you post for second ...
2
votes
1answer
70 views

How to identify blank profile pictures (nothing uploaded)

Some users does not have any profile picture uploaded. There is a way to identify users with blank profile pictures?
2
votes
1answer
62 views

JTextPane HTML Image integration

I have a JTextPane and I do it : HTMLEditorKit kit = new HTMLEditorKit(); HTMLDocument doc = new HTMLDocument();` this.setEditorKit(kit); this.setDocument(doc); Then I do : profilePictureSrc = ...
2
votes
1answer
84 views

Get profile picture of a page

There seems to be a change in the API. It's been a few days it's not possible to access pages' profile picture anymore. You could usually do that by querying: ...
2
votes
1answer
82 views

Picture DRM in python

I am looking for a solution to "sign" pictures. The purpose is to manage the copyrights. Does anyone know if there is a library in python to do that ? If not in C or Java ? Many thanks, Pat
2
votes
2answers
80 views

How can I download and put an image in a view in Android

I use an API (...) I receive an url that contain a png, and I have trouble to show the picture. I have to download the picture, and to show it. I put a gesture to request an other picture, so I have ...
2
votes
1answer
300 views

How to save a picture in WPF application

Goal: Save a picture from the harddrive into my WPF application. The picture should be available if copying the WPF application. The address to the picture located in the WPF application should be ...
2
votes
1answer
255 views

VBA Excel Adding pictures to a worksheet

I found a bit of code that helps insert a picture to a worksheet, but the user has to choose which picture is inserted. I was hoping that it would, instead, choose a specific picture (specifically ...
2
votes
3answers
953 views

How to determine if a Facebook user has uploaded a profile picture or its default?

Is there a way to know if a user uploaded an image to the profile or it has the default user picture of Facebook via FQL or somthing else?
2
votes
1answer
86 views

How can I run a command if the user enters the wrong pass?

How can I run a command if the user enters the wrong pass? I need some code to do this on a mac. I want to run the following command to take a pic of somebody who gets the wrong pass. sudo ...
2
votes
1answer
144 views

Saving great ammount of google maps locally to an JPEG

Im wondering if anyone have a tip for the solution im searching: I need to make an big area from google maps accessable offline. I cannot use regular tools for caching gmaps , since its an customized ...
2
votes
4answers
1k views

Picture orientation from gallery/camera intent

I'm getting picture to my app from camera / gallery intent. In many phones picture that I read from the intent / Uri is already rotated to correct orientation. For example N1, Legend, Desire that is ...
2
votes
4answers
2k views

Displaying image on a Panel

this i a snippet of my code.... public void btn_browse_Click_Click(object sender, EventArgs e) { try { OpenFileDialog open = new OpenFileDialog(); ...
2
votes
1answer
219 views

How to get the RGB values of a 5x5 square?

I am writing a method that is used to get the RGB values of a 5x5 square of pixels and then calculate the average colour of all of them. We were given a package to use, and that's where the .getPixel ...
2
votes
1answer
698 views

android - show pictures in webView that are'nt in filesystem

how can I show pictures in WebView without saving images into file system? I have tried to implement my custom ContentProvider, but method openFile returns ParcelFileDescriptor that points into ...
2
votes
2answers
145 views

How do I load a picture (image) into smalltalk

How do you load a picture into smalltalk? I have found several examples of how to display an image once it is a class resource, but can't find a way to import the picture into my smalltalk ...
2
votes
2answers
251 views

How do I set a picture as the background in ASP.NET?

I am unable to get the background picture to show in my pages. I am trying to do this in the master page using CSS. I have a CSS which contains the following: body { background-image: ...
2
votes
1answer
754 views

OpenGL: Overlay one texture over another and suppress white background

I am a starter of Iphone opengl ES programming. I have two textures, the first one is the background and occupies the full screen. I am printing the second picture on top of the first image but the ...

1 2 3 4 5 8