WO2013013486A1 - 一种将pdf格式文件转换为epub格式的方法及系统 - Google Patents

一种将pdf格式文件转换为epub格式的方法及系统 Download PDF

Info

Publication number
WO2013013486A1
WO2013013486A1 PCT/CN2011/084272 CN2011084272W WO2013013486A1 WO 2013013486 A1 WO2013013486 A1 WO 2013013486A1 CN 2011084272 W CN2011084272 W CN 2011084272W WO 2013013486 A1 WO2013013486 A1 WO 2013013486A1
Authority
WO
WIPO (PCT)
Prior art keywords
image element
text
image
file
text element
Prior art date
Application number
PCT/CN2011/084272
Other languages
English (en)
French (fr)
Inventor
王峰
Original Assignee
深圳市万兴软件有限公司
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 深圳市万兴软件有限公司 filed Critical 深圳市万兴软件有限公司
Publication of WO2013013486A1 publication Critical patent/WO2013013486A1/zh

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/10File systems; File servers
    • G06F16/17Details of further file system functions
    • G06F16/178Techniques for file synchronisation in file systems
    • G06F16/1794Details of file format conversion

Definitions

  • the present invention relates to the field of document processing technologies, and in particular, to a method and system for converting a PDF format file into an EPUB format.
  • PDF is a Portable Document
  • the abbreviation of Format is an electronic file format.
  • the PDF file format is an ideal file format for electronic document distribution and formatted information dissemination on the Internet with its superior features.
  • PDF files are typeset according to coordinates, and it is difficult to locate absolutely on small devices, PDF files cannot adapt to pages on small devices or mobile devices.
  • a PDF format file is usually converted into an EPUB format.
  • the EPUB format is an e-book standard that belongs to a content that can be "automatically rearranged"; that is, the text content can be displayed in a manner that is most suitable for reading according to the characteristics of the reading device.
  • the EPUB file uses XHTML or DTBook internally. (An XML standard proposed by the DAISY Consortium) to present text and wrap archive content in a zip-compressed format.
  • the object of the present invention is to provide a method and system for converting a PDF format file into an EPUB format, so that the converted EPUB format file can be illustrated, and the relative positional relationship between the image element and the text element in the converted EPUB format file is The original PDF file is the same.
  • the present invention provides the following solutions:
  • a method of converting a PDF file to an EPUB format including:
  • An EPUB format file is generated according to the HTML format file.
  • the relative positional relationship between the text element and the image element is the same as the relative positional relationship between the text element and the image element in the PDF file, including:
  • the text element originally located to the left or above the image element is positioned above the image element according to the coordinates of the text element and the coordinates of the image element; the original image is located in the image
  • the text element to the right or below the element is positioned below the image element and includes:
  • the text element is positioned below the image element.
  • the text element originally located to the left or above the image element is positioned above the image element according to the coordinates of the text element and the coordinates of the image element; the original image is located in the image
  • the text element to the right or below the element is positioned below the image element and includes:
  • the text element is positioned above the image element.
  • the generating an EPUB format file according to the HTML format file includes:
  • the HTML format file and the files necessary for the EPUB format are compressed into a compressed package with a suffix of EPUB.
  • a system for converting PDF files to EPUB format including:
  • An element recognition module for identifying text elements and image elements in a PDF file
  • a coordinate acquiring module configured to acquire coordinates of the text element and coordinates of the image element
  • a location determining module configured to determine, according to coordinates of the text element and coordinates of the image element, a location of the text element and the image element in a newly generated HTML format file, so that the newly generated HTML format file
  • the relative positional relationship between the text element and the image element in the text is the same as the relative positional relationship of the text element and the image element in the PDF file;
  • An HTML format file generating module configured to generate an HTML format file according to the location
  • the EPUB format generating module is configured to generate an EPUB format file according to the HTML format file.
  • the location determining module includes:
  • an upper and lower position determining unit configured to position the text element originally located to the left or the top of the image element above the image element according to coordinates of the text element and coordinates of the image element; The text element to the right or below the image element is positioned below the image element.
  • the upper and lower position determining unit comprises:
  • a first determining subunit configured to determine whether an ordinate of a lower right point of the text element is smaller than an ordinate of an upper left point of the image element
  • a first positioning subunit configured to: when the determination result of the first determining subunit is YES, position the text element above the image element;
  • a second determining subunit configured to determine, when the determination result of the first determining subunit is negative, whether an abscissa of a lower right point of the text element is smaller than an abscissa of an upper left point of the image element;
  • a second positioning subunit configured to: when the determination result of the second determining subunit is YES, position the text element above the image element;
  • a third positioning subunit configured to: when the determination result of the second determining subunit is negative, locate the text element below the image element.
  • the upper and lower position determining unit comprises:
  • a third determining subunit configured to determine whether an ordinate of an upper left point of the text element is greater than an ordinate of a lower right point of the image element
  • a fourth positioning subunit configured to: when the determination result of the third determining subunit is YES, locate the text element below the image element;
  • a fourth determining subunit configured to determine, when the determination result of the third determining subunit is negative, whether an abscissa of an upper left point of the text element is greater than an abscissa of a lower right point of the image element;
  • a fifth positioning subunit configured to: when the determination result of the fourth determining subunit is YES, locate the text element below the image element;
  • a sixth positioning subunit configured to position the text element above the image element when the determination result of the fourth determining subunit is negative.
  • the EPUB format generating module includes:
  • the necessary file generating unit is used to generate a file necessary for the EPUB format including the container.xml file and the suffixes named opf and ncx;
  • the EPUB format generating unit is configured to compress the HTML format file and the files necessary for the EPUB format into a compressed package with a suffix of EPUB.
  • Determining the position of the text element and the image element in the newly generated HTML format file by analyzing the coordinates of the text element and the image element in the PDF format file, so as to be described in the newly generated HTML format file
  • the relative positional relationship between the text element and the image element is the same as the relative positional relationship of the text element and the image element in the PDF format file; the converted EPUB format file can be illustrated, and the converted EPUB format file
  • the relative positional relationship between the image element and the text element is the same as the original PDF file.
  • FIG. 1 is a flowchart of a method for converting a PDF format file into an EPUB format according to Embodiment 1 of the present invention
  • FIG. 2 is a flowchart of a method for converting a PDF format file into an EPUB format according to Embodiment 2 of the present invention
  • FIG. 3 is a flowchart of a step of converting an HTML format file into an EPUB format file according to Embodiment 3 of the present invention
  • FIG. 4 is a structural diagram of a system for converting a PDF format file into an EPUB format according to the present disclosure
  • FIG. 5 is a structural diagram of a location determining module according to an embodiment of the present invention.
  • FIG. 6 is another structural diagram of a location determining module according to an embodiment of the present invention.
  • FIG. 7 is a structural diagram of an EPUB format generation module according to an embodiment of the present invention.
  • FIG. 1 is a flowchart of a method for converting a PDF format file into an EPUB format according to Embodiment 1 of the present invention. As shown in Figure 1, the method includes the steps of:
  • the data stream of the text element and the data stream of the image element respectively have different identifiers. Therefore, the text elements and image elements in the PDF file can be identified according to the identifiers in the data stream.
  • S102 Acquire coordinates of the text element and coordinates of the image element
  • S103 determining, according to coordinates of the text element and coordinates of the image element, a position of the text element and the image element in a newly generated HTML format file, so as to be in the newly generated HTML format file.
  • a relative positional relationship between the text element and the image element is the same as a relative positional relationship of the text element and the image element in a PDF format file;
  • the files in the EPUB format are usually composed of HTML format files and other files necessary for the EPUB format, in this embodiment, it is necessary to form an HTML format file according to various elements in the PDF format file.
  • the element with the relative position to the left has a smaller value of the abscissa; the element with the relative position to the right has the larger value of the abscissa; the element with the relative position is the value of the ordinate, the value of the ordinate
  • the position of the text element and the image element in the newly generated HTML format file may be determined according to the coordinates of the text element and the coordinates of the image element, so as to be in the newly generated HTML format file.
  • the relative positional relationship between the text element and the image element is the same as the relative positional relationship of the text element and the image element in the PDF format file.
  • the text element originally located to the left or above the image element may be positioned above the image element according to the coordinates of the text element and the coordinates of the image element; the original image element is located at the image element The text element to the right or below is positioned below the image element.
  • S104 Generate an HTML format file according to the location
  • S105 Generate an EPUB format file according to the HTML format file.
  • EPUB format file there are some necessary files, such as: container.xml file and files with the suffixes opf, ncx, etc., so finally need to according to the HTML format file, and the files necessary for the EPUB format. , generate an EPUB format file.
  • the relative positional relationship between the text element and the image element in the file is the same as the relative positional relationship of the text element and the image element in the PDF format file; the converted EPUB format file can be illustrated and converted In the latter EPUB format file, the relative positional relationship between the image element and the text element is the same as the original PDF format file.
  • FIG. 2 is a flowchart of a method for converting a PDF format file into an EPUB format according to Embodiment 2 of the present invention. This embodiment illustrates the practical application process of the present invention in more detail. As shown in Figure 2, the method includes the steps of:
  • step S204 If yes, go to step S204; otherwise, go to step S205;
  • step S204 If yes, go to step S204; otherwise, go to step S206;
  • S208 Generate an EPUB format file according to the HTML format file.
  • a text element contains a paragraph of text. This text can be approximated to form a rectangular area. If the ordinate of the lower right point of the rectangular area is smaller than the ordinate of the upper left point of the image element (which can also be considered as a rectangular area), then it is certain that the text element is located in the original PDF file. Above the.
  • the text element is located on the left side of the image element in the original PDF format file.
  • text elements above and to the left of the image element should also appear before the image element in the converted EPUB format file. Therefore, in this embodiment, the text elements above and to the left of the image elements in the original PDF format file are positioned above the image elements.
  • steps S203-S206 when the result of both determinations is negative, indicating that the text element is neither above the image element nor to the left of the image element, then the text element must be located below the image element or Right. According to normal reading habits, in this embodiment, the text elements below and to the right of the image elements in the original PDF format file are positioned below the image elements.
  • the method for converting a PDF format file into an EPUB format disclosed in this embodiment can determine the text element and the image element in the original PDF format file by comparing the right lower point of the text element with the horizontal and vertical coordinates of the upper left point of the image element. Positional relationship, and retaining the above positional relationship in the converted EPUB format file; enabling the converted EPUB format file to be illustrated, and the relative positional relationship between the image element and the text element in the converted EPUB format file and the original PDF format file the same.
  • the setting direction of the coordinate system can be changed, the selection of the coordinate points of the text element or the image element used for the judgment can also be changed (the upper left point coordinate of the text element and the lower right point coordinate of the image element can be used. Therefore, the method for converting a PDF file to the EPUB format disclosed in the embodiment of the present invention may be modified in various ways, and should not be construed as limiting the present invention.
  • This embodiment in contrast to the second embodiment, employs another way of determining the position of the text element and the image element in the newly generated HTML format file.
  • FIG. 3 is a flowchart of a method for converting a PDF format file into an EPUB format according to Embodiment 3 of the present invention.
  • the method includes the steps of:
  • S303 Determine whether an ordinate of an upper left point of the text element is greater than an ordinate of a lower right point of the image element;
  • step S304 If yes, go to step S304; otherwise, go to step S305;
  • step S304 If yes, go to step S304; otherwise, go to step S306;
  • S308 Generate an EPUB format file according to the HTML format file.
  • steps S303-S306 The principle of steps S303-S306 is as follows:
  • the ordinate of the upper left point of the rectangular area formed by the text element is greater than the ordinate of the lower right point of the rectangular area formed by the image element, and the text element is located below the image element in the original PDF format file.
  • the text element is located on the right side of the image element in the original PDF format file.
  • the text elements below and to the right of the image elements are positioned below the image elements in the converted EPUB format file.
  • steps S303-S306 when the result of the two determinations is negative, indicating that the text element is neither under the image element nor on the right side of the image element, the text element must be located above the image element or Left side. According to the normal reading habit, in this embodiment, the text elements above or to the left of the image elements in the original PDF format file are positioned above the image elements.
  • the method for converting a PDF format file into an EPUB format disclosed in this embodiment can determine the text element and the image element in the original PDF format file by comparing the horizontal and vertical coordinates of the upper left point of the text element with the lower right point of the image element. Positional relationship, and retaining the above positional relationship in the converted EPUB format file; enabling the converted EPUB format file to be illustrated, and the relative positional relationship between the image element and the text element in the converted EPUB format file and the original PDF format file the same.
  • the invention also discloses a system for converting a PDF format file into an EPUB format.
  • FIG. 4 it is a system structure diagram for converting a PDF format file into an EPUB format according to the present disclosure. As shown in Figure 4, the system includes:
  • An element identification module 401 configured to identify a text element and an image element in a PDF format file
  • a coordinate acquiring module 402 configured to acquire coordinates of the text element and coordinates of the image element
  • a location determining module 403 configured to determine, according to coordinates of the text element and coordinates of the image element, a location of the text element and the image element in a newly generated HTML format file, so that the newly generated HTML format is a relative positional relationship between the text element and the image element in the file is the same as a relative positional relationship of the text element and the image element in a PDF format file;
  • An HTML format file generating module 404 configured to generate an HTML format file according to the location
  • the EPUB format generating module 405 is configured to generate an EPUB format file according to the HTML format file.
  • FIG. 5 is a structural diagram of a location determining module according to an embodiment of the present invention. As shown in FIG. 5, the location determining module 403 can include:
  • the upper and lower position determining unit 4030 is configured to position the text element originally located on the left or the top of the image element above the image element according to the coordinates of the text element and the coordinates of the image element; The text element to the right or below the image element is positioned below the image element.
  • the upper and lower position determining unit 4030 may include:
  • a first determining sub-unit 4031 configured to determine whether a vertical coordinate of a lower right point of the text element is smaller than an ordinate of an upper left point of the image element;
  • a first locating sub-unit 4032 configured to: when the determination result of the first determining sub-unit is YES, locate the text element above the image element;
  • a second determining sub-unit 4033 configured to determine, when the determination result of the first determining sub-unit is negative, whether an abscissa of a lower right point of the text element is smaller than an abscissa of an upper left point of the image element;
  • a second positioning sub-unit 4034 configured to: when the determination result of the second determining sub-unit is YES, locate the text element above the image element;
  • the third positioning sub-unit 4035 is configured to: when the determination result of the second determining sub-unit is negative, locate the text element below the image element.
  • FIG. 6 is another structural diagram of a location determining module according to an embodiment of the present invention.
  • the upper and lower position determining unit 4030 may include:
  • a third determining sub-unit 4036 configured to determine whether an ordinate of an upper left point of the text element is greater than an ordinate of a lower right point of the image element
  • a fourth positioning sub-unit 4037 configured to: when the determination result of the third determining sub-unit is YES, locate the text element below the image element;
  • a fourth determining sub-unit 4038 configured to determine, when the determination result of the third determining sub-unit is negative, whether an abscissa of an upper left point of the text element is greater than an abscissa of a lower right point of the image element;
  • a fifth positioning subunit 4039 configured to: when the determination result of the fourth determining subunit is YES, locate the text element below the image element;
  • the sixth positioning subunit 40310 is configured to locate the text element above the image element when the determination result of the fourth determining subunit is negative.
  • FIG. 7 is a structural diagram of an EPUB format generation module according to an embodiment of the present invention. As shown in FIG. 7, the EPUB format generation module 405 may include:
  • the necessary file generating unit 4051 is configured to generate a file necessary for the EPUB format including the container.xml file and the suffixes named opf and ncx;
  • the EPUB format generating unit 4052 is configured to compress the HTML format file and the files necessary for the EPUB format into a compressed package with a suffix of EPUB.
  • the system for converting a PDF format file into an EPUB format disclosed in this embodiment can analyze the coordinates of the text element and the image element in the PDF format file, and determine the text element and the image element in the newly generated HTML format. a position in the file such that a relative positional relationship between the text element and the image element in the newly generated HTML format file is the same as a relative positional relationship of the text element and the image element in the PDF format file;
  • the converted EPUB format file can be illustrated, and in the converted EPUB format file, the relative positional relationship between the image element and the text element is the same as the original PDF format file.

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Data Mining & Analysis (AREA)
  • Databases & Information Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Document Processing Apparatus (AREA)

Abstract

公开了一种将PDF格式文件转换为EPUB格式的方法,包括:识别PDF格式文件中的文本元素、图像元素;获取文本元素的坐标和图像元素的坐标;根据文本元素的坐标和图像元素的坐标,确定文本元素和图像元素在新生成的HTML格式文件中的位置;按照该位置,生成HTML格式文件;根据HTML格式文件,生成EPUB格式文件。还公开了一种将PDF格式文件转换为EPUB格式的系统。该方法和系统能够使转化成的EPUB格式的文件图文并茂,并保留原PDF格式文件中的文字元素与图像元素的位置关系。

Description

一种将PDF格式文件转换为EPUB格式的方法及系统 技术领域
本发明涉及文档处理技术领域,特别是涉及一种将PDF格式文件转换为EPUB格式的方法及系统。
背景技术
PDF是Portable Document Format(便携文件格式)的缩写,是一种电子文件格式。PDF文件格式以其卓越的特性成为在互联网上进行电子文档发行和格式化信息传播的理想文件格式。当前,在互联网上发布的科技论文大部分以PDF格式提交。但是,因为PDF文件是根据坐标来排版的,而小型设备上很难绝对定位,所以PDF文件在小型设备或者移动设备上不能自适应页面。现有技术中,为了在小型设备或者移动设备上更好地显示PDF文件的内容,通常将PDF格式文件转换为EPUB格式。
EPUB格式是一种电子图书标准,属于一种可以“自动重新编排”的内容;也就是文字内容可以根据阅读设备的特性,以最适于阅读的方式显示。EPUB档案内部使用了XHTML或DTBook (一种由DAISY Consortium提出的XML标准)来展现文字、并以zip压缩格式来包裹档案内容。
现有技术中,将PDF格式文件转换为EPUB格式的方法主要有两种:一种是只提取PDF格式文件中的文本,图片去除。显然该方式存在图片缺失的缺点。另一种方式是对PDF格式文件的每一页进行截图。由于截图时会导致分辨率下降,在小型设备上阅读时,文字更加难以识别。
技术问题
本发明的目的是提供一种将PDF格式文件转换为EPUB格式的方法及系统,使得转换后的EPUB格式文件能够图文并茂,并且转换后的EPUB格式文件中,图像元素与文本元素的相对位置关系与原PDF格式文件相同。
技术解决方案
为实现上述目的,本发明提供了如下方案:
一种将PDF格式文件转换为EPUB格式的方法,包括:
识别PDF格式文件中的文本元素、图像元素;
获取所述文本元素的坐标和所述图像元素的坐标;
根据所述文本元素的坐标和所述图像元素的坐标,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置,以使新生成的HTML格式文件中的文本元素和图像元素的相对位置关系与PDF格式文件中的文本元素和图像元素的相对位置关系相同;
按照确定的位置,生成HTML格式文件;
根据所述HTML格式文件,生成EPUB格式文件。
优选的,所述根据所述文本元素的坐标和所述图像元素的坐标,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置,以使新生成的HTML格式文件中的文本元素和图像元素的相对位置关系与PDF格式文件中的文本元素和图像元素的相对位置关系相同,包括:
根据所述文本元素的坐标和所述图像元素的坐标,将原本位于所述图像元素左边或上方的所述文本元素,定位在所述图像元素上方;将原本位于所述图像元素右边或下方的所述文本元素,定位在所述图像元素下方。
优选的,所述根据所述文本元素的坐标和所述图像元素的坐标,将原本位于所述图像元素左边或上方的所述文本元素,定位在所述图像元素上方;将原本位于所述图像元素右边或下方的所述文本元素,定位在所述图像元素下方,包括:
判断所述文本元素的右下点的纵坐标是否小于所述图像元素的左上点的纵坐标;
如果是,则将所述文本元素定位在所述图像元素的上方;
否则,判断所述文本元素的右下点的横坐标是否小于所述图像元素的左上点的横坐标;
如果是,则将所述文本元素定位在所述图像元素的上方;
否则,将所述文本元素定位在所述图像元素的下方。
优选的,所述根据所述文本元素的坐标和所述图像元素的坐标,将原本位于所述图像元素左边或上方的所述文本元素,定位在所述图像元素上方;将原本位于所述图像元素右边或下方的所述文本元素,定位在所述图像元素下方,包括:
判断所述文本元素的左上点的纵坐标是否大于所述图像元素的右下点的纵坐标;
如果是,则将所述文本元素定位在所述图像元素的下方;
否则,判断所述文本元素的左上点的横坐标是否大于所述图像元素的右下点的横坐标;
如果是,则将所述文本元素定位在所述图像元素的下方;
否则,将所述文本元素定位在所述图像元素的上方。
优选的,所述根据所述HTML格式文件,生成EPUB格式文件,包括:
生成包括container.xml文件以及后缀名为opf、ncx在内的EPUB格式所必须的文件;
将所述HTML格式文件,以及所述EPUB格式所必须的文件,压缩成后缀名为EPUB的压缩包。
一种将PDF格式文件转换为EPUB格式的系统,包括:
元素识别模块,用于识别PDF格式文件中的文本元素、图像元素;
坐标获取模块,用于获取所述文本元素的坐标和所述图像元素的坐标;
位置确定模块,用于根据所述文本元素的坐标和所述图像元素的坐标,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置,以使新生成的HTML格式文件中的文本元素和图像元素的相对位置关系与PDF格式文件中的文本元素和图像元素的相对位置关系相同;
HTML格式文件生成模块,用于按照所述位置,生成HTML格式文件;
EPUB格式生成模块,用于根据所述HTML格式文件,生成EPUB格式文件。
优选的,所述位置确定模块包括:
上下位置确定单元,用于根据所述文本元素的坐标和所述图像元素的坐标,将原本位于所述图像元素左边或上方的所述文本元素,定位在所述图像元素上方;将原本位于所述图像元素右边或下方的所述文本元素,定位在所述图像元素下方。
优选的,所述上下位置确定单元包括:
第一判断子单元,用于判断所述文本元素的右下点的纵坐标是否小于所述图像元素的左上点的纵坐标;
第一定位子单元,用于当所述第一判断子单元的判断结果为是时,将所述文本元素定位在所述图像元素的上方;
第二判断子单元,用于当所述第一判断子单元的判断结果为否时,判断所述文本元素的右下点的横坐标是否小于所述图像元素的左上点的横坐标;
第二定位子单元,用于当所述第二判断子单元的判断结果为是时,将所述文本元素定位在所述图像元素的上方;
第三定位子单元,用于当所述第二判断子单元的判断结果为否时,将所述文本元素定位在所述图像元素的下方。
优选的,所述上下位置确定单元包括:
第三判断子单元,用于判断所述文本元素的左上点的纵坐标是否大于所述图像元素的右下点的纵坐标;
第四定位子单元,用于当所述第三判断子单元的判断结果为是时,将所述文本元素定位在所述图像元素的下方;
第四判断子单元,用于当所述第三判断子单元的判断结果为否时,判断所述文本元素的左上点的横坐标是否大于所述图像元素的右下点的横坐标;
第五定位子单元,用于当所述第四判断子单元的判断结果为是时,将所述文本元素定位在所述图像元素的下方;
第六定位子单元,用于当所述第四判断子单元的判断结果为否时,将所述文本元素定位在所述图像元素的上方。
优选的,所述EPUB格式生成模块包括:
必要文件生成单元,用于生成包括container.xml文件以及后缀名为opf、ncx在内的EPUB格式所必须的文件;
EPUB格式生成单元,用于将所述HTML格式文件,以及所述EPUB格式所必须的文件,压缩成后缀名为EPUB的压缩包。
有益效果
通过对PDF格式文件中的文本元素与图像元素的坐标进行分析,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置,以使新生成的HTML格式文件中的所述文本元素和所述图像元素的相对位置关系与PDF格式文件中的所述文本元素和所述图像元素的相对位置关系相同;能够使转换后的EPUB格式文件能够图文并茂,并且转换后的EPUB格式文件中,图像元素与文本元素的相对位置关系与原PDF格式文件相同。
附图说明
为了更清楚地说明本发明实施例或现有技术中的技术方案,下面将对实施例中所需要使用的附图作简单地介绍,显而易见地,下面描述中的附图仅仅是本发明的一些实施例,对于本领域普通技术人员来讲,在不付出创造性劳动性的前提下,还可以根据这些附图获得其他的附图。
图1为本发明实施例一所述将PDF格式文件转换为EPUB格式的方法流程图;
图2为本发明实施例二所述将PDF格式文件转换为EPUB格式的方法流程图;
图3为本发明实施例三所述将HTML格式文件转化为EPUB格式的文件的步骤的流程图;
图4为本发明所公开的将PDF格式文件转换为EPUB格式的系统结构图;
图5为本发明实施例所公开的位置确定模块结构图;
图6为本发明实施例所公开的位置确定模块另一结构图;
图7为本发明实施例所公开的EPUB格式生成模块结构图。
本发明的实施方式
下面将结合本发明实施例中的附图,对本发明实施例中的技术方案进行清楚、完整地描述,显然,所描述的实施例仅仅是本发明一部分实施例,而不是全部的实施例。基于本发明中的实施例,本领域普通技术人员在没有做出创造性劳动前提下所获得的所有其他实施例,都属于本发明保护的范围。
为使本发明的上述目的、特征和优点能够更加明显易懂,下面结合附图和具体实施方式对本发明作进一步详细的说明。
实施例一
参见图1,为本发明实施例一所述将PDF格式文件转换为EPUB格式的方法流程图。如图1所示,该方法包括步骤:
S101:识别PDF格式文件中的文本元素、图像元素;
由于文本元素和图像元素本身的属性不同,因此,在读取PDF格式文件时,文本元素的数据流与图像元素的数据流,分别具有不同的标识。所以可以根据数据流中的标识,识别PDF格式文件中的文本元素、图像元素。
S102:获取所述文本元素的坐标和所述图像元素的坐标;
S103:根据所述文本元素的坐标和所述图像元素的坐标,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置,以使新生成的HTML格式文件中的所述文本元素和所述图像元素的相对位置关系与PDF格式文件中的所述文本元素和所述图像元素的相对位置关系相同;
因为EPUB格式的文件通常由HTML格式文件以及其他一些EPUB格式所必须的文件构成,所以本实施例中,需要根据PDF格式文件中的各种元素先生成HTML格式文件。
下面对本步骤的原理,进行说明。
大多数出版物的排版规律,都是:从某个页面的左上角处开始,每一行文字按照从左向右的顺序显示。该行文字排满一行后,会从该页面下移一行,继续显示。因此,通常一个页面中,坐标系是这样的:该页面的左上角为坐标系的原点(0,0),从左至右为X轴方向,且横坐标的值从左至右逐渐增大;从上向下为Y轴方向,且纵坐标的值从上向下逐渐增大。
因此,在某个页面中,相对位置靠左的元素,其横坐标的值越小;相对位置靠右的元素,其横坐标的值越大;相对位置靠上的元素,其纵坐标的值越小;相对位置靠下的元素,其纵坐标的值越大。所以,可以根据所述文本元素的坐标和所述图像元素的坐标,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置,以使新生成的HTML格式文件中的所述文本元素和所述图像元素的相对位置关系与PDF格式文件中的所述文本元素和所述图像元素的相对位置关系相同。
具体的,可以根据所述文本元素的坐标和所述图像元素的坐标,将原本位于所述图像元素左边或上方的所述文本元素,定位在所述图像元素上方;将原本位于所述图像元素右边或下方的所述文本元素,定位在所述图像元素下方。
S104:按照所述位置,生成HTML格式文件;
S105:根据所述HTML格式文件,生成EPUB格式文件。
因为,EPUB格式文件中,有一些必须的文件,例如:container.xml文件以及后缀名为opf、ncx的文件等等,所以最后需要根据所述HTML格式文件,以及所述EPUB格式所必须的文件,生成EPUB格式文件。
本实施例中,通过对PDF格式文件中的文本元素与图像元素的坐标进行分析,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置,以使新生成的HTML格式文件中的所述文本元素和所述图像元素的相对位置关系与PDF格式文件中的所述文本元素和所述图像元素的相对位置关系相同;能够使转换后的EPUB格式文件能够图文并茂,并且转换后的EPUB格式文件中,图像元素与文本元素的相对位置关系与原PDF格式文件相同。
实施例二
参见图2,为本发明实施例二所述将PDF格式文件转换为EPUB格式的方法流程图。该实施例更加详细地说明了本发明的实际应用过程。如图2所示,该方法包括步骤:
S201:识别PDF格式文件中的文本元素、图像元素;
S202:获取所述文本元素的坐标和所述图像元素的坐标;
S203:判断所述文本元素的右下点的纵坐标是否小于所述图像元素的左上点的纵坐标;
如果是,执行步骤S204;否则,执行步骤S205;
S204:将所述文本元素定位在所述图像元素的上方;
S205:判断所述文本元素的右下点的横坐标是否小于所述图像元素的左上点的横坐标;
如果是,则执行步骤S204;否则,执行步骤S206;
S206:将所述文本元素定位在所述图像元素的下方;
S207:按照所述位置,生成HTML格式文件;
S208:根据所述HTML格式文件,生成EPUB格式文件。
其中,步骤S203-S206的原理如下:
通常,一个文本元素中包含一段文字。这段文字可以近似构成一个矩形区域。该矩形区域的右下点的纵坐标,如果小于图像元素(也可以认为是一个矩形区域)的左上点的纵坐标,那么,可以肯定,该文本元素在原PDF格式文件中,是位于该图像元素的上方的。
同理,如果该文本元素的右下点的横坐标小于该图像元素的左上点的横坐标,那么,该文本元素在原PDF格式文件中,是位于该图像元素的左侧的。
按照正常的阅读习惯,在图像元素上方和左侧的文本元素,在转换后的EPUB格式文件中,也应该出现在图像元素之前。因此,本实施例中,将原PDF格式文件中的图像元素上方和左侧的文本元素,均定位在该图像元素的上方。
步骤S203-S206中,当进行两次判断以后的结果都是否时,表示该文本元素既不在图像元素的上方,也不在该图像元素的左侧,那么,该文本元素必然位于图像元素的下方或右侧。按照正常的阅读习惯,本实施例中,将原PDF格式文件中的图像元素下方和右侧的文本元素,均定位在该图像元素的下方。
综上,本实施例中,公开了根据文本元素和图像元素的坐标,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置的一种具体方式。
本实施例所公开的将PDF格式文件转换为EPUB格式的方法,通过对文本元素右下点与图像元素左上点的横、纵坐标进行比较,能够确定文本元素与图像元素在原PDF格式文件中的位置关系,并且在转换后的EPUB格式文件中保留上述位置关系;使得转换后的EPUB格式文件能够图文并茂,并且转换后的EPUB格式文件中,图像元素与文本元素的相对位置关系与原PDF格式文件相同。
需要说明的是,由于坐标系的设置方向可以变化,用来进行判断的文本元素或者图像元素的坐标点的选取也可以改变(可以采用文本元素的左上点坐标与图像元素的右下点坐标进行比较),因此,本发明实施例所公开的将PDF格式文件转换为EPUB格式的方法,还可以有多种变形后的方式,此处不应理解为对本发明的限定。
实施例三
本实施例相对于实施例二,采用了另一种确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置的方式。
参见图3,为本发明实施例三所述将PDF格式文件转换为EPUB格式的方法流程图。
如图3所示,该方法包括步骤:
S301:识别PDF格式文件中的文本元素、图像元素;
S302:获取所述文本元素的坐标和所述图像元素的坐标;
S303:判断所述文本元素的左上点的纵坐标是否大于所述图像元素的右下点的纵坐标;
如果是,执行步骤S304;否则执行步骤S305;
S304:将所述文本元素定位在所述图像元素的下方;
S305:判断所述文本元素的左上点的横坐标是否大于所述图像元素的右下点的横坐标;
如果是,则执行步骤S304;否则,执行步骤S306;
S306:将所述文本元素定位在所述图像元素的上方;
S307:按照所述位置,生成HTML格式文件;
S308:根据所述HTML格式文件,生成EPUB格式文件。
其中,步骤S303-S306的原理如下:
文本元素构成的矩形区域的左上点的纵坐标,如果大于图像元素构成的矩形区域的右下点的纵坐标,那么,该文本元素在原PDF格式文件中,是位于该图像元素的下方的。
同理,如果该文本元素的左上点的横坐标大于该图像元素的右下点的横坐标,那么,该文本元素在原PDF格式文件中,是位于该图像元素的右侧的。
按照正常的阅读习惯,在图像元素下方和右侧的文本元素,在转换后的EPUB格式文件中,均定位在该图像元素的下方。
步骤S303-S306中,当进行两次判断以后的结果都是否时,表示该文本元素既不在图像元素的下方,也不在该图像元素的右侧,那么,该文本元素必然位于图像元素的上方或左侧。按照正常的阅读习惯,本实施例中,将原PDF格式文件中的图像元素上方或左侧的文本元素,均定位在该图像元素的上方。
综上,本实施例中,公开了根据文本元素和图像元素的坐标,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置的一种具体方式。
本实施例所公开的将PDF格式文件转换为EPUB格式的方法,通过对文本元素左上点与图像元素右下点的横、纵坐标进行比较,能够确定文本元素与图像元素在原PDF格式文件中的位置关系,并且在转换后的EPUB格式文件中保留上述位置关系;使得转换后的EPUB格式文件能够图文并茂,并且转换后的EPUB格式文件中,图像元素与文本元素的相对位置关系与原PDF格式文件相同。
本发明同时公开了一种将PDF格式文件转换为EPUB格式的系统。参见图4,为本发明所公开的将PDF格式文件转换为EPUB格式的系统结构图。如图4所示,该系统包括:
元素识别模块401,用于识别PDF格式文件中的文本元素、图像元素;
坐标获取模块402,用于获取所述文本元素的坐标和所述图像元素的坐标;
位置确定模块403,用于根据所述文本元素的坐标和所述图像元素的坐标,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置,以使新生成的HTML格式文件中的所述文本元素和所述图像元素的相对位置关系与PDF格式文件中的所述文本元素和所述图像元素的相对位置关系相同;
HTML格式文件生成模块404,用于按照所述位置,生成HTML格式文件;
EPUB格式生成模块405,用于根据所述HTML格式文件,生成EPUB格式文件。
图5为本发明实施例所公开的位置确定模块结构图。如图5所示,位置确定模块403可以包括:
上下位置确定单元4030,用于根据所述文本元素的坐标和所述图像元素的坐标,将原本位于所述图像元素左边或上方的所述文本元素,定位在所述图像元素上方;将原本位于所述图像元素右边或下方的所述文本元素,定位在所述图像元素下方。
上下位置确定单元4030,可以包括:
第一判断子单元4031,用于判断所述文本元素的右下点的纵坐标是否小于所述图像元素的左上点的纵坐标;
第一定位子单元4032,用于当所述第一判断子单元的判断结果为是时,将所述文本元素定位在所述图像元素的上方;
第二判断子单元4033,用于当所述第一判断子单元的判断结果为否时,判断所述文本元素的右下点的横坐标是否小于所述图像元素的左上点的横坐标;
第二定位子单元4034,用于当所述第二判断子单元的判断结果为是时,将所述文本元素定位在所述图像元素的上方;
第三定位子单元4035,用于当所述第二判断子单元的判断结果为否时,将所述文本元素定位在所述图像元素的下方。
图6为本发明实施例所公开的位置确定模块另一结构图。如图6所示,上下位置确定单元4030,可以包括:
第三判断子单元4036,用于判断所述文本元素的左上点的纵坐标是否大于所述图像元素的右下点的纵坐标;
第四定位子单元4037,用于当所述第三判断子单元的判断结果为是时,将所述文本元素定位在所述图像元素的下方;
第四判断子单元4038,用于当所述第三判断子单元的判断结果为否时,判断所述文本元素的左上点的横坐标是否大于所述图像元素的右下点的横坐标;
第五定位子单元4039,用于当所述第四判断子单元的判断结果为是时,将所述文本元素定位在所述图像元素的下方;
第六定位子单元40310,用于当所述第四判断子单元的判断结果为否时,将所述文本元素定位在所述图像元素的上方。
图7为本发明实施例所公开的EPUB格式生成模块结构图。如图7所示,EPUB格式生成模块405,可以包括:
必要文件生成单元4051,用于生成包括container.xml文件以及后缀名为opf、ncx在内的EPUB格式所必须的文件;
EPUB格式生成单元4052,用于将所述HTML格式文件,以及所述EPUB格式所必须的文件,压缩成后缀名为EPUB的压缩包。
本实施例所公开的将PDF格式文件转换为EPUB格式的系统,能够对PDF格式文件中的文本元素与图像元素的坐标进行分析,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置,以使新生成的HTML格式文件中的所述文本元素和所述图像元素的相对位置关系与PDF格式文件中的所述文本元素和所述图像元素的相对位置关系相同;能够使转换后的EPUB格式文件能够图文并茂,并且转换后的EPUB格式文件中,图像元素与文本元素的相对位置关系与原PDF格式文件相同。
本说明书中各个实施例采用递进的方式描述,每个实施例重点说明的都是与其他实施例的不同之处,各个实施例之间相同相似部分互相参见即可。对于实施例公开的系统而言,由于其与实施例公开的方法相对应,所以描述的比较简单,相关之处参见方法部分说明即可。
本文中应用了具体个例对本发明的原理及实施方式进行了阐述,以上实施例的说明只是用于帮助理解本发明的方法及其核心思想;同时,对于本领域的一般技术人员,依据本发明的思想,在具体实施方式及应用范围上均会有改变之处。综上所述,本说明书内容不应理解为对本发明的限制。

Claims (10)

  1. 一种将PDF格式文件转换为EPUB格式的方法,其特征在于,包括:
    识别PDF格式文件中的文本元素、图像元素;
    获取所述文本元素的坐标和所述图像元素的坐标;
    根据所述文本元素的坐标和所述图像元素的坐标,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置,以使新生成的HTML格式文件中的文本元素和图像元素的相对位置关系与PDF格式文件中的文本元素和图像元素的相对位置关系相同;
    按照确定的位置,生成HTML格式文件;
    根据所述HTML格式文件,生成EPUB格式文件。
  2. 根据权利要求1所述的方法,其特征在于,所述根据所述文本元素的坐标和所述图像元素的坐标,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置,以使新生成的HTML格式文件中的文本元素和图像元素的相对位置关系与PDF格式文件中的文本元素和图像元素的相对位置关系相同,包括:
    根据所述文本元素的坐标和所述图像元素的坐标,将原本位于所述图像元素左边或上方的所述文本元素,定位在所述图像元素上方;将原本位于所述图像元素右边或下方的所述文本元素,定位在所述图像元素下方。
  3. 根据权利要求2所述的方法,其特征在于,所述根据所述文本元素的坐标和所述图像元素的坐标,将原本位于所述图像元素左边或上方的所述文本元素,定位在所述图像元素上方;将原本位于所述图像元素右边或下方的所述文本元素,定位在所述图像元素下方,包括:
    判断所述文本元素的右下点的纵坐标是否小于所述图像元素的左上点的纵坐标;
    如果是,则将所述文本元素定位在所述图像元素的上方;
    否则,判断所述文本元素的右下点的横坐标是否小于所述图像元素的左上点的横坐标;
    如果是,则将所述文本元素定位在所述图像元素的上方;
    否则,将所述文本元素定位在所述图像元素的下方。
  4. 根据权利要求2所述的方法,其特征在于,所述根据所述文本元素的坐标和所述图像元素的坐标,将原本位于所述图像元素左边或上方的所述文本元素,定位在所述图像元素上方;将原本位于所述图像元素右边或下方的所述文本元素,定位在所述图像元素下方,包括:
    判断所述文本元素的左上点的纵坐标是否大于所述图像元素的右下点的纵坐标;
    如果是,则将所述文本元素定位在所述图像元素的下方;
    否则,判断所述文本元素的左上点的横坐标是否大于所述图像元素的右下点的横坐标;
    如果是,则将所述文本元素定位在所述图像元素的下方;
    否则,将所述文本元素定位在所述图像元素的上方。
  5. 根据权利要求1-4任一项所述的方法,其特征在于,所述根据所述HTML格式文件,生成EPUB格式文件,包括:
    生成包括container.xml文件以及后缀名为opf、ncx在内的EPUB格式所必须的文件;
    将所述HTML格式文件,以及所述EPUB格式所必须的文件,压缩成后缀名为EPUB的压缩包。
  6. 一种将PDF格式文件转换为EPUB格式的系统,其特征在于,包括:
    元素识别模块,用于识别PDF格式文件中的文本元素、图像元素;
    坐标获取模块,用于获取所述文本元素的坐标和所述图像元素的坐标;
    位置确定模块,用于根据所述文本元素的坐标和所述图像元素的坐标,确定所述文本元素和所述图像元素在新生成的HTML格式文件中的位置,以使新生成的HTML格式文件中的文本元素和图像元素的相对位置关系与PDF格式文件中的文本元素和图像元素的相对位置关系相同;
    HTML格式文件生成模块,用于按照确定的位置,生成HTML格式文件;
    EPUB格式生成模块,用于根据所述HTML格式文件,生成EPUB格式文件。
  7. 根据权利要求6所述的系统,其特征在于,所述位置确定模块包括:
    上下位置确定单元,用于根据所述文本元素的坐标和所述图像元素的坐标,将原本位于所述图像元素左边或上方的所述文本元素,定位在所述图像元素上方;将原本位于所述图像元素右边或下方的所述文本元素,定位在所述图像元素下方。
  8. 根据权利要求7所述的系统,其特征在于,所述上下位置确定单元包括:
    第一判断子单元,用于判断所述文本元素的右下点的纵坐标是否小于所述图像元素的左上点的纵坐标;
    第一定位子单元,用于当所述第一判断子单元的判断结果为是时,将所述文本元素定位在所述图像元素的上方;
    第二判断子单元,用于当所述第一判断子单元的判断结果为否时,判断所述文本元素的右下点的横坐标是否小于所述图像元素的左上点的横坐标;
    第二定位子单元,用于当所述第二判断子单元的判断结果为是时,将所述文本元素定位在所述图像元素的上方;
    第三定位子单元,用于当所述第二判断子单元的判断结果为否时,将所述文本元素定位在所述图像元素的下方。
  9. 根据权利要求7所述的系统,其特征在于,所述上下位置确定单元包括:
    第三判断子单元,用于判断所述文本元素的左上点的纵坐标是否大于所述图像元素的右下点的纵坐标;
    第四定位子单元,用于当所述第三判断子单元的判断结果为是时,将所述文本元素定位在所述图像元素的下方;
    第四判断子单元,用于当所述第三判断子单元的判断结果为否时,判断所述文本元素的左上点的横坐标是否大于所述图像元素的右下点的横坐标;
    第五定位子单元,用于当所述第四判断子单元的判断结果为是时,将所述文本元素定位在所述图像元素的下方;
    第六定位子单元,用于当所述第四判断子单元的判断结果为否时,将所述文本元素定位在所述图像元素的上方。
  10. 根据权利要求6-9任一项所述的系统,其特征在于,所述EPUB格式生成模块包括:
    必要文件生成单元,用于生成包括container.xml文件以及后缀名为opf、ncx在内的EPUB格式所必须的文件;
    EPUB格式生成单元,用于将所述HTML格式文件,以及所述EPUB格式所必须的文件,压缩成后缀名为EPUB的压缩包。
PCT/CN2011/084272 2011-07-28 2011-12-20 一种将pdf格式文件转换为epub格式的方法及系统 WO2013013486A1 (zh)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201110213555.0 2011-07-28
CN2011102135550A CN102332002B (zh) 2011-07-28 2011-07-28 一种将pdf格式文件转换为epub格式的方法及系统

Publications (1)

Publication Number Publication Date
WO2013013486A1 true WO2013013486A1 (zh) 2013-01-31

Family

ID=45483778

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2011/084272 WO2013013486A1 (zh) 2011-07-28 2011-12-20 一种将pdf格式文件转换为epub格式的方法及系统

Country Status (2)

Country Link
CN (1) CN102332002B (zh)
WO (1) WO2013013486A1 (zh)

Families Citing this family (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103777989A (zh) * 2012-10-25 2014-05-07 阿里巴巴集团控股有限公司 用于将视觉稿源文件生成html标记的方法及系统
CN103116604B (zh) * 2013-01-15 2016-06-29 北京天智通达信息技术有限公司 一种数字阅读格式到数字多维度多媒体(dmm)格式的转换方法
CN103970750B (zh) * 2013-01-25 2018-10-02 腾讯科技(深圳)有限公司 一种生成html网页的方法和装置
CN104111913B (zh) * 2013-04-16 2017-10-03 北大方正集团有限公司 一种流式文档的处理方法及装置
CN105302626B (zh) * 2015-11-09 2021-07-23 深圳市巨鼎医疗股份有限公司 Xps结构化数据的解析方法

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020118379A1 (en) * 2000-12-18 2002-08-29 Amit Chakraborty System and user interface supporting user navigation of multimedia data file content
CN1613105A (zh) * 2002-09-05 2005-05-04 奥帕拉软件公司 在小屏幕终端显示屏上显示超文本标记语言内容
CN101699426A (zh) * 2009-11-06 2010-04-28 上海传知信息科技发展有限公司 文档格式转化系统及方法

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7409400B2 (en) * 2003-10-22 2008-08-05 Intel Corporation Applications of an appliance in a data center
CN100440219C (zh) * 2006-03-24 2008-12-03 珠海金山软件股份有限公司 一种生成pdf文件的装置和方法
US20100287188A1 (en) * 2009-05-04 2010-11-11 Samir Kakar Method and system for publishing a document, method and system for verifying a citation, and method and system for managing a project
CN101853246B (zh) * 2010-06-14 2012-05-23 深圳市万兴软件有限公司 一种文档格式的转换方法及装置

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020118379A1 (en) * 2000-12-18 2002-08-29 Amit Chakraborty System and user interface supporting user navigation of multimedia data file content
CN1613105A (zh) * 2002-09-05 2005-05-04 奥帕拉软件公司 在小屏幕终端显示屏上显示超文本标记语言内容
CN101699426A (zh) * 2009-11-06 2010-04-28 上海传知信息科技发展有限公司 文档格式转化系统及方法

Also Published As

Publication number Publication date
CN102332002B (zh) 2013-11-13
CN102332002A (zh) 2012-01-25

Similar Documents

Publication Publication Date Title
WO2013013486A1 (zh) 一种将pdf格式文件转换为epub格式的方法及系统
WO2020125251A1 (zh) 基于联邦学习的模型参数训练方法、装置、设备及介质
WO2018076865A1 (zh) 数据分享方法、装置、存储介质及电子设备
WO2014082506A1 (zh) 触摸传感器的触摸检测方法、系统和触控终端
WO2015003516A1 (zh) 生成升级包的方法、服务器、软件升级方法、移动终端
WO2017067293A1 (zh) 一种指纹解锁的方法、装置和终端
WO2017067286A1 (zh) 一种指纹模板更新方法、装置及终端
WO2019019350A1 (zh) 开户页面的生成方法、装置、设备及计算机可读存储介质
WO2014189275A1 (en) Apparatus and method of recognizing external device in a communication system
EP3342160A1 (en) Display apparatus and control methods thereof
WO2013159639A1 (zh) 显示微博话题的方法、终端、服务器、系统及存储介质
WO2012100607A1 (zh) 终端桌面处理系统、终端及服务器和方法
WO2012119494A1 (zh) 动态调整桌面布局的方法及系统、计算机存储介质
WO2018076863A1 (zh) 数据存储的方法、装置、存储介质、服务器及系统
WO2015180434A1 (zh) 一种数据库集群管理数据的方法、节点及系统
WO2020062615A1 (zh) 显示面板的伽马值调节方法、装置及显示设备
WO2020107591A1 (zh) 重复投保限制方法、装置、设备及可读存储介质
WO2017206879A1 (zh) 一种移动终端应用程序的处理方法、装置、存储介质及电子设备
WO2015058443A1 (zh) 一种实现浏览器中光标定位的方法及装置
WO2017206870A1 (zh) 一种传感器关闭方法、装置、存储介质及电子设备
WO2020233078A1 (zh) 用户信息表单的构建方法、装置、设备及存储介质
WO2020177376A1 (zh) 数据的提取方法、装置、终端及计算机可读存储介质
WO2017206881A1 (zh) 一种关联应用的处理方法、装置、存储介质及电子设备
WO2018014594A1 (zh) 网络请求及响应的处理方法、装置、终端、服务器及存储介质
WO2014135052A1 (zh) 一种高性能微处理器寄存器及其内存地址弹性保护方法

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 11869868

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 11869868

Country of ref document: EP

Kind code of ref document: A1