1,138 Topics

Member Avatar for
Member Avatar for readbanana

I have a website that allows people to come an upload images. When that person uploads an image it renames it according to who is uploading it. So every time that person logs on and changes his image, it will overwrite the old image. That person will only have one …

Member Avatar for readbanana
0
175
Member Avatar for RykeTech

Hey everyone! I recently took over this website and am making some revisions, but for some reason the image won't center in the placeholder. The site is [URL="http://www.genevabeachresort.com/test.html"]here.[/URL] The CSS behind it looks like: [CODE].galleria-container { position: relative; overflow: hidden; background: #000; } .galleria-container img { -moz-user-select: none; -webkit-user-select: none; …

Member Avatar for RykeTech
0
203
Member Avatar for mrbungle

In my form I have a graphic in a picturebox- simple stuff. My application prints a bunch of stuff to an Excel file- everything works perfectly with no problems. I need the image in the picturebox to print to the Excel sheet. I've tried a ton of code but nothing …

0
86
Member Avatar for Kremlan

I'm supposed to modify this method ([url]http://pastebin.com/6xF1pN51[/url]) to this (translated): "A faster algorithm to compute the average can be done by looping through the entire image in two passes in each session and make a one-dimensional mean value. In the first pass compute the mean value of the y-axis (one …

Member Avatar for quuba
0
142
Member Avatar for saad749

