Posts

Image to video using python

Image
 complete video recorder using python #without mouse pionter Code from here: # -*- coding: utf-8 -*- ########################################################################### ## Python code generated with wxFormBuilder (version Jun 17 2015) ## http://www.wxformbuilder.org/ ## ## PLEASE DO "NOT" EDIT THIS FILE! ########################################################################### import wx import wx.xrc import pyscreenshot import os from PIL import ImageGrab import subprocess ########################################################################### ## Class MyFrame1 ########################################################################### TEMPDIR = 'C:\Users\Md. Khafi Hossain\Desktop\Python Tutorial' class MyFrame1 ( wx.Frame ):         def __init__( self, parent ):         wx.Frame.__init__ ( self, parent, id = wx.ID_ANY, title = u"Screen Capture", pos = wx.DefaultPosition, size = wx.Size( 208,70 ), style ...

ads2

Word to PDF converter in python

Image
MS Word 2007 to pdf converter in python import wx import wx.xrc import sys import os import comtypes.client ########################################################################### ## Class MyFrame1 ########################################################################### wdFormatPDF = 17 class MyFrame1 ( wx.Frame ):         def __init__( self, parent ):         wx.Frame.__init__ ( self, parent, id = wx.ID_ANY, title = wx.EmptyString, pos = wx.DefaultPosition, size = wx.Size( 500,300 ), style = wx.DEFAULT_FRAME_STYLE|wx.TAB_TRAVERSAL )                                 bSizer1 = wx.BoxSizer( wx.VERTICAL )                 self.m_panel1 = wx.Panel( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.TA...

Ads4