gmsh-TingyuanDoc  0.1
An Open-Source Timing-driven Analytical Mixed-size FPGA Placer
ReadImg.h
Go to the documentation of this file.
1 // Gmsh - Copyright (C) 1997-2022 C. Geuzaine, J.-F. Remacle
2 //
3 // See the LICENSE.txt file in the Gmsh root directory for license information.
4 // Please report all issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
5 
6 #ifndef READ_IMG
7 #define READ_IMG
8 
9 #include <string>
10 
11 int read_pnm(const std::string &fileName);
12 int read_jpeg(const std::string &fileName);
13 int read_png(const std::string &fileName);
14 int read_bmp(const std::string &fileName);
15 
16 #endif
read_bmp
int read_bmp(const std::string &fileName)
read_jpeg
int read_jpeg(const std::string &fileName)
read_png
int read_png(const std::string &fileName)
read_pnm
int read_pnm(const std::string &fileName)