Programmer's Heaven - For C C++ Pascal Delphi Visual Basic Assembler C# .Net java JSP ASP ASP.NET Javascript developers!

Members
Username:

Password:

Auto-login

Register
Why register?
Forgot Password?
Blogs new Blog section
Jobs
Webtools
Message Boards
FAQ
CodePedia
Free Magazines
User search
What's New
Top lists
RSS Feeds RSS Feed

Submit content
Contact Us
Link To Us
Help



Advanced Search
Newsletter
E-mail:


More information
Current area: HOME -> ASP / ASP.NET -> Image handling Articles Adds this page to your personal favorites
  Image handling
ASP.NET and GDI+
Working with GDI can be tricky on the web, this tutorial is a basic introduction for people who needs to draw images on the fly. Here we cover drawing text and lines.
Visits: 1248 Updated: 2004-1-28  Rating: 
Charting in .Net using SVG
When graphic needs exceed the capabilities of third-party components, the programmer needs tools for generating customized charts. This article focuses on generating customized charts using the powerful combination of .Net and SVG.
Visits: 1682 Updated: 2002-11-20  Rating: (Not Rated)  More info & Ratings
Advertisment
Create Charts Using MSChartActive X Controls in ASP.NET
Displaying graphical charts in Web pages is not an easy task compared to rendering the raw data in an html table, but the effort of creating beautiful charts is worth it as a professional looking chart can make users happy and more important, impress management. With ASP.NET, we can create charts using classes in the System.Drawing namespace. Those classes could be used to create and edit images in a variety of formats, we can quite easily create an ASP.NET Web page that, when requested, generates a chart based on database information and send the image to the requesting client's browser. Since this method sounds so decent, why still consider using Active X control?
Visits: 540 Updated: 2003-12-17  Rating: (Not Rated)  More info & Ratings
Create Snazzy Web Charts and Graphics On the Fly with the .NET Framework
Knowledge workers can understand data more effectively when raw numbers are presented in a graphical format. This is especially true when displaying database information on a Web page, where a simple chart can make the difference between a dry presentation and a vivid data source. In the past, creating dynamic, data-based charts on the fly in ASP required purchasing a third-party, image-generating COM component. Now with ASP.NET, developers can access the .NET Framework's drawing classes directly with C# to create dynamic images and charts.
Visits: 443 Updated: 2003-12-15  Rating: (Not Rated)  More info & Ratings
Creating a dynamic graphic which returns a .jpg
This code allows an .aspx file to receive parameters (file name and width of picture) and return a JPEG resized to the requested width.
Visits: 1030 Updated: 2004-1-28  Rating: (Not Rated)  More info & Ratings
Creating Graphics On-the-Fly in ASP.NET
Creating graphic for use in your web page is a snap in .NET. In this example I will be using VB.NET to create a graphic file for use in a page. Since this graphic will be hosted in an Image server control you will have full access to placement, sizing and other properties.
Visits: 657 Updated: 2003-12-17  Rating: (Not Rated)  More info & Ratings
Creating Images on the Fly with ASP.NET
Before the advent of the .Net framework, creating images on the fly for a web browser was a tedious task. Now, thanks to the .Net framework, creating images on the fly is a simple task. This article will provide the reader with the fundamentals necessary to start developing dynamic images with the .Net framework.
Visits: 1441 Updated: 2002-12-7  Rating: (Not Rated)  More info & Ratings
Creating Line, Bar, and Area Charts using ASP.NET
Part 3 of a Multipart Series - In this tutorial we will learn how to create line, bar, and area PNG charts on the fly and incorporate them in our website statistics application. Specifically, we will create area charts of daily visits and page views for the last 12 months, and display them in the reports section of our application. Again, all code has been explained in detail, and is available for download.
Visits: 244 Updated: 2007-9-28  Rating: (Not Rated)  More info & Ratings
Creating Validation Images On-The-Fly with GDI+
Developers, like myself, can spend many hours with a graphics tool trying to design graphical buttons for a Web site. However, there is a technique that enables you to specify things like, font, size, colour etc and create buttons/labels on-the-fly! Were going to look at an example where creating dynamic images can prove very useful and is in use by many sites already.
Visits: 385 Updated: 2003-12-16  Rating: (Not Rated)  More info & Ratings
Developing An Image Upload Web Service
ASP.NET Web Services provide 'Web callable' functions based on industry standards like HTTP, XML and SOAP. Since Web Services heavily rely on XML, all the data that is passed to and returned from a Web Service must be plain text. However, in certain applications we do need to pass binary data. Say for example I want to pass images from my Web form to a Web Service to save in some central repository and then retrieve them back. Does this mean that Web Services cannot be used for such data transfer?
Visits: 1069 Updated: 2003-12-17  Rating: (Not Rated)  More info & Ratings
Displaying Database Stored Images using OleDb .NET Data Provider
In this weeks article I'll give you code illustrating how to display the images stored in a database using the same provider.
Visits: 605 Updated: 2003-12-17  Rating: (Not Rated)  More info & Ratings
Dynamic Image Output Component in .NET
This article discusses how to use a single line of code (via a component call) to output the contents of an image residing on the server's hard drive.
Visits: 1203 Updated: 2001-6-26  Rating: (Not Rated)  More info & Ratings
Dynamic thumbnail images from ASP.NET
This sample code is an IHttpHandler implementation that reads a JPG from the filesystem and dynamically generates a thumbnail sized version of the image and emits that to the response stream. What I like about this approach is that you don't need to create a file on the filesystem for the thumbnail as it's all done in memory.
Visits: 889 Updated: 2005-4-19  Rating: (Not Rated)  More info & Ratings
Generating graphics on the fly
Something that cannot be done in ASP without support by an external component is dynamic creation of graphics - be it a diagram, a banner or just a simple graphical counter. This fortunately has changed for ASP+ - using built-in means, graphics can be created dynamically and sent to the client with a maximum of configurability and ease.
Visits: 1437 Updated: 2000-9-26  Rating: (Not Rated)  More info & Ratings
Inserting Images into Database and Display it in GridView through Handler.ashx
This article explicate the method of inserting images and pictures directly into SQL Server database table and display it in an Asp.Net GridView control with the help of Handler.aspx.
Visits: 570 Updated: 2007-7-8  Rating: (Not Rated)  More info & Ratings
Obtaining Image Information on your own
A frequent problem in uploading image files is that the size (width, height) isn't known and that consequently you have to determine them on your own.
Visits: 1142 Updated: 2001-5-11  Rating: (Not Rated)  More info & Ratings
Optimizing Color Quantization for ASP.NET Images
Describes how to quantize (recolor) dynamically generated images for ASP.NET pages in order to overcome a limitation of GDI+ in the .NET Framework versions 1.0 and 1.1. This article presents two methods of color depth reduction on images.
Visits: 379 Updated: 2003-12-17  Rating: (Not Rated)  More info & Ratings
Retrieving Images from a Database
Learn how to retrieve binary data from a database, and stream it directly to a client via a browser.
Visits: 1334 Updated: 2003-8-14  Rating: (Not Rated)  More info & Ratings
Saving an image with "Web Safe" Colours
Color-reduction in ASP.NET showing how to save a GIF image with a set web safe palette
Visits: 349 Updated: 2004-7-6  Rating: (Not Rated)  More info & Ratings
Serving Images from .NET Assemblies
Most if not all Web sites require images for their user interface, and these are usually stored on disk. This article shows how images can be served from an assembly, which can avoid the proliferation of numerous files on disk, can simplify installation and configuration of the Web server, and can increase the security of those images.
Visits: 389 Updated: 2003-12-17  Rating: (Not Rated)  More info & Ratings
Uploading, determining size, width and height and resizing image files with ASP.NET
Comprehensive tutorial on uploading image files, determing size ( in bytes ), type ( bmp, jpg, gif ), width and height ( in pixels ) of these images, imposing restrictions to allow images of only certain size, width and height to get uploaded and to resize ( create thumbnails of ) these images.
Visits: 4776 Updated: 2003-4-7  Rating: (Not Rated)  More info & Ratings