Hi, I am trying to make a Picture viewer for my BS Computer Science 1st Year Project in [B]Turbo C Compiler[/B]. I have to stick with this compiler atm. I want to be able to display BMP,PNGs and JPEGs [TIFF and others too if it won't be very difficult]. I …

Member Avatar for Ancient Dragon
0
1K
Member Avatar for bjeffries

I was wondering if anyone over here could help me figure out why this thumbnail generator is not working. I am using the [url]http://code.google.com/p/smart-lencioni-image-resizer/[/url] I have a discussion on his google group going but he I am not really getting anywhere over there on getting this issue figured out. I …

Member Avatar for bjeffries
0
327
Member Avatar for SerogaM

I want change file from JPEG to tiff and no use any compression change image size : the code I wrote is:[CODE] f=imread('source_image.jpg'); figure(1) imshow(f) imwrite(f,'new_tif_image_file.tif','compression','none','resolution',... [100 80]) g=imread('new_tif_image_file.tif'); figure(2) imshow(g) [/CODE] ~~after all these done I look at two images and they look same... what problem in this code?

0
72
Member Avatar for Clawsy

Hello, I have to continously update an image based on screen capture. So how can I memorize only the part of the image that changes from one picture to another (from one frame to another)(pixels?)... Think of a remote desktop. It's not a good thing to send a 200K desktop …

Member Avatar for mesho100200
0
2K
Member Avatar for Gribouillis

This snippet defines 3 functions to create in a few seconds an image of a graph containing arbitrary python objects. It uses the module pygraphviz (available at [url]http://pypi.python.org/pypi/pygraphviz/[/url]). See the example use case at the end of the module.

Member Avatar for woooee
1
1K
Member Avatar for Pokenerd

Hi guys, I am writing a small application which needs to load some images, and other resources. I am currently trying to find the best way to package these resources in my application. I have looked at some examples, I but I have been having trouble understanding them, and many …

Member Avatar for lee.j.baxter
0
148
Member Avatar for raju_boini525

hi all, i am working on a project, it needs google images search, how do i integrate google images serach, i want to add that images to my website, is it possible?, anybody know about this, please help me.

Member Avatar for pritaeas
0
68
Member Avatar for ptemedia

Hi, I have an objectdatasource showing lots of details for a particular product. In the table of products, there is an extra field which is either 'yes' or 'no' Is there a way in the cs code or javascript to make an image visible="true" if the value is 'yes' thanks

0
75
Member Avatar for feoperro

Hi, I'm trying to write a script where I can click an image to hide a table, then hide the table and change the image. Then if I click the image again, it should show the table and change the image to the initial image. Below is the code I …

Member Avatar for feoperro
0
233
Member Avatar for Abysinian

Hey, I'm doing a lot of work on my website, and changing from tables to divs for holding my images. At the moment, this is the code i'm using for the divs for my images in my CSS file: [code] #imgHolderLeft { float:left; } #imgHolderRight { float:right; } #imgCaption { …

Member Avatar for Abysinian
0
114
Member Avatar for Kniggles

[CODE]<?php // open base $con = mysql_connect("xxxxxxxxxxx", "xxxxxxxxxxx", "xxxxxxxxxxxxxxxxxx"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("xxxxxxxxxxx", $con); // open table $result = mysql_query("SELECT * FROM leader"); // print table & column headders echo "<table border='1'> <tr> <th>id</th> <th>Club</th> <th>Website</th> <th>Club Badge Url</th> </tr>"; // get data …

Member Avatar for Kniggles
0
214
Member Avatar for feoperro

Hi, I have my project folder in www\project - for some reason, some of the images don't work and some do. All pictures are in the same path (project root) but some display a red cross and some display perfectly fine. As far as I know - theres no way …

Member Avatar for feoperro
0
163
Member Avatar for saadi06

//this code is for upload,i have successfully uploaded my file in to uploads folder please can anyone tell me how can i get the image from my folder if(isset($_REQUEST["upload"])) { $name=$_FILES['uploadedfile']['name']; $type=$_FILES['uploadedfile']['type']; $size=$_FILES['uploadedfile']['size']; $check=$_FILES['uploadedfile']['name']; $uname=str_replace(" ","_",$name); $tmp_name=$_FILES['uploadedfile']['tmp_name']; $target_path = "uploads/"; $target_path = $target_path . basename( $uname); if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) { echo …

Member Avatar for naveedkhalid
0
146
Member Avatar for hassancool

HI, I am using an Image Hosting Script... I want to modify it according to my needs... Is there anyone who can help me in this? I can also pay for that.... But its Really Urgent.... Regards....

Member Avatar for hassancool
0
152
Member Avatar for hl1202

Hi all, i'm working on some exercises which i have to load data from Image library. I write a load function and it work fine except when the number of images in the library becomes large. At this moment, the limited number if around 700 images. When the number reaches …

Member Avatar for vijayan121
0
264
Member Avatar for killbill07

I have a folder with pics and I need to use scandir() to show all images in a html file. But scandir returns, for example, "image.jpg1". Why? How can I do that withouth problems?

Member Avatar for monica singh
0
150
Member Avatar for saadi06

//i have a problem i have made an edit page and it is working properly and i have done image uploading in it but if the user updates without uploading any image its previous image is removed can any body help me how to get the previous image my code …

Member Avatar for saadi06
0
165
Member Avatar for SunnySideUp

Hi, I have this image script and I want to upload the image and then save the file into a Database, but I keep on getting errors(a blank screen). Here's my code: [CODE] if(isset($_FILES['logo'])) { if(($_FILES['logo']['type'] == "image/jpg") || (($_FILES['logo']['type'] == 'jpeg') && (($_FILES['logo']['size'] < 524288)))) { $logoname = $_FILES['logo']['name']; …

Member Avatar for SunnySideUp
0
145
Member Avatar for jackocurly0074

Hi guys, Have been doing some wxPython programming and haven't had any major issues until I wanted to display images! Basically I take readings from an external device (simple input device) and set the image in a panel based on this reading. However it seems that the picture does not …

Member Avatar for cghtkh
0
133
Member Avatar for Jeyush

Hi buddy, I have small script which upload the images. This script is working perfectly fine in localhost but when I upload that script to my website then it is not uploading the pictures. I have subdomain in my website names as [url]http://projects.abc.com[/url], In projects folder I have my photo …

Member Avatar for jamal_jarrar
0
164
Member Avatar for valiandra

Actually I'm new in java, only 2 year, but force to develop advance application for my final year degree project. I'm going to developt image sketching and sketched recognition for police force. My question are: 1. What technique that i could use to to developt to combine several image in …

0
60
Member Avatar for Arturo32

It is possible to compare background images of a pictureBox? This piece of code works?: [CODE] pictureBox8.BackgroundImage == pictureBox9.BackgroundImage [/CODE] I ask bcause apparently, if used as this: [CODE]if(pictureBox8.BackgroundImage == pictureBox9.BackgroundImage)[/CODE] the result of that IF sentence is always false

Member Avatar for Arturo32
0
106
Member Avatar for ptemedia

Hi. I am making an asp website to sell items. On the details for individual products page I have an image and 3 smaller ones beneath. Clicking on one of them will bring up a larger image on the screen. However, at the moment, I have to have 4 images …

Member Avatar for Airshow
0
200
Member Avatar for worldisorder

Hello All, I am trying to load images from a file path after saving them from a c328 camera. The camera part works but when I use a while loop it does not display on the picturebox. All of this is done when clicking a button. Any ideas? [CODE] private …

0
85
Member Avatar for ajay531

hi i am using windows application. in that form i place picturebox, openfiledialogue, loadimage, saveimage buttons. using loadimage button to load image into picture box. using saveimage button to save image into one folder(save image into harddisk) at the time of save image first we crop the image like height:100 …

Member Avatar for codeorder
0
170
Member Avatar for ITStrawberry

Hello guys, Can someone help me? I have a scanned document in my system. It's a tiff file. You will see below the code i have written. The problem is that i get an error message. The message is like this "A Graphics object cannot be created from an image …

Member Avatar for codeorder
0
136

The End.