Giter VIP home page Giter VIP logo

gerbervs's Introduction

GerberVS

Gerber and Drill file processor with a Gerber viewer. The C# project consists of a GUI viewer app and a core library for parsing and displaying gerber RS-274X and NC drill files. The core library LibGerberVS.dll is based on the Gerbv Library.

** Acknowledgments go to Gerbv Authors and Contributors **

Features:

Supports both Gerber RS-274X and Ecellon drill files.

Support for RS-274X depreciated commands for legacy files.

Layers are viewed with transparency with user selectable color and visibility.

Related layers can be save as a project (.gpf) in xml format.

Print layers to printer with print preview.

gerbervs's People

Contributors

miltonneal54 avatar miltonneal avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar ChimHsiung avatar CatXiao avatar  avatar  avatar  avatar  avatar zxmmmm avatar  avatar MatthewTsai avatar  avatar Aleksei Prokopov avatar  avatar Kyle Nekto avatar ZHJEE avatar  avatar  avatar  avatar  avatar lollipop avatar Peter Zhou avatar  avatar  avatar  avatar  avatar Billo Diallo avatar  avatar chudi avatar bill wang avatar xfdr0805 avatar  avatar  avatar  avatar  avatar

Watchers

James Cloos avatar  avatar Peter Zhou avatar  avatar  avatar

gerbervs's Issues

About Commercial Use

Hi,
I am a new programmer from Taiwan.
I'm preparing a program for our company.
you
Can I refer to or use your code and.dll
And for commercial use?

I apologize in advance if this question offends you.

Lincese

What kind of lincese is adopted?

something may got wrong

Hi

I recently start to trace your code and I found something strange.

see blow
image

                        case 'N':
                            gerberImage.Format.SequenceNumberLimit = nextCharacter - '0';
                            break;

it should be something like this

                        case 'N':
                            gerberImage.Format.SequenceNumberLimit = lineReader.Read() - '0';
                            break;

but I don't have any gerber file that can test this, my recommend is simply based on the spec

anyway, your code is elegant, thanks for your contribution~~

Got problem when compiling

Hi there ,
I try to compile in visual studio and got some problem
in function TranslateImage()
it got System.NullReferenceException in renderinfo.DisplayWidth = pcbImagePanel.Width / displayDpiX; Line
Can I know how to fix it?

Great thanks for the hardwork

Read Integer from File not correct

if load a file with integer with or without character "+" or "-" the total number length is wrong, results in the integer number is also not correct. The Function GetIntegerValue with correction as bellow:

length++;

instead of

            if ((nextCharacter == '-' && isFirst) || (nextCharacter == '+' && isFirst))
            {                    
                // if "+" or "-" charater is not inculing in number portion, Length DO NOT +1
            }
            else
            {
                length++;
            }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.