The Application of TeeChart Control in UHV DC Converter Switch Test System Tiancheng Wang a, Jianfeng Zheng b, Hongyuan Wang c

Size: px
Start display at page:

Download "The Application of TeeChart Control in UHV DC Converter Switch Test System Tiancheng Wang a, Jianfeng Zheng b, Hongyuan Wang c"

Transcription

1 Advanced Materials Research Online: ISSN: , Vols , pp doi: / Trans Tech Publications, Switzerland The Application of TeeChart Control in UHV DC Converter Switch Test System Tiancheng Wang a, Jianfeng Zheng b, Hongyuan Wang c School of Information Science and Engineering, Changzhou University, Changzhou, Jiangsu, , China a wtc@cczu.edu.cn, b zjf@cczu.edu.cn, c hywang@cczu.edu.cn Keywords: TeeChart control; Waveform analysis; Multi-channel; Delphi Abstract. With the development of component technology, there are many powerful third party components. TeeChart control as one of them was widely used for waveform display and processing. Combining the software development of multi-channel waveform analysis, this paper introduces the characteristics and attributes method of TeeChart control. With using the control, it can realize graphical display of keeping historical data, contrast analyze of the multiple wave etc. And the waveform can be saved as picture or PDF format. Be given the correlation realization code in the Delphi 7.0 development environment. Introduction In UHV (ultra-high voltage) DC converter switch test system, it need display waveform of multiple voltage and current signals as well as analysis and process of these wave data. In programming, if you use your own design for the graphical user interface and write code of conventional methods to achieve time-consuming. Also the effect is not so good. Selecting an appropriate third-party component, this can significantly reduce the workload of programming and improve the work efficiency. Component technology is one of the pillars of the object-oriented programming technology. The third-party component is indispensable technical resources of all object-oriented programming platforms. TeeChart Pro component is unique in the family of a large number of third-party components. Excellent of its functionality is impressive. Combining with the software development of data analysis for the UHV dc switch test system, this paper introduces the TeeChart Pro in Delphi 7.0 development environment of applications. Profile of TeeChart control TeeChart Pro is the chart graphics components that developed by Steama Software company. TeeChart Pro VCL/CLX support Windows and Linux system platform as well we offer hundreds of 2D and 3D graphics style, more than 40 kinds of mathematical and statistical functions plus of unlimited shaft and various palettes components can be chosen and more than 20 kinds of tools for chart operation, which will get incisively and vividly in diagram production and operation function. It provide an efficient, intuitive and time-saving programming interface for programming and for end-user with follow one s inclinations play space. TeeChart Pro components as chart production field leader have the following features: (1) Chart. It is including TChart, TDBChart and TQRChart components and 22 components of TChart page. Total is 25. (2) Series. It is including standard, expansion, finance, statistics, three peacekeeping and six other types. Total is 49 types. That is covering twelve of standard, nine of expandable, eight of 3 d model, seven of statistics type, three of finance types and 10 of other type. (3) Function. It is including eleven of standard, 14 of standard function of finance and economics function and 12 of expansion of the statistics function. Total is 37. (4) ChartTools. It is including 14 of series operation class, 5 of coordinate transformation (Axes) operating and 8 of other tools. Total is 27. All rights reserved. No part of contents of this paper may be reproduced or transmitted in any form or by any means without the written permission of Trans Tech Publications, (ID: , Pennsylvania State University, University Park, USA-12/05/16,15:49:12)

2 Advanced Materials Research Vols (5) Chart Export Format. It is including internal tee, PNG, GIF, BMP, WMF, EMF, JPEG, PCX, PDF, EPS, VML, SVG, GDI. Total is 13 formats. (6) Data Export Format. It is including internal tee (binary or text), text (CSV), XML, Excel, HTML. Total is 5 kinds. (7) Other. It is including spin, amplification, rolling, printing, coloration and other auxiliary functions. Realization of Multi-channel waveform analysis software It has accurate and intuitive features to display data waveform and data analysis, which can guide engineering technical personnel to do qualitative and quantitative analysis. It is significant in the industrial control field. Waveform analysis software will read original data from EXCEL file to do pretreatment. Then these treated data will be sent to TeeChart component and display multi-channel waveform by TeeChart. The entire process flow is shown in Fig. 1: Read original data from EXCEL file Data pretreatment Custom axes Export& Print TeeChart component Scale setting Zoom Display multi-channel waveform Fig.1 Process flow of waveform analysis software TeeChart component is the core of the whole waveform analysis software. Most of the software function can be completed by TeeChart component. Developers only need to set up and a little program to the preparation of complex waveforms can be generated, which greatly reducing software development cycle and improve the reliability of the system compared with conventional methods. In software, waveforms can be guided into a picture format, also can print the waveform and to do stepless zoom of the waveform, you can also set up more than one scale to complete waveform measurement. Running interface of analysis software shown in Fig. 2. Fig.2 Running interface of analysis software Figure 2, article tools can realize the above all of the functions. The right of the waveform selection can select an arbitrary waveform with comparative analysis. The below form can be shown maximum value of different waveform. If the Y-axis direction of the scale, you can also display the value of the position of the different waveform scale. Scale location of the X-axis values are displayed in a rectangular box of axis.

3 1666 Frontiers of Manufacturing Science and Measuring Technology II Custom axis Drag TeeChart control drag icon to window, double click to open TeeChart control attributes Settings window. In the tree menu of chart of the left of window, select the nodes of the Chart under Axis child nodes. The right of window will show all current axis. There have two buttons + and - under these axis. Via the two buttons, you can add and delete custom axis manually. It is shown in Fig. 3. Fig. 3 Attributes Setting Window When finished adding custom axes, Axis node under the left side of the window there will be newly added axis, select the axis, the right of the window can be setting the position of this axis, value of maximum and minimum, grid, title and the initial value of the various properties. Also you can set these attributes through the code to dynamically in the program based on actual needs. Dynamically set custom some of the attributes of axes of the sample code is as followed: Chart1. CustomAxes [0]. SetMinMax (Custom0_Min, Custom0_Max); / / set axis values Chart1. CustomAxes [0]. StartPosition: = Custom0_Start; / / set the starting position of the axis Chart1. CustomAxes [0]. EndPosition: = Custom0_End; / / set the end position of the axis Realization of waveform sequence and scale Open TeeChart control Settings window, choose Series node, in the right of the window can add or remove waveform sequence. According to the requirements of the system, we have added six waveform sequences. Adding sequence is completed, each of one sequence can be set the initial parameters. Sequence attribute and axis setting mode is similar, after selected each sequence on in the window on the right will appear related properties, these properties can be set directly in the window Settings, also can be modified dynamically in program through the code. Note that, because we should be in a coordinate system show multiple separate waveform, thus to each sequence be set up different axis. After the waveform sequence settings finished, you can write the shown data in system. In the program, firstly read input data from the EXCEL file, and then read needed parameter of data processing from a configuration file for pretreatment. Lastly these data will be displayed in sequence that transferred in sequence by cycle way. The relative part of code is as follows: Read its configuration file code: IniFile1:= TIniFile.create(ExtractFilePath(ParamStr(0)) + 'Setting.ini'); IO_K := IniFile1.ReadFloat('Default', 'IO_K', ); Waveform sequence shows part of the code: for i := 4 to F1Book61_tmp.MaxRow do begin ftmp := StrToFloatDef(TextRC[i,2], ); if ftmp > then Series1.AddXY(NumberRC[i,1], (IO_K* ftmp +IO_B)); end;

