iText实战--在现有PDF上工作
6.1 使用PdfReader读取PDF
检索文档和页面信息
D:/data/iText/inAction/chapter03/image_direct.pdf
Number of pages: 1
Size of page 1: [0.0,0.0,283.0,416.0]
Rotation of page 1: 0
Page size with rotation of page 1: Rectangle: 283.0x416.0 (rot: 0 degrees)
Is rebuilt? false
Is encrypted? false
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintWriter;import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Rectangle;
import com.itextpdf.text.pdf.PdfReader;public class PageInformation {/** The resulting text file with info about a PDF. */public static final String RESULT= "D:/data/iText/inAction/chapter06/page_info.txt";/*** Main method.* @param args no arguments needed* @throws DocumentException * @throws IOException*/public static void main(String[] args)throws DocumentException, IOException {// Inspecting PDFsPrintWriter writer = new PrintWriter(new FileOutputStream(RESULT));inspect(writer, "D:/data/iText/inAction/chapter03/image_direct.pdf");writer.close();}/*** Inspect a PDF file and write the info to a txt file* @param writer Writer to a text file* @param filename Path to the PDF file* @throws IOException*/public static void inspect(PrintWriter writer, String filename)throws IOException {PdfReader reader = new PdfReader(filename);writer.println(filename);writer.print("Number of pages: ");writer.println(reader.getNumberOfPages());Rectangle mediabox = reader.getPageSize(1);writer.print("Size of page 1: [");writer.print(mediabox.getLeft());writer.print(',');writer.print(mediabox.getBottom());writer.print(',');writer.print(mediabox.getRight());writer.print(',');writer.print(mediabox.getTop());writer.println("]");writer.print("Rotation of page 1: ");writer.println(reader.getPageRotation(1));writer.print("Page size with rotation of page 1: ");writer.println(reader.getPageSizeWithRotation(1));writer.print("Is rebuilt? ");writer.println(reader.isRebuilt());writer.print("Is encrypted? ");writer.println(reader.isEncrypted());writer.println();writer.flush();}
}
Page Size 页面大小
损坏的PDF
加密的PDF
使用PdfReader降低内存
部分读取
/*** Do a full read of a PDF file* @param writer a writer to a report file* @param filename the file to read* @throws IOException*/public static void fullRead(PrintWriter writer, String filename)throws IOException {long before = getMemoryUse();PdfReader reader = new PdfReader(filename);reader.getNumberOfPages();writer.println(String.format("Memory used by full read: %d",getMemoryUse() - before));writer.flush();}/*** Do a partial read of a PDF file* @param writer a writer to a report file* @param filename the file to read* @throws IOException*/public static void partialRead(PrintWriter writer, String filename)throws IOException {long before = getMemoryUse();PdfReader reader = new PdfReader(new RandomAccessFileOrArray(filename), null);reader.getNumberOfPages();writer.println(String.format("Memory used by partial read: %d",getMemoryUse() - before));writer.flush();}
选择页面
PdfReader.selectPages("3");
PdfReader.selectPages("4-8");
执行selectPages()后,页数就变成选中的实际页数,要注意越界。
import java.io.FileOutputStream;
import java.io.IOException;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.pdf.PdfCopy;
import com.itextpdf.text.pdf.PdfReader;
import com.itextpdf.text.pdf.PdfStamper;public class SelectPages {/** A resulting PDF file. */public static final String RESULT1 = "results/part2/chapter06/timetable_stamper.pdf";/** A resulting PDF file. */public static final String RESULT2 = "results/part2/chapter06/timetable_copy.pdf"; /*** Main method.* @param args no arguments needed* @throws DocumentException * @throws IOException*/public static void main(String[] args) throws IOException, DocumentException {PdfReader reader = new PdfReader("D:/data/iText/inAction/chapter03/movie_posters.pdf");reader.selectPages("4-8");manipulateWithStamper(reader);manipulateWithCopy(reader);}/*** Creates a new PDF based on the one in the reader* @param reader a reader with a PDF file* @throws IOException* @throws DocumentException*/private static void manipulateWithStamper(PdfReader reader)throws IOException, DocumentException {PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(RESULT1));stamper.close();}/*** Creates a new PDF based on the one in the reader* @param reader a reader with a PDF file* @throws IOException* @throws DocumentException*/private static void manipulateWithCopy(PdfReader reader)throws IOException, DocumentException {int n = reader.getNumberOfPages();Document document = new Document();PdfCopy copy = new PdfCopy(document, new FileOutputStream(RESULT2));document.open();for (int i = 0; i < n;) {copy.addPage(copy.getImportedPage(reader, ++i));}document.close();}}
6.2 从PDF拷贝页面
导入页面
import java.io.FileOutputStream;
import java.io.IOException;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Image;
import com.itextpdf.text.pdf.PdfImportedPage;
import com.itextpdf.text.pdf.PdfPTable;
import com.itextpdf.text.pdf.PdfReader;
import com.itextpdf.text.pdf.PdfWriter;public class ImportingPages1 {/** The resulting PDF file. */public static final String RESULT= "D:/data/iText/inAction/chapter06/time_table_imported1.pdf";/*** Main method.* @param args no arguments needed* @throws DocumentException * @throws IOException*/public static void main(String[] args)throws IOException, DocumentException {// step 1Document document = new Document();// step 2PdfWriter writer= PdfWriter.getInstance(document, new FileOutputStream(RESULT));// step 3document.open();// step 4PdfPTable table = new PdfPTable(2);PdfReader reader = new PdfReader("D:/data/iText/inAction/chapter03/movie_posters.pdf");int n = reader.getNumberOfPages();PdfImportedPage page;for (int i = 1; i <= n; i++) {page = writer.getImportedPage(reader, i);table.addCell(Image.getInstance(page));}document.add(table);// step 5document.close();}
}
缩放和叠加页面
叠加PDF页面
import java.io.FileOutputStream;
import java.io.IOException;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Element;
import com.itextpdf.text.Font;
import com.itextpdf.text.Image;
import com.itextpdf.text.PageSize;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.Font.FontFamily;
import com.itextpdf.text.pdf.BaseFont;
import com.itextpdf.text.pdf.PdfContentByte;
import com.itextpdf.text.pdf.PdfGState;
import com.itextpdf.text.pdf.PdfImportedPage;
import com.itextpdf.text.pdf.PdfReader;
import com.itextpdf.text.pdf.PdfWriter;public class Layers {/** The resulting PDF. */public static final String SOURCE= "D:/data/iText/inAction/chapter06/layers_orig.pdf";/** The resulting PDF. */public static final String RESULT= "D:/data/iText/inAction/chapter06/layers.pdf";/** The movie poster. */public static final String RESOURCE= "E:/study/PDF/SourceCodeiText/itext-book/book/resources/img/loa.jpg";/*** Main method.* @param args no arguments needed* @throws DocumentException * @throws IOException*/public static void main(String[] args)throws IOException, DocumentException {new Layers().createPdf(SOURCE);// Create a readerPdfReader reader = new PdfReader(SOURCE);// step 1Document document = new Document(PageSize.A5.rotate());// step 2PdfWriter writer= PdfWriter.getInstance(document, new FileOutputStream(RESULT));// step 3document.open();// step 4PdfContentByte canvas = writer.getDirectContent();PdfImportedPage page;BaseFont bf= BaseFont.createFont(BaseFont.ZAPFDINGBATS, "", BaseFont.EMBEDDED);for (int i = 0; i < reader.getNumberOfPages(); ) {page = writer.getImportedPage(reader, ++i);canvas.addTemplate(page, 1f, 0, 0.4f, 0.4f, 72, 50 * i);canvas.beginText();canvas.setFontAndSize(bf, 20);canvas.showTextAligned(Element.ALIGN_CENTER,String.valueOf((char)(181 + i)), 496, 150 + 50 * i, 0);canvas.endText();}// step 5document.close();}/*** Creates a PDF document.* @param filename the path to the new PDF document* @throws DocumentException * @throws IOException*/public void createPdf(String filename)throws IOException, DocumentException {// step 1Document document = new Document(PageSize.POSTCARD, 30, 30, 30, 30);// step 2PdfWriter writer = PdfWriter.getInstance(document,new FileOutputStream(filename));// step 3document.open();// step 4PdfContentByte under = writer.getDirectContentUnder();// Page 1: a rectangledrawRectangle(under, PageSize.POSTCARD.getWidth(), PageSize.POSTCARD.getHeight());under.setRGBColorFill(0xFF, 0xD7, 0x00);under.rectangle(5, 5, PageSize.POSTCARD.getWidth() - 10, PageSize.POSTCARD.getHeight() - 10);under.fill();document.newPage();// Page 2: an imagedrawRectangle(under, PageSize.POSTCARD.getWidth(), PageSize.POSTCARD.getHeight());Image img = Image.getInstance(RESOURCE);img.setAbsolutePosition((PageSize.POSTCARD.getWidth() - img.getScaledWidth()) / 2,(PageSize.POSTCARD.getHeight() - img.getScaledHeight()) / 2);document.add(img);document.newPage();// Page 3: the words "Foobar Film Festival"drawRectangle(under, PageSize.POSTCARD.getWidth(), PageSize.POSTCARD.getHeight());;Paragraph p = new Paragraph("Foobar Film Festival", new Font(FontFamily.HELVETICA, 22));p.setAlignment(Element.ALIGN_CENTER);document.add(p);document.newPage();// Page 4: the words "SOLD OUT"drawRectangle(under, PageSize.POSTCARD.getWidth(), PageSize.POSTCARD.getHeight());PdfContentByte over = writer.getDirectContent();over.saveState();float sinus = (float)Math.sin(Math.PI / 60);float cosinus = (float)Math.cos(Math.PI / 60);BaseFont bf = BaseFont.createFont();over.beginText();over.setTextRenderingMode(PdfContentByte.TEXT_RENDER_MODE_FILL_STROKE);over.setLineWidth(1.5f);over.setRGBColorStroke(0xFF, 0x00, 0x00);over.setRGBColorFill(0xFF, 0xFF, 0xFF);over.setFontAndSize(bf, 36);over.setTextMatrix(cosinus, sinus, -sinus, cosinus, 50, 324);over.showText("SOLD OUT");over.setTextMatrix(0, 0);over.endText();over.restoreState();// step 5document.close();}/*** Draws a rectangle* @param content the direct content layer* @param width the width of the rectangle* @param height the height of the rectangle*/public static void drawRectangle(PdfContentByte content, float width, float height) {content.saveState();PdfGState state = new PdfGState();state.setFillOpacity(0.6f);content.setGState(state);content.setRGBColorFill(0xFF, 0xFF, 0xFF);content.setLineWidth(3);content.rectangle(0, 0, width, height);content.fillStroke();content.restoreState();}
}
导入公司信封
从第N页复制页面
6.3 使用PdfStamper添加内容
在绝对位置添加内容
import java.io.FileOutputStream;
import java.io.IOException;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Element;
import com.itextpdf.text.Phrase;
import com.itextpdf.text.pdf.ColumnText;
import com.itextpdf.text.pdf.PdfContentByte;
import com.itextpdf.text.pdf.PdfReader;
import com.itextpdf.text.pdf.PdfStamper;
import com.ygsoft.abc.component.cdes.itext.chapter1.HelloWorldLandscape1;
import com.ygsoft.abc.component.cdes.itext.chapter1.HelloWorldLandscape2;public class StampText {/** A resulting PDF file. */public static final String RESULT1= "D:/data/iText/inAction/chapter06/hello1.pdf";/** A resulting PDF file. */public static final String RESULT2= "D:/data/iText/inAction/chapter06/hello2.pdf";/** A resulting PDF file. */public static final String RESULT3= "D:/data/iText/inAction/chapter06/hello3.pdf";/*** Main method.* @param args no arguments needed* @throws DocumentException * @throws IOException*/public static void main(String[] args)throws DocumentException, IOException {HelloWorldLandscape1.main(args);HelloWorldLandscape2.main(args);stamp(HelloWorldLandscape1.RESULT, RESULT1);stampIgnoreRotation(HelloWorldLandscape1.RESULT, RESULT2);stamp(HelloWorldLandscape2.RESULT, RESULT3);}/*** Manipulates a PDF file src with the file dest as result* @param src the original PDF* @param dest the resulting PDF* @throws IOException* @throws DocumentException*/public static void stamp(String src, String dest)throws IOException, DocumentException {PdfReader reader = new PdfReader(src);PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(dest));PdfContentByte canvas = stamper.getOverContent(1);ColumnText.showTextAligned(canvas,Element.ALIGN_LEFT, new Phrase("Hello people!"), 36, 540, 0);stamper.close();}/*** Manipulates a PDF file src with the file dest as result* @param src the original PDF* @param dest the resulting PDF* @throws IOException* @throws DocumentException*/public static void stampIgnoreRotation(String src, String dest)throws IOException, DocumentException {PdfReader reader = new PdfReader(src);PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(dest));stamper.setRotateContents(false);PdfContentByte canvas = stamper.getOverContent(1);ColumnText.showTextAligned(canvas,Element.ALIGN_LEFT, new Phrase("Hello people!"), 36, 540, 0);stamper.close();}
}
2步创建PDF
第一步,创建文档内容,第二步,添加页码
import java.io.ByteArrayOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.sql.SQLException;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Element;
import com.itextpdf.text.PageSize;
import com.itextpdf.text.Rectangle;
import com.itextpdf.text.pdf.PdfPTable;
import com.itextpdf.text.pdf.PdfReader;
import com.itextpdf.text.pdf.PdfStamper;
import com.itextpdf.text.pdf.PdfWriter;public class TwoPasses {/** The resulting PDF file. */public static final String RESULT= "results/part2/chapter06/page_x_of_y.pdf";/*** Main method.* @param args no arguments needed* @throws DocumentException * @throws IOException * @throws SQLException* @throws SQLException*/public static void main(String[] args)throws SQLException, DocumentException, IOException {// FIRST PASS, CREATE THE PDF WITHOUT HEADER// step 1Document document = new Document(PageSize.A4, 36, 36, 54, 36);// step 2ByteArrayOutputStream baos = new ByteArrayOutputStream();PdfWriter.getInstance(document, baos);// step 3document.open();// step 4// PDF文档创建...// step 5document.close();// SECOND PASS, ADD THE HEADER// Create a readerPdfReader reader = new PdfReader(baos.toByteArray());// Create a stamperPdfStamper stamper= new PdfStamper(reader, new FileOutputStream(RESULT));// Loop over the pages and add a header to each pageint n = reader.getNumberOfPages();for (int i = 1; i <= n; i++) {getHeaderTable(i, n).writeSelectedRows(0, -1, 34, 803, stamper.getOverContent(i));}// Close the stamperstamper.close();}/*** Create a header table with page X of Y* @param x the page number* @param y the total number of pages* @return a table that can be used as header*/public static PdfPTable getHeaderTable(int x, int y) {PdfPTable table = new PdfPTable(2);table.setTotalWidth(527);table.setLockedWidth(true);table.getDefaultCell().setFixedHeight(20);table.getDefaultCell().setBorder(Rectangle.BOTTOM);table.addCell("FOOBAR FILMFESTIVAL");table.getDefaultCell().setHorizontalAlignment(Element.ALIGN_RIGHT);table.addCell(String.format("Page %d of %d", x, y));return table;}
}
添加公司信封到一个存在的文档
/*** Manipulates a PDF file src with the file dest as result* @param src the original PDF* @param stationery a PDF that will be added as background* @param dest the resulting PDF* @throws IOException* @throws DocumentException*/public void manipulatePdf(String src, String stationery, String dest)throws IOException, DocumentException {// Create readersPdfReader reader = new PdfReader(src);PdfReader s_reader = new PdfReader(stationery);// Create the stamperPdfStamper stamper = new PdfStamper(reader, new FileOutputStream(dest));// Add the stationery to each pagePdfImportedPage page = stamper.getImportedPage(s_reader, 1);int n = reader.getNumberOfPages();PdfContentByte background;for (int i = 1; i <= n; i++) {background = stamper.getUnderContent(i);background.addTemplate(page, 0, 0);}// CLose the stamperstamper.close();}
插入页面到一个存在的文档
填充PDF表单
6.4 使用PdfCopy 拷贝页面
拼接和拆分PDF文档
拼接文档
import java.io.FileOutputStream;
import java.io.IOException;
import java.sql.SQLException;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Element;
import com.itextpdf.text.Phrase;
import com.itextpdf.text.pdf.ColumnText;
import com.itextpdf.text.pdf.PdfCopy;
import com.itextpdf.text.pdf.PdfImportedPage;
import com.itextpdf.text.pdf.PdfReader;public class ConcatenateStamp {/** The resulting PDF file. */public static final String RESULT= "results/part2/chapter06/concatenated_stamped.pdf";/*** Main method.* @param args no arguments needed* @throws DocumentException * @throws IOException* @throws SQLException*/public static void main(String[] args)throws IOException, DocumentException, SQLException {// use old examples to create PDFsMovieLinks1.main(args);MovieHistory.main(args);// step 1Document document = new Document();// step 2PdfCopy copy = new PdfCopy(document, new FileOutputStream(RESULT));// step 3document.open();// step 4// reader for document 1PdfReader reader1 = new PdfReader(MovieLinks1.RESULT);int n1 = reader1.getNumberOfPages();// reader for document 2PdfReader reader2 = new PdfReader(MovieHistory.RESULT);int n2 = reader2.getNumberOfPages();// initializationsPdfImportedPage page;PdfCopy.PageStamp stamp;// Loop over the pages of document 1for (int i = 0; i < n1; ) {page = copy.getImportedPage(reader1, ++i);stamp = copy.createPageStamp(page);// add page numbersColumnText.showTextAligned(stamp.getUnderContent(), Element.ALIGN_CENTER,new Phrase(String.format("page %d of %d", i, n1 + n2)),297.5f, 28, 0);stamp.alterContents();copy.addPage(page);}// Loop over the pages of document 2for (int i = 0; i < n2; ) {page = copy.getImportedPage(reader2, ++i);stamp = copy.createPageStamp(page);// add page numbersColumnText.showTextAligned(stamp.getUnderContent(), Element.ALIGN_CENTER,new Phrase(String.format("page %d of %d", n1 + i, n1 + n2)),297.5f, 28, 0);stamp.alterContents();copy.addPage(page);}// step 5document.close();}
}
拆分文档
import java.io.FileOutputStream;
import java.io.IOException;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.pdf.PdfCopy;
import com.itextpdf.text.pdf.PdfReader;public class Burst {/** Format of the resulting PDF files. */public static final String RESULT= "D:/data/iText/inAction/chapter06/timetable_p%d.pdf";/*** Main method.* @param args no arguments needed* @throws DocumentException * @throws IOException*/public static void main(String[] args)throws IOException, DocumentException {// Create a readerPdfReader reader = new PdfReader("D:/data/iText/inAction/chapter03/movie_posters.pdf");// We'll create as many new PDFs as there are pagesDocument document;PdfCopy copy;// loop over all the pages in the original PDFint n = reader.getNumberOfPages();for (int i = 0; i < n; ) {// step 1document = new Document();// step 2copy = new PdfCopy(document,new FileOutputStream(String.format(RESULT, ++i)));// step 3document.open();// step 4copy.addPage(copy.getImportedPage(reader, i));// step 5document.close();}}}
PdfCopy VS PdfSmartCopy
带宽。这种额外的“智慧”是要付出代价的。PdfSmartCopy 需要更多的内存和时间去拼接文档。
文件大小、带宽优先,选PdfSmartCopy
内存、时间优先,选PdfCopy
拼接表单
相关文章:
iText实战--在现有PDF上工作
6.1 使用PdfReader读取PDF 检索文档和页面信息 D:/data/iText/inAction/chapter03/image_direct.pdf Number of pages: 1 Size of page 1: [0.0,0.0,283.0,416.0] Rotation of page 1: 0 Page size with rotation of page 1: Rectangle: 283.0x416.0 (rot: 0 degrees) Is reb…...
SQL优化--count优化
select count(*) from tb_user ;在之前的测试中,我们发现,如果数据量很大,在执行count操作时,是非常耗时的。 MyISAM 引擎把一个表的总行数存在了磁盘上,因此执行 count(*) 的时候会直接返回这个 数,效率很…...
IDEA下使用Spring MVC
<?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://maven.apache.org/POM/4.0.0 http://ma…...
2022基金从业人员资格管理及后续职业培训 部分答案(自答)
2022基金从业人员资格管理及后续职业培训 区块链在金融交易后处理中的应用私募基金行业典型违法案例分析《证券法》修订情况报告《刑法修正案(十一)》金融犯罪条款中国结算港股通结算业务介绍商品投资与商品配置价值气候技术:实现双碳目标的技…...
阿里云通义千问向全社会开放,近期将开源更大参数规模大模型
9月13日,阿里云宣布通义千问大模型已首批通过备案,并正式向公众开放,广大用户可登录通义千问官网体验,企业用户可以通过阿里云调用通义千问API。 通义千问在技术创新和行业应用上均位居大模型行业前列。IDC最新的AI大模型评估报告…...
数据结构:二叉查找树
文章目录 二叉查找树一,概述二,添加数据三,删除数据 二叉查找树 一,概述 二叉查找树,也称为二叉搜索树,是一种特殊的二叉树,它或者是一颗空树,或者具有以下性质:对于每…...
Redis的介绍,安装Redis的方式
🐌个人主页: 🐌 叶落闲庭 💨我的专栏:💨 c语言 数据结构 javaEE 操作系统 石可破也,而不可夺坚;丹可磨也,而不可夺赤。 Redis 初识Redis1.1 认识Redis1.2 安装Redis的方式…...
深入理解CI/CD流程:改变你的开发生命周期
🌷🍁 博主猫头虎(🐅🐾)带您 Go to New World✨🍁 🦄 博客首页——🐅🐾猫头虎的博客🎐 🐳 《面试题大全专栏》 🦕 文章图文…...
【React】React入门
目录 一、何为React二、React与传统MVC的关系三、React的特性1、声明式编程①、实现标记地图 2、高效灵活3、组件式开发(Component)①、函数式组件②、类组件(有状态组件)③、一个组件该有的特点 4、单向式响应的数据流 四、虚拟DOM1、传统DOM更新①、举…...
面相面试知识--Lottery项目
面相面试知识–Lottery项目 1.设计模式 为什么需要设计模式? (设计模式是什么?优点有哪些?) 设计模式是一套经过验证的有效的软件开发指导思想/解决方案;提高代码的可重用性和可维护性;提高团…...
《Python趣味工具》——自制emoji2(2)
今天,我们将会完成以下2个内容: 绘制静态emoji总结turtle中常用的绘图函数 文章目录 一、绘制静态emoji::sparkles: 画脸::sparkles:绘制嘴巴::sparkles:绘制眼白:绘制眼白-Part1:绘制眼白—pa…...
【面试刷题】——C++四种类型转化
C支持多种类型转换操作,其中包括四种主要类型转换方式: 隐式类型转换(Implicit Conversion): 隐式类型转换是自动发生的类型转换,由编译器自动完成。 它用于处理不同数据类型之间的运算,例如将…...
集成Activiti-Modeler流程设计器
集成Activiti-Modeler流程设计器 Activiti Modeler 是 Activiti 官方提供的一款在线流程设计的前端插件,可以方便流程设计与开发人员绘制流程图,保存流程模型,部署至流程定义等等。 1、材料准备 首先我们需要获取activiti-explorer.zip&…...
【深度学习】 Python 和 NumPy 系列教程(十一):NumPy详解:3、数组数学(元素、数组、矩阵级别的各种运算)
目录 一、前言 二、实验环境 三、NumPy 0、多维数组对象(ndarray) 多维数组的属性 1、创建数组 2、数组操作 3、数组数学 1. 元素级别 a. 直接运算 b. 加法:np.add()函数 c. 减法:np.subtract()函数 d. 乘法…...
python难题切片处理
边距折叠 Html经常出现的一个外边距折叠,可能有人的不太理解,或者说不知道怎么解决、我们来着重来看下: 当两个div盒子模型连续出现的时候并且同时应用了一个margin外边距,会出现边距重叠的现象: .Div {width:150px; #定义公共的盒子样式 Height:150px; Margin:20p…...
《研发效能(DevOps)工程师(中级)认证》证书查询方式和路径丨IDCF
由国家工业和信息化部教育与考试中心颁发的职业技术证书,也是国内首个《研发效能(DevOps)工程师国家职业技术认证》,IDCF社区作为官方指定培训中心,邀请了多位业界知名专家讲师(部分专家讲师名单:王立杰、杜伟忠、陈老…...
NVR添加rtsp流模拟GB28181视频通道
一、海康、大华监控摄像头和硬盘录像机接入GB28181平台配置 1、海康设备接入配置 通过web登录NVR管理系统,进入网络,高级配置界面,填入GB28181相关参数。 将对应项按刚才获取的配置信息填入即可,下面的视频通道的编码ID可以保持…...
浅谈C++|文件篇
引子: 程序运行时产生的数据都属于临时数据,程序一旦运行结束都会被释放通过文件可以将数据持久化。C中对文件操作需要包含头文件< fstream > 。 C提供了丰富的文件操作功能,你可以使用标准库中的fstream库来进行文件的读取、写入和定位…...
C++ QT qml 学习之 做个登录界面
最近在学习QT,也初探到qml 做ui 的灵活性与强大,于是手痒痒,做个demo 记录下学习成果 主要内容是如何自己编写一个按钮以及qml多窗口。 参考WX桌面版,做一个登录界面,这里面按钮是写的一个组合控件,有 按…...
LLM 06-大模型架构
LLM 06-大模型架构 6.1 大模型之模型概括 语言模型的一开始就可以被看做是一个黑箱,当前大规模语言模型的能力在于给定一个基于自身需求的prompt就可以生成符合需求的结果。形式可以表达为: p r o m p t ⇝ c o m p l e t i o n prompt \leadsto compl…...
openGauss学习笔记-71 openGauss 数据库管理-创建和管理普通表-删除表中数据
文章目录 openGauss学习笔记-71 openGauss 数据库管理-创建和管理普通表-删除表中数据 openGauss学习笔记-71 openGauss 数据库管理-创建和管理普通表-删除表中数据 在使用表的过程中,可能会需要删除已过期的数据,删除数据必须从表中整行的删除。 SQL不…...
【k8s】kube-proxy 工作模式
文章目录 Userspace模式:iptables模式:负载均衡(Load Balancing) LB轮询(Round Robin):SessionAffinity:最少连接(Least Connection):IP哈希&…...
Linux:Centos9 《下载-安装》
下载 Download (centos.org)https://www.centos.org/download/ 安装 选择第一个安装centos 根据自己需要的语言环境选择即可 这里选择要安装的磁盘,然后点击完成 这里选择第一个就行带有图形化 然后我们去对这两个进行设置就行 这两个地方自己进行设置就行 耐心等…...
数字化管理平台建设实践
在勘察设计行业,各企业加速推进数字化转型。通过管理要素数字化,不断优化内部组织运营效率;通过生产手段数字化、技术产品数字化,提升服务质量,改善客户体验;通过数字化营销,精准对接市场需求&a…...
Linux命令(80)之sort
linux命令之sort 1.sort介绍 linux命令sort用于将文本文件内容以行为单位加以排序;sort命令默认按每行的第一个字符排序,根据首字母的ASCII码值进行升序(从小到大排列)。 sort的默认分隔符是空白(空格和tab),多少空白都算一个分隔符。 2.…...
[k8s] kubectl port-forward 和kubectl expose的区别
kubectl port-forward 和 kubectl expose 是 Kubernetes 命令行工具 kubectl 提供的两种不同方式来公开服务。 kubectl port-forward kubectl port-forward 命令用于在本地主机和集群内部的 Pod 之间建立一个临时的端口转发通道。 该命令将本地机器上的一个端口绑定到集群内部…...
vscode如何设置文件折叠
随着项目的不断迭代开发,复杂度越来越高,配置文件越来越多,导致vscode左侧文件列表展示非常不直观,幸好可以通过文件折叠来简化展示效果,把同类相关的文件折叠在一块展示,方便查看配置文件。配置好后的效果…...
Linux centos7 bash编程训练
训练编写一段代码,打印输出100之内的明7暗7,同时要求每5个数字打印在一行。 此项训练主要是考察for循环的使用,及条件判断表达式的设置和不同写法的应用。 常用的for循环有四种写法(如打印1-100的整数): …...
k8s集群换ip
1.把/etc/kubernetes/*.conf中所有的旧ip换成新ip cd /etc/kubernetes/ find . -type f | xargs sed -i "s/$oldip/$newip/"2.替换$HOME/.kube/config文件中的旧ip为新ip(注意sudo的话需要改root下的) cd $HOME/.kube/ find . -type f | xargs sed -i "s/$old…...
选择HAL库还是标准库
选择HAL库还是标准库呢?HAL库是趋势,标准库不再升级了,转HAL库是大势所趋。HAL库有优点,也有自身的不足,建议初学者还是从标准库入手。 标准库是单片机开发的基本库,它把“用寄存器实现的功能”写成一个函…...
西宁电子商务网站建设/免费seo培训
这是松哥之前一个零散的笔记,整理出来分享给大伙! MySQL 读写分离在互联网项目中应该算是一个非常常见的需求了。受困于 Linux 和 MySQL 版本问题,很多人经常会搭建失败,今天松哥就给大伙举一个成功的例子,后面有时间再…...
bootstrap设计的精美网站/软文营销经典案例
敏捷开发 敏捷个人敏捷一词已席卷软件界。 敏捷已经远远超过了它的炒作周期。 人们对敏捷的认识日益提高,但是仍然存在一些疑问,尤其是开发人员和测试人员。 那么,敏捷有何不同?如果您是开发人员或测试人员,这有什么关…...
花都网站(建设信科网络)/福州网站建设方案外包
计算机体系结构可以类比人类社会的构成: 以helloworld为例,我们常见的helloworld程序背后发生了什么?这里我们详尽,完整的梳理一下整个过程,加深对计算机体系结构的理解: caozilong@caozilong-Vostro-3268:~/Workspace/helloworld$ gcc main.c caozilong@caozilong-Vos…...
国际网站怎么做/余姚网站seo运营
说明: <1>阅读本文,最好阅读之前的block文章加以理解; <2>本文内容:三种block类型的copy情况(MRC)、是否深拷贝、错误copy; 一、MRC模式下,三种block类型的copy情况 //代…...
做网站电话/百度关键词排名突然没了
之前我一直用Seconds_behind_master来衡量主从的延迟,今天看到文档,才觉得多么不可靠!以下是官方文档的描述: In essence, this field measures the time difference in seconds between the slave SQL thread and the slave I/O …...