• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python utils.Utils类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中aspose.cloud.common.utils.Utils的典型用法代码示例。如果您正苦于以下问题:Python Utils类的具体用法?Python Utils怎么用?Python Utils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了Utils类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: replace_text

 def replace_text(self, old_text, new_text, is_regular_expression=False, page_number=0):
     try:
         if self.file_name == '':
             raise Exception('filename not specified')
         if old_text == '':
             raise Exception('old text not specified')
       
         if new_text == '':
             raise Exception('new text not specified')
         post_hash = { "OldValue" : old_text, "NewValue" : new_text, "Regex": "false" }
         json_data = json.dumps(post_hash)
         if page_number > 0:
             str_uri = Product.base_product_uri + "/pdf/" + self.file_name + "/pages/" + str(page_number) + '/replaceText'
         else:
             str_uri = Product.base_product_uri + "/pdf/" + self.file_name + '/replaceText'
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "POST", "json", json_data)
         v_output = Utils.validate_output(Utils(), response_stream)
         if v_output == "":
             folder = Folder()
             output_stream = folder.get_file(self.file_name)
             output_path = AsposeApp.output_location + self.file_name
             Utils.save_file(Utils(), output_stream, output_path)
             return output_path
         else:
             return v_output
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:28,代码来源:TextEditor.py


示例2: replace_text

 def replace_text(self, file_name, old_value, new_value, is_match_case, is_match_whole_word):
     try:
         if file_name == "":
             raise Exception("Please Specify File Name")
         field_arr = {
             "OldValue": old_value,
             "NewValue": new_value,
             "IsMatchCase": str(is_match_case),
             "IsMatchWholeWord": str(is_match_whole_word),
         }
         json_arr = json.dumps(field_arr)
         str_uri = Product.base_product_uri + "/words/" + file_name + "/replaceText"
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "POST", "json", json_arr)
         v_output = Utils.validate_output(Utils(), response_stream)
         if v_output == "":
             folder = Folder()
             output_stream = folder.get_file(file_name)
             output_path = AsposeApp.output_location + file_name
             Utils.save_file(Utils(), output_stream, output_path)
             return output_path
         else:
             return v_output
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:25,代码来源:DocumentBuilder.py


示例3: get_shapes

 def get_shapes(self, slide_number,storage_type = None,storage_name =None,folder=None):
     try:
         if self.file_name == "":
             raise Exception("Please Specify File Name")
         str_uri = Product.base_product_uri + "/slides/" + self.file_name + "/slides/" + str(slide_number) + "/shapes"
         if folder is not None:
             str_uri += "?folder=" + folder
         if storage_name is not None:
             str_uri += "&storage=" + storage_name
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
         json_data = json.loads(response_stream)
         shapes = {}
         if json_data["Code"] == 200:
             shape = {}
             for json_data["ShapeList"]["Links"] in shape:
                 signed_uri = Utils.sign(Utils(), shape["Uri"]["Href"])
                 response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
                 data = json.loads(response_stream)
                 shapes = data
             return shapes
         else:
             return json_data
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:25,代码来源:Extractor.py


示例4: insert_watermark_image

 def insert_watermark_image(self, file_name, image_filename, rotation_angle):
     try:
         if file_name == "":
             raise Exception("Please Specify File Name")
         if image_filename == "":
             raise Exception("Please Specify Image File Name")
         str_uri = (
             Product.base_product_uri
             + "/words/"
             + file_name
             + "/insertWatermarkImage?imageFile="
             + image_filename
             + "&rotationAngle="
             + str(rotation_angle)
         )
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "POST", "json", "")
         v_output = Utils.validate_output(Utils(), response_stream)
         if v_output == "":
             folder = Folder()
             output_stream = folder.get_file(file_name)
             output_path = AsposeApp.output_location + file_name
             Utils.save_file(Utils(), output_stream, output_path)
             return output_path
         else:
             return v_output
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:28,代码来源:DocumentBuilder.py


