picture

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 of any picture drawn so the user does not have to set it explicitly(like for example when using latex build in picture environment). Howe...

Retrieve pictures from Excel file using OLEDB

I have an Excel sheet with two column, one is a number , and second column have a picture. i want to read these data from c# with oledb connection, i can read number easily , but pictures is not contained in second column , so in c# i just get first column. now, how can i read the images ? i want to extract the numbers and related image...

How can I get the same kind of slide show as Photos and Facebook in my iPhone app?

There's already excellent code for browsing and viewing pictures on the iPhone, as shown by apps like Photos and Facebook, and I don't feel like inventing the wheel again. I thought that this functionality would be built into the API, but I'm having a hard time finding it. Am I blind or do Apple really force us to write our own? ...

Use Picture In C# WinForms Or Don't Use?

Hi all When I Use Picture (Every Picture) In WinForms in C#.net,My Application is Very Slow. What Is Solution? Edit:: I Use Picture From Resource into Background of Form. ...

problem showing pictures stored outside web root folder

On a website users can upload pictures. For security reasons these are stored outside the webroot (public_html) folder. When I need to display the picture, I send the headers and have "readfile" read and output the picture data, like so: header("Pragma: public"); header("Expires: 0"); // set expiration time header("Cache-Control: must-r...

[Delphi] TImage losing loaded picture

Running Turbo Delphi Pro. I'm using TImage to display a png image. When I restart Delphi and load the dpr file, TImage is still there, but the picture is lost, requiring a reload of the picture before compiling. At first I thought it's a path issue, so I loaded the picture from the same directory as the dpr, but it didn't help. What ...

How to upload a picture ?

I just didnt see it, how do you guys upload a personal photo on this forum ? ...

Django forms I cannot save picture file

i have the model: class OpenCv(models.Model): created_by = models.ForeignKey(User, blank=True) first_name = models.CharField(('first name'), max_length=30, blank=True) last_name = models.CharField(('last name'), max_length=30, blank=True) url = models.URLField(verify_exists=True) picture = models.ImageField(help_text...

how to view encrypted picture

how do people view encrypted pictures like on this wiki page? is there a special program to do it, or did someone decide to do some silly xor just make a point about ECB? im not a graphics person, so if there are programs to view encrypted pictures, what are they? ...

upload application like picup or cliqcliq for Android

Hello, Based on the fact that there is no file upload supported by the current Android browser (I know that 2.2 should support it but I am looking for a workaround right now). Is there an application for Android like picup or cliqcliq (iPhone) allowing me to open the app to take a picture and then returning to the web page automatically...

how to get series of pictures?

i have problems with this, recently i have also problem with just taking 1 photo... do you know how to solve it? any working code? i'm doing it like that: mCamera = Camera.open(); Log.e(TAG, "onCreate"); mCamera.takePicture(null, mPictureCallback, mPictureCallback); Camera.PictureCallback mPictureCallba...

Create a picture with GD containing other images

Hi, I would like to create a picture in PHP with GD composed by different other pictures. For example I have 6 pictures (or more) and I would like to create ONE picture who contain these different pictures. The Difficulty is that my final picture must have a fixed width and height (304x179), so if the different pictures are too big the...

Open Image with the Windows Picture and Fax Viewer (Java)

Hi there I have a picture which I would like to open with thewindows Picutre and Fax Viewer. How do you do that? I was able to open it with mspaint of which I know the exe File. The Code is the following: File imageFile = new File("filepath" + System.currentTimeMillis()+".png"); ImageIO.write(printImg, "PNG", imageFile);...

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 a photo of the car. My question is: should I keep the photo in the database as a binary data column in the row for this specific car, or ...

set or update profile picture using fbconnect facebook ?

hello .... i have a image and i want to set this image as the users profile image. i came to know that we cannot upload directly to "Profile pictures" so i uploaded it in some other album and now i want to set this image as its profile pic ??? any idea how can i do that using fbconnect ? thanks in advance ...

Drag big picture in small layer?

Hi, I need a plugin for jquery or another js framework, where I can define a small div where i can drag around a big picture, so i get only a clipping of the picture. any ideas? edit: i try to explain i have a small div, like 600px x 450px. this div behaves like a clipping window for a big picture with like 3000px x 2000px. so i only ...

how to turn a picture from clipboard into array data

I want to turn a screen shot from the clipboard into a array data (Red/Green/Blue) in my program. so i guess it's as simple as that. but i don't want to use anything else then the print screen and clipboard if i can? anyway any questions just ask. ...

Image storage/search web application

Hi, I work for a multimedia department of the government and we have a lot of images that we would like to share with others departments. Here some information: We have around 20TB of images and photos to share. We already have a windows 2008 environment running .net mvc web applications. We already have a mssql cluster in place. We ...

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 white background of the second image covers part of the background. I want the background to be visible where the foreground picture has no c...

Android Reduce Picture dimension Taken

How do I reduce the picture dimension taken in Android? By Default whenever I take a picture, the dimension is 2048x1536. Camera.Parameters parameters = camera.getParameters(); parameters.setPictureSize(1028, 768); This is how I should do it? ...