4 Advanced Materials Research Vols In order to analysis the different parts of the waveform, adding the scale of the X axis needed. First of all in TeeChart Settings window defined the scale as well as shows the scale location of the rectangular box, and then writing code in program to realize the dynamic of the scale and concealed shows. Note that, because the scale need run through all of the waveform sequence, so the scale is using Color Line type rod, not Cursor type. Relative part code of these programs is as follows: ChartTool8.Active := not ChartTool8.Active; ChartTool8.Value := Chart1.BottomAxis.Minimum + (Chart1.BottomAxis.Maximum Chart1.BottomAxis.Minimum) * 0.5; if (ChartTool8.Active) and (ChartTool9.Active) then str1:=format('x1=%.2f'#$d#$a'x2=%.2f'#$d#$a' X=%.2f', [ChartTool8.Value,ChartTool9.Value,(ChartTool9.Value - ChartTool8.Value)]) ; else if (ChartTool8.Active) then str1:= Format ('X1=%.2f', [ChartTool8.Value]) else if (ChartTool9.Active) then str1:= Format ('X2=%.2f', [ChartTool9.Value]) else str1:= ''; ChartTool1.Active:= ChartTool8.Active or ChartTool9.Active; ChartTool1.Text:= str1; Export and print waveform In the application, it need save the waveform as picture format. This need add this function in the waveform analysis software. TeeChart Pro component has this function, just need invoke the related events can be achieved. The program code of waveform will be converted to image format for saving is as followed: with mybmp do begin Width := Chart1.Width; Height:= Chart1.Height; Chart1.BufferedDisplay:=False; Chart1.Draw(Canvas,Rect(0,0,Chart1.Width,Chart1.Height)); sfilename := ChangeFileExt(SaveDialog.FileName, '.bmp); SaveToFile(sFileName);//Save path end; To realize the printing function of the waveform, firstly be drag TChart Previewer control to window, and then click chosen this control, in the Object inspector properties window it should associate this control and corresponding TChart control instance. Call relative events in the program then waveform print window pop-up. In this window, it can realize waveform print preview and print. Conclusion Combined with UHV DC converter switching waveform analysis of test system software development, this paper introduces the TeeChart application in Delphi7.0 development environment. Developers use TeeChart Pro component to realize different types of components chart drawing. It has some following characteristics of development code simple, shot cycle, high efficiency and reliability and getting satisfied results. References [1] J.H.Qu, TeeChart Application- Chart tools, Beijing, 2007 [2] S.B.Cai, J.F.Li, X.D.Mei, Application for TeeChart to complete the data analysis, Industrial control computer, 2006(09)

5 Frontiers of Manufacturing Science and Measuring Technology II / The Application of TeeChart Control in UHV DC Converter Switch Test System /

Chapter 14 Inserting Bitmapped Images

Chapter 14 Inserting Bitmapped Images Chapter 14 Inserting Bitmapped Images Introduction This chapter explains how to insert and size bitmapped images in R&R reports. This information is presented in the following sections: Importing an Image

More information

in the list below are available in the Pro version of Scan2CAD

in the list below are available in the Pro version of Scan2CAD Scan2CAD features Features marked only. in the list below are available in the Pro version of Scan2CAD Scan Scan from inside Scan2CAD using TWAIN (Acquire). Use any TWAIN-compliant scanner of any size.

More information

Design and research of hardware-in-the loop platform of infrared seeker based on Lab-VIEW

Design and research of hardware-in-the loop platform of infrared seeker based on Lab-VIEW Advanced Materials Research Online: 2014-05-23 ISSN: 1662-8985, Vols. 926-930, pp 3497-3500 doi:10.4028/www.scientific.net/amr.926-930.3497 2014 Trans Tech Publications, Switzerland Design and research

More information

Research on emotional interaction design of mobile terminal application. Xiaomeng Mao

Research on emotional interaction design of mobile terminal application. Xiaomeng Mao Advanced Materials Research Submitted: 2014-05-25 ISSN: 1662-8985, Vols. 989-994, pp 5528-5531 Accepted: 2014-05-30 doi:10.4028/www.scientific.net/amr.989-994.5528 Online: 2014-07-16 2014 Trans Tech Publications,

More information

BIM - ARCHITECTUAL IMPORTING A SCANNED PLAN

BIM - ARCHITECTUAL IMPORTING A SCANNED PLAN BIM - ARCHITECTUAL IMPORTING A SCANNED PLAN INTRODUCTION In this section, we will demonstrate importing a plan created in another application. One of the most common starting points for a project is from

More information

The Application and Stimulation Research of PIC single chip in. waveform signal generator. Gao Yi

The Application and Stimulation Research of PIC single chip in. waveform signal generator. Gao Yi Advanced Materials Research Online: 2013-05-14 ISSN: 1662-8985, Vols. 694-697, pp 1446-1449 doi:10.4028/www.scientific.net/amr.694-697.1446 2013 Trans Tech Publications, Switzerland The Application and

More information

ThermaViz. Operating Manual. The Innovative Two-Wavelength Imaging Pyrometer

ThermaViz. Operating Manual. The Innovative Two-Wavelength Imaging Pyrometer ThermaViz The Innovative Two-Wavelength Imaging Pyrometer Operating Manual The integration of advanced optical diagnostics and intelligent materials processing for temperature measurement and process control.

More information

ADOBE PHOTOSHOP CS 3 QUICK REFERENCE

ADOBE PHOTOSHOP CS 3 QUICK REFERENCE ADOBE PHOTOSHOP CS 3 QUICK REFERENCE INTRODUCTION Adobe PhotoShop CS 3 is a powerful software environment for editing, manipulating and creating images and other graphics. This reference guide provides

More information

μscope Microscopy Software

μscope Microscopy Software μscope Microscopy Software Pixelink μscope Essentials (ES) Software is an easy-to-use robust image capture tool optimized for productivity. Pixelink μscope Standard (SE) Software had added features, making

More information

Release Highlights for BluePrint-PCB Product Version 1.8

Release Highlights for BluePrint-PCB Product Version 1.8 Release Highlights for BluePrint-PCB Product Version 1.8 Introduction BluePrint Version 1.8 Build 341 is a rolling release update. BluePrint rolling releases allow us to be extremely responsive to customer

More information

Working With Drawing Views-I

Working With Drawing Views-I Chapter 12 Working With Drawing Views-I Learning Objectives After completing this chapter you will be able to: Generate standard three views. Generate Named Views. Generate Relative Views. Generate Predefined

More information

ExtrAXION. Extracting Drawing data. Benefits.

ExtrAXION. Extracting Drawing data. Benefits. ExtrAXION Extracting Drawing data ExtrAXION is the simplest and most complete quantity takeoff software tool for construction plans. It has the ability to measure on vector files CAD (dwg, dxf, dgn, emf,

More information

Creo Revolve Tutorial

Creo Revolve Tutorial Creo Revolve Tutorial Setup 1. Open Creo Parametric Note: Refer back to the Creo Extrude Tutorial for references and screen shots of the Creo layout 2. Set Working Directory a. From the Model Tree navigate

More information

Getting Started. Before You Begin, make sure you customized the following settings:

Getting Started. Before You Begin, make sure you customized the following settings: Getting Started Getting Started Before getting into the detailed instructions for using Generative Drafting, the following tutorial aims at giving you a feel of what you can do with the product. It provides

More information

Digital Imaging - Photoshop

Digital Imaging - Photoshop Digital Imaging - Photoshop A digital image is a computer representation of a photograph. It is composed of a grid of tiny squares called pixels (picture elements). Each pixel has a position on the grid

More information

Alibre Design Exercise Manual Introduction to Sheet Metal Design

Alibre Design Exercise Manual Introduction to Sheet Metal Design Alibre Design Exercise Manual Introduction to Sheet Metal Design Copyrights Information in this document is subject to change without notice. The software described in this documents is furnished under

More information

The Engineering Drawing Network Potting Management System Based. on Intelligent Print Queue Management. Li Tian 1, a

The Engineering Drawing Network Potting Management System Based. on Intelligent Print Queue Management. Li Tian 1, a Applied Mechanics and Materials Submitted: 2014-08-10 ISSN: 1662-7482, Vol. 678, pp 689-692 Accepted: 2014-08-17 doi:10.4028/www.scientific.net/amm.678.689 Online: 2014-10-08 2014 Trans Tech Publications,

More information

Image Measurement of Roller Chain Board Based on CCD Qingmin Liu 1,a, Zhikui Liu 1,b, Qionghong Lei 2,c and Kui Zhang 1,d

Image Measurement of Roller Chain Board Based on CCD Qingmin Liu 1,a, Zhikui Liu 1,b, Qionghong Lei 2,c and Kui Zhang 1,d Applied Mechanics and Materials Online: 2010-11-11 ISSN: 1662-7482, Vols. 37-38, pp 513-516 doi:10.4028/www.scientific.net/amm.37-38.513 2010 Trans Tech Publications, Switzerland Image Measurement of Roller

More information

Plot cylinder pressure against crank angle

Plot cylinder pressure against crank angle Plot cylinder pressure against crank angle You can create a new diagram three ways: Select Diagram, New Diagram Press F5 Click the New Diagram icon on the toolbar This will open the Select Channels dialogue.

More information

A synergy analysis on industry structure and the science & technology progress in Shanxi province

A synergy analysis on industry structure and the science & technology progress in Shanxi province Advanced Materials Research Online: 011-10-4 ISSN: 166-8985, Vols. 368-373, pp 1810-1814 doi:10.408/www.scientific.net/amr.368-373.1810 01 Trans Tech Publications, Switzerland A synergy analysis on industry

More information

The Research on the System of Double-Holding Water Tank Liquid Level Control with the PID Control

The Research on the System of Double-Holding Water Tank Liquid Level Control with the PID Control Advanced Materials Research Online: 2014-06-06 ISSN: 1662-8985, Vols. 945-949, pp 2559-2562 doi:10.4028/www.scientific.net/amr.945-949.2559 2014 Trans Tech Publications, Switzerland The Research on the

More information

1. What is SENSE Batch

1. What is SENSE Batch 1. What is SENSE Batch 1.1. Introduction SENSE Batch is processing software for thermal images and sequences. It is a modern software which automates repetitive tasks with thermal images. The most important

More information

User Guide. Version 1.4. Copyright Favor Software. Revised:

User Guide. Version 1.4. Copyright Favor Software. Revised: User Guide Version 1.4 Copyright 2009-2012 Favor Software Revised: 2012.02.06 Table of Contents Introduction... 4 Installation on Windows... 5 Installation on Macintosh... 6 Registering Intwined Pattern

More information

Design and Implementation of Digital Frequency Meter Based on SCM. Weiqiang Zheng

Design and Implementation of Digital Frequency Meter Based on SCM. Weiqiang Zheng Applied Mechanics and Materials Submitted: 2014-09-28 ISS: 1662-7482, Vols. 687-691, pp 3466-3469 Accepted: 2014-09-28 doi:10.4028/www.scientific.net/amm.687-691.3466 Online: 2014-11-27 2014 Trans Tech

More information

Photoshop CS6. Table of Contents. Image Formats! 3. GIF (Graphics Interchange Format)! 3. JPEG or JPG (Joint Photographic Experts Group)!

Photoshop CS6. Table of Contents. Image Formats! 3. GIF (Graphics Interchange Format)! 3. JPEG or JPG (Joint Photographic Experts Group)! Photoshop CS6 Table of Contents Image Formats! 3 GIF (Graphics Interchange Format)! 3 JPEG or JPG (Joint Photographic Experts Group)! 3 PNG (Portable Network Graphics)! 3 Pixels! 3 Resolution! 3 Creating

More information

Perspective Guides. Perspective Contextual Toolbar. 1-Point Perspective

Perspective Guides. Perspective Contextual Toolbar. 1-Point Perspective WHAT S NEW 1. Perspective Guides 2. Flipbook Animation 3. Gradient Flood Fills 4. Layer Workflow Enhancements - Layer Grouping - Extended Blending Modes - Background Color - Multi-Layer Select 5. Distort

More information

Generative Drafting Overview What's New Getting Started User Tasks

Generative Drafting Overview What's New Getting Started User Tasks Generative Drafting Overview Conventions What's New Getting Started Defining the Drawing Sheet Part Drawing Opening a Part Creating a Front View Creating a Projection View Creating a Section View Creating

More information

AreaSketch Pro Overview for ClickForms Users

AreaSketch Pro Overview for ClickForms Users AreaSketch Pro Overview for ClickForms Users Designed for Real Property Specialist Designed specifically for field professionals required to draw an accurate sketch and calculate the area and perimeter

More information

Managing images with NewZapp

Managing images with NewZapp Managing images with NewZapp This guide is for anyone using the NewZapp Fixed editor as opposed to the Drag and Drop editor. The Image Manager is where images are uploaded and stored in your NewZapp account

More information

Input of Precise Geometric Data

Input of Precise Geometric Data Chapter Seven Input of Precise Geometric Data INTRODUCTION PLAY VIDEO A very useful feature of MicroStation V8i for precise technical drawing is key-in of coordinate data. Whenever MicroStation V8i calls

More information

Adobe Illustrator CS6

Adobe Illustrator CS6 Adobe Illustrator CS6 Table of Contents Image Formats 3 ai (Adobe Illustrator) 3 eps (Encapsulated PostScript) 3 PDF (Portable Document Format) 3 JPEG or JPG (Joint Photographic Experts Group) 3 Vectors

More information

The Snipping Tool is automatically installed in Windows 7 and Windows 8.

The Snipping Tool is automatically installed in Windows 7 and Windows 8. Introduction The Snipping Tool is a program that is part of Windows Vista, Windows 7, and Window 8. Snipping Tool allows you to take selections of your windows or desktop and save them as snips, or screen

More information

User Guide. Version 1.2. Copyright Favor Software. Revised:

User Guide. Version 1.2. Copyright Favor Software. Revised: User Guide Version 1.2 Copyright 2009-2010 Favor Software Revised: 2010.05.18 Table of Contents Introduction...4 Installation on Windows...5 Installation on Macintosh...6 Registering Intwined Pattern Studio...7

More information

Fuzzy Image Editor. User Manual

Fuzzy Image Editor. User Manual Fuzzy Image Editor User Manual I. Installation To install the program, run Fuzzy Image Editor.msi and follow the prompts. Then go to your Program Files/Team6/FuzzyImageEditor folder, right click and run

More information

DIGITAL-MICROSCOPY CAMERA SOLUTIONS USB 3.0

DIGITAL-MICROSCOPY CAMERA SOLUTIONS USB 3.0 DIGITAL-MICROSCOPY CAMERA SOLUTIONS USB 3.0 PixeLINK for Microscopy Applications PixeLINK will work with you to choose and integrate the optimal USB 3.0 camera for your microscopy project. Ideal for use

More information

1. Setup Output mode. 2. Using a Fixed tile size

1. Setup Output mode. 2. Using a Fixed tile size Tutorial Tiling Software version: Asanti 1.0 Document version: February 17, 2014 This tutorial demonstrates how to use tiling with Asanti. Tiling can only be executed on a system where Acrobat Pro X or

More information

Instructions for easyscan Atomic Force Microscope

Instructions for easyscan Atomic Force Microscope UVA's Hands-on Introduction to Nanoscience Instructions for easyscan Atomic Force Microscope (revision 8 November 2012) NOTE: Instructions assume software is pre-configured per "UVA Instructor Guide for

More information

A comprehensive test system for precision transmission performance of CORT reducer

A comprehensive test system for precision transmission performance of CORT reducer Applied Mechanics and Materials Online: 2013-07-15 ISSN: 1662-7482, Vols. 333-335, pp 2448-2451 doi:10.4028/www.scientific.net/amm.333-335.2448 2013 Trans Tech Publications, Switzerland A comprehensive

More information

Lesson 4 Holes and Rounds

Lesson 4 Holes and Rounds Lesson 4 Holes and Rounds 111 Figure 4.1 Breaker OBJECTIVES Sketch arcs in sections Create a straight hole through a part Complete a Sketched hole Understand the Hole Tool Use Info to extract information

More information

First English edition for Ulead COOL 360 version 1.0, February 1999.

First English edition for Ulead COOL 360 version 1.0, February 1999. First English edition for Ulead COOL 360 version 1.0, February 1999. 1992-1999 Ulead Systems, Inc. All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any

More information

MOTION GRAPHICS BITE 3623

MOTION GRAPHICS BITE 3623 MOTION GRAPHICS BITE 3623 DR. SITI NURUL MAHFUZAH MOHAMAD FTMK, UTEM Lecture 1: Introduction to Graphics Learn critical graphics concepts. 1 Bitmap (Raster) vs. Vector Graphics 2 Software Bitmap Images

More information

Design of Gun Comprehensive Performance Test System Based on LabWindows/CVI and Dynamic Recoil

Design of Gun Comprehensive Performance Test System Based on LabWindows/CVI and Dynamic Recoil Applied Mechanics and Materials Online: 2013-09-03 ISSN: 1662-7482, Vols. 401-403, pp 1239-1242 doi:10.4028/www.scientific.net/amm.401-403.1239 2013 Trans Tech Publications, Switzerland Design of Gun Comprehensive

More information

IDEA Corbel 8. User guide. IDEA Corbel User Guide

IDEA Corbel 8. User guide. IDEA Corbel User Guide IDEA Corbel User Guide IDEA Corbel 8 User guide IDEA Corbel User Guide Content 1.1 Program requirements... 3 1.2 Installation guidelines... 3 2 Basic Terms... 4 3 User interface... 5 3.1 Control of view

More information

HTTP transaction with Graphics HTML file + two graphics files

HTTP transaction with Graphics HTML file + two graphics files HTTP transaction with Graphics HTML file + two graphics files Graphics are grids of Pixels (Picture Elements) Each pixel is exactly one color. At normal screen resolution you can't tell they are square.

More information

Research Of Displacement Measuring System Based On Capacitive. Grating Sensor

Research Of Displacement Measuring System Based On Capacitive. Grating Sensor Applied Mechanics and Materials Vols. 20-23 (2010) pp 1260-1264 Online available since 2010/Jan/12 at www.scientific.net (2010) Trans Tech Publications, Switzerland doi:10.4028/www.scientific.net/amm.20-23.1260

More information

How to Cut Out Photos

How to Cut Out Photos How to Cut Out Photos Contents Overview page 1 Step 1 Open a Photo page 3 Step 2 Clone Parts of a Photo page 4 Step 3 Remove parts of a Photo page 9 Step 4 Cut out areas of a Photo page 11 Step 5 Save

More information

Digital Portable Overhead Document Camera LV-1010

Digital Portable Overhead Document Camera LV-1010 Digital Portable Overhead Document Camera LV-1010 Instruction Manual 1 Content I Product Introduction 1.1 Product appearance..3 1.2 Main functions and features of the product.3 1.3 Production specifications.4

More information

Version 2 Image Clarification Tool for Avid Editing Systems. Part of the dtective suite of forensic video analysis tools from Ocean Systems

Version 2 Image Clarification Tool for Avid Editing Systems. Part of the dtective suite of forensic video analysis tools from Ocean Systems By Version 2 Image Clarification Tool for Avid Editing Systems Part of the dtective suite of forensic video analysis tools from Ocean Systems User Guide www.oceansystems.com www.dtectivesystem.com Page

More information

RPG CREATOR QUICKSTART

RPG CREATOR QUICKSTART INTRODUCTION RPG CREATOR QUICKSTART So you've downloaded the program, opened it up, and are seeing the Engine for the first time. RPG Creator is not hard to use, but at first glance, there is so much to

More information

Archicad Layout of Drawings

Archicad Layout of Drawings Archicad Layout of Drawings NOTE: It is important that house features (Walls, Cabinets, Floors, etc.) Have been placed on the proper layer and layer combination for ease of transferring your final drawings

More information

*The type of stainless steel were 316L, the diameter of the fiber were 12 micron.

*The type of stainless steel were 316L, the diameter of the fiber were 12 micron. Advanced Materials Research Submitted: 2014-07-21 ISSN: 1662-8985, Vol. 1053, pp 93-96 Accepted: 2014-07-28 doi:10.4028/www.scientific.net/amr.1053.93 Online: 2014-10-20 2014 Trans Tech Publications, Switzerland

More information

apt solutions, inc. Tips Graphics - An Introduction Vector vs. Raster Graphics Vector Graphics

apt solutions, inc. Tips Graphics - An Introduction Vector vs. Raster Graphics Vector Graphics Graphics - An Introduction Author: Gordon Hanson, Electronic Publishing Analyst, Certified Adobe Trainer The ability to include graphics in a document is a basic requirement of good technical documentation.

More information

Chapter 2. Drawing Sketches for Solid Models. Learning Objectives

Chapter 2. Drawing Sketches for Solid Models. Learning Objectives Chapter 2 Drawing Sketches for Solid Models Learning Objectives After completing this chapter, you will be able to: Start a new template file to draw sketches. Set up the sketching environment. Use various

More information

Agility Course Designer Users Guide. Agility Course designer program for Windows PC

Agility Course Designer Users Guide. Agility Course designer program for Windows PC Agility Course Designer Users Guide Agility Course designer program for Windows PC 1 Introduction...3 General notes...4 Design Modes...4 Obstacle Design...4 Path Design...5 The buttons on the left hand

More information

S4B Image Converter Soft4Boost Help S4B Image Converter www.sorentioapps.com Sorentio Systems, Ltd. All rights reserved Contact Us If you have any comments, suggestions or questions regarding S4B Image

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!  We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ We offer free update service for one year Exam : 9A0-125 Title : Adobe Photoshop Lightroom 2 ACE Exam Vendors : Adobe Version : DEMO Get Latest &

More information

PAINT Pa and DRAW Dr aw

PAINT Pa and DRAW Dr aw PAINT Pa and DRAW Dr aw PAINT(BITMAP) e.g. Microsoft PAINT in Windows DRAW (VECTOR) e.g. in MS Office (Word and PowerPoint) 1 Bulb 1 Piece of Wire 1 Battery To open (with Windows open): Start Click on

More information

Digital Projection Entry Instructions

Digital Projection Entry Instructions The image must be a jpg file. Raw, Photoshop PSD, Tiff, bmp and all other file types cannot be used. There are file size limitations for competition. 1) The Height dimension can be no more than 1080 pixels.

More information

Digital Images: A Technical Introduction

Digital Images: A Technical Introduction Digital Images: A Technical Introduction Images comprise a significant portion of a multimedia application This is an introduction to what is under the technical hood that drives digital images particularly

More information

MC3 Motion Control System Shutter Stream Quickstart

MC3 Motion Control System Shutter Stream Quickstart MC3 Motion Control System Shutter Stream Quickstart Revised 7/6/2016 Carousel USA 6370 N. Irwindale Rd. Irwindale, CA 91702 www.carousel-usa.com Proprietary Information Carousel USA has proprietary rights

More information

How to Avoid Landmines: Managing your Motion Graphics Projects

How to Avoid Landmines: Managing your Motion Graphics Projects How to Avoid Landmines: Managing your Motion Graphics Projects -Richard Harrington, PMP www.rhedpixel.com 703.560.0220 Import Tips Double-Click in Project Window Shift-Click Multiple Items Organize in

More information

Archicad Layout of Drawings

Archicad Layout of Drawings Archicad Layout of Drawings NOTE: It is important that house features (Walls, Cabinets, Floors, etc.) Have been placed on the proper layer and layer combination for ease of transferring your final drawings

More information

Imaging Features Available in HTML5. it just makes sense

Imaging Features Available in HTML5. it just makes sense Imaging Features Available in HTML5 it just makes sense August, 2018 Imaging Features Available in HTML5 As part of the 5.2 SP1 release, the Images functionality is now available in HTML5 and provides

More information

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB Unit 5 Graphics and Images Slides based on course material SFU Icons their respective owners 1 Learning Objectives In this unit you will learn

More information

IMAGE SIZING AND RESOLUTION. MyGraphicsLab: Adobe Photoshop CS6 ACA Certification Preparation for Visual Communication

IMAGE SIZING AND RESOLUTION. MyGraphicsLab: Adobe Photoshop CS6 ACA Certification Preparation for Visual Communication IMAGE SIZING AND RESOLUTION MyGraphicsLab: Adobe Photoshop CS6 ACA Certification Preparation for Visual Communication Copyright 2013 MyGraphicsLab / Pearson Education OBJECTIVES This presentation covers

More information

MODAS Next Generation (NG) - Bad Version? Best Version Ever!

MODAS Next Generation (NG) - Bad Version? Best Version Ever! MODAS Next Generation (NG) - Bad Version? Best Version Ever! The new vector graphic of MODAS NG allows the user to zoom in/out unlimited. It gives new look of the optical system analysis comparable with

More information

Annex IV - Stencyl Tutorial

Annex IV - Stencyl Tutorial Annex IV - Stencyl Tutorial This short, hands-on tutorial will walk you through the steps needed to create a simple platformer using premade content, so that you can become familiar with the main parts

More information

ArbStudio Triggers. Using Both Input & Output Trigger With ArbStudio APPLICATION BRIEF LAB912

ArbStudio Triggers. Using Both Input & Output Trigger With ArbStudio APPLICATION BRIEF LAB912 ArbStudio Triggers Using Both Input & Output Trigger With ArbStudio APPLICATION BRIEF LAB912 January 26, 2012 Summary ArbStudio has provision for outputting triggers synchronous with the output waveforms

More information

Participant Guide: Blackboard Collaborate Ultra

Participant Guide: Blackboard Collaborate Ultra Participant Guide: Blackboard Collaborate Ultra Tips Use Google Chrome or Firefox for the best experience. Join the session early to allow yourself time to set up your audio and video. Interface Overview

More information

ECE4902 Lab 5 Simulation. Simulation. Export data for use in other software tools (e.g. MATLAB or excel) to compare measured data with simulation

ECE4902 Lab 5 Simulation. Simulation. Export data for use in other software tools (e.g. MATLAB or excel) to compare measured data with simulation ECE4902 Lab 5 Simulation Simulation Export data for use in other software tools (e.g. MATLAB or excel) to compare measured data with simulation Be sure to have your lab data available from Lab 5, Common

More information

B R A N D I D E N T I T Y G U I D E L I N E S

B R A N D I D E N T I T Y G U I D E L I N E S B R A N D I D E N T I T Y G U I D E L I N E S About Pointwise/Pointwise Logos 3 The Pointwise Corporate Logo 5 The Pointwise Product Logo 9 The Let s Talk Meshing Logo 13 The Pointwise Support Team Logo

More information

Photoshop Notes and Application Study Packet

Photoshop Notes and Application Study Packet Basic Parts of Photoshop Interface Photoshop Notes and Application Study Packet PANELS Photoshop Study Packet Copyright Law The World Intellectual Property Organization (WIPO) Copyright treaty restrict

More information

Version 6. User Manual OBJECT

Version 6. User Manual OBJECT Version 6 User Manual OBJECT 2006 BRUKER OPTIK GmbH, Rudolf-Plank-Str. 27, D-76275 Ettlingen, www.brukeroptics.com All rights reserved. No part of this publication may be reproduced or transmitted in any

More information

Introduction to Photoshop: Basic Editing & Prepare Images for the Web

Introduction to Photoshop: Basic Editing & Prepare Images for the Web Introduction to Photoshop: Basic Editing & Prepare Images for the Web 1 LEARNING OBJECTIVES Basic tools in Photoshop & Use of Bridge Prepare images for print and web use TOPICS COVERED Photoshop Interface

More information

A Custom-made MATLAB Based Software to Manage Leakage Current Waveforms

A Custom-made MATLAB Based Software to Manage Leakage Current Waveforms ETASR - Engineering, Technology & Applied Science Research Vol. 1, No.2, 2011, 36-42 36 A Custom-made MATLAB Based Software to Manage Leakage Current Waveforms Dionisios Pylarinos High Voltage Lab University

More information

GIMP WEB 2.0 ICONS. Web 2.0 Icons: Paperclip Completed Project

GIMP WEB 2.0 ICONS. Web 2.0 Icons: Paperclip Completed Project GIMP WEB 2.0 ICONS WEB 2.0 ICONS: PAPERCLIP OPEN GIMP or Web 2.0 Icons: Paperclip Completed Project Step 1: To begin a new GIMP project, from the Menu Bar, select File New. At the Create a New Image dialog

More information

Standard Operating Procedure

Standard Operating Procedure CENTER FOR NANOSCALE SCIENCE AND ENGINEERING Standard Operating Procedure Microscope Software Brian Wajdyk Page 1 of 6 Important Images are not to be saved to the computer. They will be deleted without

More information

Hexagons for Art and Illusion Part II Get ready Start a new project FILE New Open Faced Cube Import the hexagon block LIBRARIES

Hexagons for Art and Illusion Part II Get ready Start a new project FILE New Open Faced Cube Import the hexagon block LIBRARIES Hexagons for Art and Illusion Part II In our last lesson, we constructed the perfect hexagon using EasyDraw. We built a six pointed star, a solid faced cube, and put the cube inside the star. This lesson

More information

Infographics: Display Data for Easy Interpretation

Infographics: Display Data for Easy Interpretation Infographics: Display Data for Easy Interpretation Course objectives: Create new infographics Customise layouts Edit content using text, images, media, charts and maps Publish, Present and Print Student

More information

The Study of Globoidal Indexing Cam CNC Machine Tools

The Study of Globoidal Indexing Cam CNC Machine Tools Advanced Materials Research Online: 2013-08-30 ISSN: 1662-8985, Vols. 753-755, pp 888-891 doi:10.4028/www.scientific.net/amr.753-755.888 2013 Trans Tech Publications, Switzerland The Study of Globoidal

More information

Table of Contents. Lesson 1 Getting Started

Table of Contents. Lesson 1 Getting Started NX Lesson 1 Getting Started Pre-reqs/Technical Skills Basic computer use Expectations Read lesson material Implement steps in software while reading through lesson material Complete quiz on Blackboard

More information

PackshotCreator 3D User guide

PackshotCreator 3D User guide PackshotCreator 3D User guide 2011 PackshotCreator - Sysnext All rights reserved. Table of contents 4 4 7 8 11 15 18 19 20 20 23 23 24 25 26 27 27 28 28 34 35 36 36 36 39 42 43 44 46 47 Chapter 1 : Getting

More information

Introduction to Photoshop CS6

Introduction to Photoshop CS6 Introduction to Photoshop CS6 Copyright 2016, Faculty and Staff Training, West Chester University. A member of the Pennsylvania State System of Higher Education. No portion of this document may be reproduced

More information

USTER TESTER 5-S800 APPLICATION REPORT. Measurement of slub yarns Part 1 / Basics THE YARN INSPECTION SYSTEM. Sandra Edalat-Pour June 2007 SE 596

USTER TESTER 5-S800 APPLICATION REPORT. Measurement of slub yarns Part 1 / Basics THE YARN INSPECTION SYSTEM. Sandra Edalat-Pour June 2007 SE 596 USTER TESTER 5-S800 APPLICATION REPORT Measurement of slub yarns Part 1 / Basics THE YARN INSPECTION SYSTEM Sandra Edalat-Pour June 2007 SE 596 Copyright 2007 by Uster Technologies AG All rights reserved.

More information

Motic Live Imaging Module. Windows OS User Manual

Motic Live Imaging Module. Windows OS User Manual Motic Live Imaging Module Windows OS User Manual Motic Live Imaging Module Windows OS User Manual CONTENTS (Linked) Introduction 05 Menus, bars and tools 06 Title bar 06 Menu bar 06 Status bar 07 FPS 07

More information

1. Using Images on Web Pages 2. Image Formats 3. Bitmap Image Formats

1. Using Images on Web Pages 2. Image Formats 3. Bitmap Image Formats CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB By Hassan S. Shavarani UNIT5: GRAPHICS 1 TOPICS 1. Using Images on Web Pages 2. Image Formats 3. Bitmap Image Formats 2 THE TAG EXAMPLE

More information

Creating Family Trees in The GIMP Photo Editor

Creating Family Trees in The GIMP Photo Editor Creating Family Trees in The GIMP Photo Editor A family tree is a great way to track the generational progression of your Sims, whether you re playing a legacy challenge, doing a breeding experiment, or

More information

CC3 and Perspectives A Campaign Cartographer 3/3+ Tutorial. Part 1 - Basics

CC3 and Perspectives A Campaign Cartographer 3/3+ Tutorial. Part 1 - Basics CC3 and Perspectives A Campaign Cartographer 3/3+ Tutorial by Joachim de Ravenbel Part 1 - Basics Conventions Throughout this tutorial, I will use a color coding to clearly identify all the keywords: Sheet

More information

Bitmap Image Formats

Bitmap Image Formats LECTURE 5 Bitmap Image Formats CS 5513 Multimedia Systems Spring 2009 Imran Ihsan Principal Design Consultant OPUSVII www.opuseven.com Faculty of Engineering & Applied Sciences 1. Image Formats To store

More information

Part 2: Earpiece. Insert Protrusion (Internal Sketch) Hole Patterns Getting Started with Pro/ENGINEER Wildfire. Round extrusion.

Part 2: Earpiece. Insert Protrusion (Internal Sketch) Hole Patterns Getting Started with Pro/ENGINEER Wildfire. Round extrusion. Part 2: Earpiece 4 Round extrusion Radial pattern Chamfered edge To create this part, you'll use some of the same extrusion techniques you used in the lens part. The only difference in this part is that

More information

How to generate different file formats

How to generate different file formats How to generate different file formats Different mediums print, web, and video require different file formats. This guide describes how to generate appropriate file formats for these mediums by using Adobe

More information

How to Easily Create an Arbitrary Waveform Without Programming APPLICATION NOTE

How to Easily Create an Arbitrary Waveform Without Programming APPLICATION NOTE How to Easily Create an Arbitrary Waveform Without Programming APPLICATION NOTE Creating Arbitrary Waveforms Doesn t Have to be Difficult! Creating arbitrary waveforms on a modern function generator or

More information

CREO.1 MODELING A BELT WHEEL

CREO.1 MODELING A BELT WHEEL CREO.1 MODELING A BELT WHEEL Figure 1: A belt wheel modeled in this exercise. Learning Targets In this exercise you will learn: Using symmetry when sketching Using pattern to copy features Using RMB when

More information

Part Design Fundamentals

Part Design Fundamentals Part Design Fundamentals 1 Course Presentation Objectives of the course In this course you will learn basic methods to create and modify solids features and parts Targeted audience New CATIA V5 Users 1

More information

ScanPotter. Reference Manual

ScanPotter. Reference Manual ScanPotter Reference Manual Copyright 2014 by Microtek International, Inc. All rights reserved. Trademarks Microtek, ScanMaker, ArtixScan, ScanWizard, ScanPotter and ColoRescue are trademarks or registered

More information

Tribometrics. Version 2.11

Tribometrics. Version 2.11 Tribometrics Version 2.11 Table of Contents Tribometrics... 1 Version 2.11... 1 1. About This Document... 4 1.1. Conventions... 4 2. Introduction... 5 2.1. Software Features... 5 2.2. Tribometrics Overview...

More information

Improved Minimum Distance Discrimination Method Used in Image Analysis of Fabric Wear Resistance

Improved Minimum Distance Discrimination Method Used in Image Analysis of Fabric Wear Resistance Applied Mechanics and Materials Online: 2012-12-27 ISSN: 1662-7482, Vols. 263-266, pp 421-426 doi:10.4028/www.scientific.net/amm.263-266.421 2013 Trans Tech Publications, Switzerland Improved Minimum Distance

More information

CS 200 Assignment 3 Pixel Graphics Due Tuesday September 27th 2016, 9:00 am. Readings and Resources

CS 200 Assignment 3 Pixel Graphics Due Tuesday September 27th 2016, 9:00 am. Readings and Resources CS 200 Assignment 3 Pixel Graphics Due Tuesday September 27th 2016, 9:00 am Readings and Resources Texts: Suggested excerpts from Learning Web Design Files The required files are on Learn in the Week 3

More information

Counting Backwards From 50

Counting Backwards From 50 Mathematical Ideas It is important for children to count forward and backwards from a variety of starting points. This will help them to understand the size of the number in relation to other numbers.

More information