示例5: replace_text

 def replace_text(self, *args):
     num_of_args = len(args)
     if(num_of_args == 2):
         old_text = args[0]
         new_text = args[1]
     elif(num_of_args == 3):
         old_text = args[0]
         new_text = args[1]
         slide_number = args[2]
     else:
         raise Exception("Invalid Numbers of Arguments")
     try:
         if self.file_name == "":
             raise Exception("Please Specify File Name")
         str_uri = Product.base_product_uri + "/slides/" + self.file_name
         if num_of_args == 3:
             str_uri += "/slides/" + str(slide_number)
         str_uri += "/replaceText?oldValue=" + old_text + "&newValue=" + new_text + "&ignoreCase=true"
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "POST", "JSON", "")
         json_data = json.loads(response_stream)
         if json_data["Code"] == 200:
             return str(json_data["Matches"]) + " Found And Replaced"
         else:
             return False
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:27,代码来源:Document.py


示例6: save

 def save(self, codeText, symbology, imageFormat, xResolution, yResolution, xDimension, yDimension):
     strURI = Product.base_product_uri + "/barcode/generate?text=" + codeText + "&type=" + str(symbology) + "&format=" + imageFormat
     if xResolution <= 0:
         strURI += ""
     else:
         strURI += "&resolutionX=" + str(xResolution)
     if yResolution <= 0:
         strURI += ""
     else:
         strURI += "&resolutionY=" + str(yResolution)
     if xDimension <= 0:
         strURI += ""
     else:
         strURI += "&dimensionX=" + str(xDimension)
     if yDimension <= 0:
         strURI += ""
     else:
         strURI += "&dimensionY=" + str(yDimension)
     try:
         signedURI = Utils.sign(Utils(), strURI)
         response = Utils.process_command(Utils(), signedURI, "GET", "", "")
         v_output = Utils.validate_output(self, response)
         if(v_output == ""):
             output_path = AsposeApp.output_location + "barcode" + str(symbology) + "." + imageFormat
             Utils.save_file(self, response, output_path)
             return output_path
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:28,代码来源:BarcodeBuilder.py


示例7: get_image_count

 def get_image_count(self, page_number):
     try:
         if self.file_name == "":
             raise Exception("Please Specify Pdf File")
         str_uri = Product.base_product_uri + "/pdf/" + self.file_name + "/pages/" + str(page_number) + "/images"
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
         json_data = json.loads(response_stream)
         return len(json_data["Images"]["List"])
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:11,代码来源:Extractor.py


示例8: is_child_bookmark

 def is_child_bookmark(self, bookmark_index):
     try:
         if self.file_name == "":
             raise Exception("Please Specify File Name")
         str_uri = Product.base_product_uri + "/pdf/" + self.file_name + "/bookmarks/" + str(bookmark_index)
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
         json_data = json.loads(response_stream)
         return json_data["Bookmark"]
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:11,代码来源:AnnotationEditor.py


示例9: get_child_bookmark_count

 def get_child_bookmark_count(self, parent_index):
     try:
         if self.file_name == "":
             raise Exception("Please Specify File Name")
         str_uri = Product.base_product_uri + "/pdf/" + self.file_name + "/bookmarks/" + str(parent_index) + "/bookmarks"
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
         json_data = json.loads(response_stream)
         return len(json_data["Bookmarks"]["List"])
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:11,代码来源:AnnotationEditor.py


示例10: get_annotation

 def get_annotation(self, page_number, annotation_index):
     try:
         if self.file_name == "":
             raise Exception("Please Specify File Name")
         str_uri = Product.base_product_uri + "/pdf/" + self.file_name + "/pages/" + str(page_number) + "/annotations/" + str(annotation_index)
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
         json_data = json.loads(response_stream)
         return json_data["Annotation"]
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:11,代码来源:AnnotationEditor.py


示例11: get_attachment

 def get_attachment(self, attachment_index):
     try:
         if self.file_name == "":
             raise Exception("Please Specify File Name")
         str_uri = Product.base_product_uri + "/pdf/" + self.file_name + "/attachments/" + str(attachment_index)
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
         json_data = json.loads(response_stream)
         return json_data["Attachments"]
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:11,代码来源:AnnotationEditor.py


示例12: get_mailmerge_field_names

 def get_mailmerge_field_names(self, file_name):
     try:
         if file_name == "":
             raise Exception("Please Specify File Name")
         str_uri = Product.base_product_uri + "/words/" + file_name + "/mailMergeFieldNames"
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET" , "", "")
         json_data = json.loads(response_stream)
         return json_data["FieldNames"]
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:11,代码来源:Field.py


