6,113 Topics
![]() | |
Hello! Below is a part of an html document where I need to save myself time in having to manually put in the number in the p class="ArtNumbers" section. Thank you very much, I'm grateful for your time.[code]<td><p><img src="Food2/SF_Food_01.jpg"></p> <p class="ArtNumbers">1</p></td> <td><p><img src="Food2/SF_Food_02.jpg"></p> <p class="ArtNumbers">2</p></td> <td><p><img src="Food2/SF_Food_03.jpg"></p> <p class="ArtNumbers">3</p></td> <td><p><img … | |
i bought norton ghost (latest) version, found that after much waiting (over 2 days!), it kinda stopped (some error problem) and now I find the bloody back-up took near 90 gb of my external what is going on?? i thought these image backup supposing takes less hard disk space?! can … | |
Hi, I first convert the image on the server application in bytes: [code] //server public void sendImage(File file) throws IOException { ByteArrayOutputStream baos=new ByteArrayOutputStream(1000); BufferedImage img=ImageIO.read(new File(file.getAbsolutePath())); ImageIO.write(img, "jpg", baos); baos.flush(); os.write(baos.toByteArray());// this is a "new DataOutputStream(clientSocket.getOutputStream());" System.out.println("Done! Length is:"+baos.toByteArray().length); baos.close(); } [/code] Then my application freezes when trying to … | |
Hi please can anybody tell me if it is possible to write a code in php that will change the image being display on my website every second. In others I want three different images to display at my homepage but at intervals. Thanks | |
Hi, I want to show the image as well as printing the id, name, time etc with it. How can I do it? First code prints all the data as it is without showing image. Second code shows image without other info. Thanks This code returns binary code of image. … | |
hi guys, I am a fresher vb.net programmer. I have a requirement of storing employee's image in databse and retrive them in a form. I could insert image into the database but when I am retriving it , it does not get working. So if anybody knows the code for … | |
Hi, I would like to capture the image using WebCam and store it in database. I am using ASP.NET 3.5, C#, Visual Studio 2008, SQL Server 2008, Windows Vista Business (O.S), IIS 7.0 and IE 7.0. I want to integrate WebCam functionality in my Web Application. My requirement is, the … | |
I wonder, what is picture/ image especially JPEG n GIF format ?? Is it lines of bit, byte, or binary ?? thanks... | |
hi frenz! can anyone plz help me out?! how to implement image manipulation tools of photoshop in java?! how i must start plz help!!?? | |
Please someone help me... why image panel not showing that image in the frame: [code] //image panel class import java.awt.*; import java.awt.image.BufferedImage; import javax.swing.*; public class ImagePanel extends JPanel { private BufferedImage img; public ImagePanel(BufferedImage img) { this.img = img; Dimension size = new Dimension(500,500); setPreferredSize(size); setMinimumSize(size); setMaximumSize(size); setSize(size); setLayout(null); … | |
Hi All, I am storing my automation results to sql server and the displaying the results in asp page. one of result coulmn is for error images(is test case fails it capture the image , for refrence of what went wron during playback) stored in local machine or QA server. … | |
please can someone send me demo or tutorial of how to upload images and save it in ms access database without downloading driver thanx | |
Hi to All. 1. I want a php script that can restrict a user from adding additional image to his account on my site, I the admin should be able to set the restricting for the user. I also want to be able to activate/deactivate this function in the admin … | |
Hi. I am implementing the Kuwahara Filter in c#. The code for this is given below. [CODE] unsafe { Bitmap bmps = (Bitmap)pictureBox1.Image; Bitmap bmpd = (Bitmap)pictureBox1.Image.Clone(); BitmapData bms = bmps.LockBits(new Rectangle(0, 0, bmps.Width, bmps.Height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb); BitmapData bmd = bmpd.LockBits(new Rectangle(0, 0, bmpd.Width, bmpd.Height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb); byte* b1 = … | |
I am implementing an image processing related code in C#. It works almost fine, but I find a problem that I am anable to solve. When I run the project, I get the output perfectly. But when I minimize the screen and expand it, the originial image appears distorted. I … | |
hello ! i am shail & i need ur favor.. i am developing a website in Asp.NET & want to implement genie effect of mac(Apple) on the pop up message box...in windows... please help.... | |
Hi, Which one is loaded faster? Shall I store an image in my hosting an display it or outsource it from different website and display it in my website? <img src="in my image folder/image.jpg" /> OR <img src="http://www.otherwebside/image.jpg" /> Thanks | |
Hello all, I have a new problem with my Paint app, I have a TYPE_INT_RGB buffered image, and I'm drawing a "preview" of it, but I want to be able to see through the "preview." Is there a way to make it appear transparent without modifying the actual image? | |
hey, I'm working on a project, where I need to save data along with the image in Sql server, using Vb 2005. i just need the code for the above one. please post asap need it urgently. | |
![]() | Hey All, I am working on a Java project for school. To make my project better, I wanted to integrate Python into it... like what I wanted to do is: [LIST] [*]You run the Python program [*]You get two options: [*] a) View source code [*] b) View output [*](Output … |
hello everyone.. i would to ask about my simple code here.. it's not working.. i actually want to display a forum badge which is data are received from the database. And i stucked at putting the avatar to a portion of the badge..i mean it looks like facebook profile badge... … | |
<asp:Image ID="imgpdet" runat="server" Height = 350" Width="350"/> I want to assign the height and width of the image which is the same of the original image from database . Actual problem is i have an horizontal and vertical photos , if i give height matching the horizontal photo the vertical … | |
hai frnds, Now i am doing by academic pjt on Face Recognition using Neural Network. But it will require to identify the face region in a simple background. Face region should contain fore head,eyes,nose. Any one pls help me Thanks in advance | |
hi all. i want to crop png image. when i am croping the png image i got "Fatal error: imagepng() [<a href='function.imagepng'>function.imagepng</a>]: gd-png: fatal libpng error: zlib error in C:\wamp\www\taslan\admin\products.php on line 120" error message. at line no 120 shows imagepng($bgim_new,$bgth_file_name,100); this function | |
Hi friends, I need to do this: Scroll down the scroll bar grey out all my page and show a loading gif load, thru ajax, content from the db server turn off grey and loading gif update current page content. how can i do this without using jQuery? Many thanks … | |
Hey, guys! Newbie here. =) I'm trying to return an image that contains n^2 full size copies of my original image tiled, that makes an n-by-n square. I've been working on this for the past couple days and I am stuck. It's giving me an "image index out of range" … | |
So I have this html code: [CODE] <div id="blog" class="grid_16_1"> <div class="blog_wrapper"> <span class="left_align"><h3>From the Blog</h3></span> <span class="right_align meta">Posted November 1st, 2009</span> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco … | |
Hi I was wondering if you could help me with a question on image processing. I am using c++to process the image.I have a raw file, and I have read it by creating an fstream, and have saved the length of the file in variable end. [CODE] #include <iostream> #include … | |
i like to do the project in image processing any body plz provide me ideas and suggestions regarding the topic.., | |
I need help with a java script that increases image size and decreases on mouseover and mouseout for multiple images per page. In an html page. This script that I have tried to modify is for one image. Can anyone help me with this, please. Jerry Here is the html … | |
Is there a way to detect missing images and redirect them to a static image? Basically if I had an image that I was displaying from a different site (with permission), and that image were removed, is there a way I can default that image to a default .gif? I … ![]() | |
I am fairly new to image uploaders (worked in animation for a long time). I have an image upload form that works fine. The image uploads and redirects to another PHP page (imageupload_file.php) that confirms the image uploaded and gives you the name of the image and size on the … | |
hi, Please could you help me with displaying the png image file I am saving. I want it to display just after it is saved so within the same function onPLOT [CODE]import wx import cx_Oracle import datetime import wx.grid import csv import numpy as np import matplotlib.pyplot as plt import … | |
Hi All, I have to convert Excel data to MSAcess .MDB file using VB.NET. VB.NET Code read the Excel fi;le and write ti to .MDB file. For the same I have below code, but I am stuck at the writing it to .MDB file which I have already created with … | |
hi there, im sorry if this has been posted before i have searched through the threads and have not found what i am looking for, however it is entirely possible that i have missed it, i have spent the whole day looking at search results and basically i need some … ![]() | |
Hi I'm trying to put this 800x60 banner image on my page, I succeeded to center it, but I don't want it to stay from above the menu on the left. So, lets say that this menu is 100px wide, then I want a minimum distance of 100px between browser … | |
The [url=http://www.blackberrydeveloperconference.com/overview]BlackBerry Developer Conference[/url] concluded yesterday, but not before Research in Motion had the chance to unveil enhancements to its [url=http://na.blackberry.com/eng/developers/]BlackBerry Application Platform[/url], which now supports [url=http://en.wikipedia.org/wiki/OpenGL_ES]OpenGL ES[/url], a subset of the desktop graphics API specification for embedded systems. Useful for development of 3D games development and other graphics, it's … | |
Hello, I was wondering if it would be possible to swap an image for another image at a certain time. This would occur when the user's system time hits say 6:00pm then it would switch to a different image. It would have to stay at this same image until say … | |
Hello, I have this php code : [CODE] //echo $i."<br>end-".$end."-start-".$start; echo "<table bgcolor=#666666 bordercolor=#C0C0C0 border=0 width=700 cellspacing=0 cellpadding=10><tr><td background=\"images/topbar.gif\" height=\"45\"></td></tr><tr><td>"; echo "<b>$listDatetxt: </b>"; $lines[$i]->showDate(); echo "<br><b>$listnametxt: </b>"; $lines[$i]->showFrom(); echo "</a><br><br><b>$listMessagetxt: </b>"; $lines[$i]->showMessage(); echo "</td></tr> <tr><td background=\"images/footbar.gif\" height=\"30\"></td></tr></table><br>"; } echo "<center>"; [/CODE] This is the problem : In Firefox the table … | |
Hi, I am trying to code a game program in js that will allow the user to click on a "Roll Dice" button that calls a js function to randomly display various images of dice. My problem is that I cant find a way to display the images where I … | |
Hello there, I am curious as to whether there's any 'easy' way of creating 3D models (e.g. animals, Humans etc) via a Java applet? I know in a full-blown application one could use Java 3D (with the Java 3D libraries being installed with the application), but is there an 'easy' … | |
[url]http://www.youtube.com/v/VuoljANz4EA[/url] Quite an interesting vid! Its amazing what our Brains do daily :) | |
Image is obstructing the menu items help is appreciated. | |
How to reduce the image weight using asp.net, without lose of image quality and image pixels. For example i have an image with the size of 4 MB (3024*2045), so how to reduce the image weight ie 4 MB to 1 MB without lose quality in the same pixels ie(3024 … | |
i am a new user of visual studio 2008 i make a database program, but i cant save the image in access data base, i also want that image save a copy file in database. any one help me. | |
[B]hello everybody, im venkat doing my b.e 3rd year... Im currently working on my project of college administration system using vb6. I need help on how to save an image in the access database...i have got the code on how to browse an image. but i'm not able to find … | |
Correction: The subject line was supposed to have said BAR CHARTS, not bar codes. Rather than reinventing the wheel, I'd like to know if something already exists that will get going me in the right direction. I have a program that, among other things, ftp's files to multiple computers in … | |
Hi guys, I have created a site where users can upload videos(mp4) and images(jpg & gif). The upload script sends the uploaded file to a folder on a remote server, and the filepath is stored in MYSQL. Can any one tell how i go about playing the stored videos or … | |
hai friend's , i am developing one website , in that i placed an image , my question is how to enlarge that image like pop up ?? | |
I have to display image on jsp page with some text output. This image is already saved at a location parallel to web-inf and is generated dynamically using a servlet. I have used img tag html to display the image. Other outputs are taking their values from database. First problem … |
The End.