Found a broken link? Please report it to us.

  See also  
 Articles
   General ASP Articles
    Image handling
   ASP Applications Articles
    Charts & Diagrams
 

Sponsored Links 
Check For Updates
Easily add update features to your applications. A complete .Net updating solution.
Build IT Knowledge with Current & Trusted Content
Helps Employees Develop & Hone New Technical Programming Skills. Sign Up & Get Full Access.
Check Out IT Certification Preparation Materials
Sign Up With SkillSoft & Get Access to Training Materials for Over 50 Professional Certifications.
Online Crash Analysis
Automatically capture customer crash data, no debugger required. Support for .NET, C++, OS X, Java.
.Net Localization in three simple steps (WYSIWYG)
Localize .Net, C#/C/C++ & Delphi apps visually. HTML, HTML Help, XML & databases. Try Sisulizer now!
Buy a link now

Advertisement

  Free Magazine  
Free Magazines
eWeek The essential technology information source for builders of e-business....
subscribe now


Newsletter Submit Content About Advertising Awards Contact Us Link to us    
© 1996-2008 Community Networks Ltd All rights reserved. Reproduction in whole or in part, in any form or medium without express written permission is prohibited. Violators of this policy may be subject to legal action. Please read Terms Of Use and Privacy Statement for more information. Development by ASP.NET Konsult - Synchron Data.