示例13: create_empty_workbook

 def create_empty_workbook(self):
     try:
         str_uri = Product.base_product_uri + "/cells/" + self.file_name
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "PUT", "", "")
         json_data = json.loads(response_stream)
         if json_data["Code"] == 200:
             return json_data
         else:
             return False
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:12,代码来源:Workbook.py


示例14: convert

 def convert(self):
     try:
         if self.file_name == "":
             raise Exception("Please Specify File Name")
         str_uri = Product.base_product_uri + "/slides/" + self.file_name + "?format=" + self.save_format
         signed_uri = Utils.sign(self, str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
         output_path = AsposeApp.output_location + Utils.get_filename(Utils(), self.file_name) + "." + self.save_format
         Utils.save_file(Utils(), response_stream, output_path);
         return output_path
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:12,代码来源:Converter.py


示例15: convert_to_image_by_size

 def convert_to_image_by_size(self, slide_number, image_format, width, height):
     try:
         if self.file_name == "":
             raise Exception("Please Specify File Name")
         str_uri = Product.base_product_uri + "/slides/" + self.file_name + "/slides/" + str(slide_number) + "?format=" + image_format + "&width=" + str(width) + "&height=" + str(height)
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
         output_path = AsposeApp.output_location + Utils.get_filename(Utils(), self.file_name) + "_slide_" + str(slide_number) + "." + image_format
         Utils.save_file(Utils(), response_stream, output_path);
         return output_path
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:12,代码来源:Converter.py


示例16: get_cells_count

 def get_cells_count(self, off_set, count):
     try:
         if self.file_name == "":
             raise Exception("Please Specify File Name")
         if self.worksheet_name == "":
             raise Exception("Please Specify worksheet Name")
         str_uri = Product.base_product_uri + "/cells/" + self.file_name + "/worksheets/" + self.worksheet_name + "/cells?offset=" + str(off_set) + "&count=" + str(count)
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
         json_data = json.loads(response_stream)
         return json_data["Cells"]["CellCount"]
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:13,代码来源:Worksheet.py


示例17: get_autoshapes_count

 def get_autoshapes_count(self):
     try:
         if self.file_name == "":
             raise Exception("Please Specify File Name")
         if self.worksheet_name == "":
             raise Exception("Please Specify worksheet Name")
         str_uri = Product.base_product_uri + "/cells/" + self.file_name + "/worksheets/" + self.worksheet_name + "/autoshapes"
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
         json_data = json.loads(response_stream)
         return len(json_data["AutoShapes"]["AutoShapeList"])
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:13,代码来源:Worksheet.py


示例18: get_column

 def get_column(self, column_index):
     try:
         if self.file_name == "":
             raise Exception("Please Specify File Name")
         if self.worksheet_name == "":
             raise Exception("Please Specify worksheet Name")
         str_uri = Product.base_product_uri + "/cells/" + self.file_name + "/worksheets/" + self.worksheet_name + "/cells/columns/" + str(column_index)
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
         json_data = json.loads(response_stream)
         return json_data["Column"]
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:13,代码来源:Worksheet.py


示例19: get_cell_style

 def get_cell_style(self, cell_name):
     try:
         if self.file_name == "":
             raise Exception("Please Specify File Name")
         if self.worksheet_name == "":
             raise Exception("Please Specify Worksheet Name")
         str_uri = Product.base_product_uri + "/cells/" + self.file_name + "/worksheets/" + self.worksheet_name + "/cells/" + cell_name + "/style"
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
         json_data = json.loads(response_stream)
         return json_data
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:13,代码来源:Worksheet.py


示例20: get_mergedcell_count

 def get_mergedcell_count(self):
     try:
         if self.file_name == "":
             raise Exception("Please Specify File Name")
         if self.worksheet_name == "":
             raise Exception("Please Specify worksheet Name")
         str_uri = Product.base_product_uri + "/cells/" + self.file_name + "/worksheets/" + self.worksheet_name + "/mergedCells"
         signed_uri = Utils.sign(Utils(), str_uri)
         response_stream = Utils.process_command(Utils(), signed_uri, "GET", "", "")
         json_data = json.loads(response_stream)
         return json_data["MergedCells"]["Count"]
     except:
         raise
开发者ID:hiroshiyu,项目名称:Aspose_Cloud_SDK_For_Python,代码行数:13,代码来源:Worksheet.py



注:本文中的aspose.cloud.common.utils.Utils类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python common.Utils类代码示例发布时间:2022-05-24
下一篇:
Python website.Website类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap