Re: Creating GIF images

2008-07-21 Thread Dmitry Grinberg
, that would be great if you could post the source for this as it may > well be just what I am looking for! > > > Regards > > Edward Jones > > > Dmitry Grinberg wrote: > > > Hello, > > > > If anyone is interested I wrote code to create gif images o

Re: Creating GIF images

2008-07-21 Thread Edward Jones
Dmitry, that would be great if you could post the source for this as it may well be just what I am looking for! Regards Edward Jones Dmitry Grinberg wrote: Hello, If anyone is interested I wrote code to create gif images on palm. Created images are uncompressed(thus does not infringe on

Re: Creating GIF images

2008-07-18 Thread Dmitry Grinberg
they did, but i am too lazy to implement a LZW encoder anyways :). just needed a quick way to export images for my cardSpeed raw card speed testing app, and bmp was out because the produced images were huge, so I put together some code to export gif, by following the spec. Best Regards

Re: Creating GIF images

2008-07-18 Thread Eric Bresie
I thought the patents for GIF87a expire around 2003-2004. Can anyone else confirm that? Eric On 7/18/08, Dmitry Grinberg <[EMAIL PROTECTED]> wrote: > Hello, > > If anyone is interested I wrote code to create gif images on palm. > Created images are uncompressed(thus does n

Creating GIF images

2008-07-18 Thread Dmitry Grinberg
Hello, If anyone is interested I wrote code to create gif images on palm. Created images are uncompressed(thus does not infringe on any patents) static GIF87a images, cool for saving screenshots or whatever you need. It's pretty fast. If anyone wants it, I can post the code here. It runs p

Entering and displaying images.

2008-05-28 Thread Vitaly_Romanishko
Hi, Does anyone know how to enter and display images in Palm? For example signature? Any sample code will be greatly appreciated. Thank you, Vitaly -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

iNetLib DR1 for WebClipping - Open() and debug rom images: OmniSky bug?

2008-05-28 Thread Carl Lippitt
Been chasing a fatal error with palm 5x devices running OS 3.5.0 (or better). Failure occurs on call to INetLibOpen(). using debug rom images: VIIx palmOS35-en-ez-8mb-wc-dbg.rom : the call completes *w/o* failure. Vx palmOS35-en-ezdbg.rom: the call generates a warning about accessing global

Re: transferring and displaying bitmaps images

2008-05-28 Thread Heather Gazdik
Along with the above question: Is the .bmp file format the only format supported in the Palm?? I will be using on CW environment. What is the compression like?? heather "Jeff Davey" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > using CW 6.0 on Windows NT > > Hello all, > > I wo

RE: help with images

2008-03-03 Thread Brown, Steve
] On Behalf Of Roger Stringer Sent: Saturday, March 01, 2008 8:56 AM To: Palm Developer Forum Subject: Re: help with images At 03:15 AM 3/1/2008, you wrote: >Subject: help with images >From: "Brown, Steve" <[EMAIL PROTECTED]> >Date: Fri, 29 Feb 2008 10:37:54 -0700 >X-

Re: help with images

2008-03-01 Thread Roger Stringer
At 03:15 AM 3/1/2008, you wrote: Subject: help with images From: "Brown, Steve" <[EMAIL PROTECTED]> Date: Fri, 29 Feb 2008 10:37:54 -0700 X-Message-Number: 4 Can any one help me with images on the palm OS. I currently have a web application that runs on both PPC and Palm platfo

help with images

2008-02-29 Thread Brown, Steve
Can any one help me with images on the palm OS. I currently have a web application that runs on both PPC and Palm platforms. However the Palm platform seems to drastically reduce the images to an almost unusable size. Is there documentation or anything that can tell me how to configure images so

Re: Render GIF images

2008-01-04 Thread Jeff Loucks
each image as directed within the logical screen and then fill in the remainder of the logical screen with the background color. On Jan 3, 2008 10:10 PM, Jaany <[EMAIL PROTECTED]> wrote: > Thanks for your reply >I want all images stored in device to be shown to user so keeping it i

Re: Render GIF images

2008-01-03 Thread Jaany
Thanks for your reply I want all images stored in device to be shown to user so keeping it in resources will not help i guess. I am getting problem with an animated GIF image (which internally contains images of different size). Waiting for reply Regards -- For information on using

Re: Render GIF images

2008-01-02 Thread Borszczuk
Janny wrote: > Hi, > Does anyone know how to render animated GIF images containing different size > into 1 bitmap. Unless you really need to render animated GIFs, it is much simplier to put animation frames as separate resources and use them. If you need GIF here it is for a st

Re: Render GIF images

2008-01-02 Thread helen . khais
Greetings! I will be off for Christmas holidays until January 8th, 2008. I will try to revert on urgent matters via e-mail throughout the week. Have a great week and a wonderful 2008! -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access

Render GIF images

2008-01-02 Thread Janny
Hi, Does anyone know how to render animated GIF images containing different size into 1 bitmap. Waiting for reply. Regards -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: Printing Images

2007-12-03 Thread Tam Hanna
Hello, I can recall that most of the small photo printers expect their input data as OBEX transfer(a jpg file usually) of an image file rather than discreet control data. As for PrintBoy...it can't even print in color...so... Best regards Tam Hanna Tamoggemon - http://www.tamoggemon.com --

Re: Printing Images

2007-11-28 Thread Ben Combee
On 11/28/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > > I would like to know how to perform a command directly to the printer to > print an image (.gif, .bmp, .jpg). > The platfomr is the Garnet OS (C++) and the printer interface is Bluetooth > (if it matters for the command). > > If

Printing Images

2007-11-28 Thread andre . ufpr
Hi, I would like to know how to perform a command directly to the printer to print an image (.gif, .bmp, .jpg). The platfomr is the Garnet OS (C++) and the printer interface is Bluetooth (if it matters for the command). If someone can help me, I would appreciate a lot... Thanks -- For informa

Re: Multiple images on one screen with scroll bar

2007-07-06 Thread f4t3z3r0
I don't think you have any choice but to load and display the images programmatically. It's not too difficult of a process, all you need is a MemHandle, and BitmapType for the images on screen. Then just DmGetResource and lock the memory. Draw the bitmaps, and you're done. All th

re: Multiple images on one screen with scroll bar

2007-07-06 Thread tamoneya
I was having similar problems. I am trying to do a similar thing but with several chunks of text instead of images. If any one could give some pointers it would be really appreciated. -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access

Multiple images on one screen with scroll bar

2007-07-05 Thread V. Sriram
hi all, I want to put multiple images on one screen arranged vertically using the resource editor, importing the images, since the images need not be changed later. But the images are big so after two or three images are inserted, they go out of the scope of the form. So they start getting

Re: Images on Palm OS

2007-05-08 Thread Donald C. Kirker
It is actually in the Ianywhere Avantgo browser so I am not sure if there is a solution but I need one Hmmm... Try adding this to all of your pages: This should tell the AvantGo channel server that you have already developed a mobile friendly site and that it should not resize it. -Donald

RE: Images on Palm OS

2007-05-08 Thread Brown, Steve
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Donald C. Kirker Sent: Tuesday, May 08, 2007 2:34 PM To: Palm Developer Forum Subject: Re: Images on Palm OS Brown, Steve wrote: > HI I am trying to figure out images on the palm OS. All my images s

Re: Images on Palm OS

2007-05-08 Thread Donald C. Kirker
Brown, Steve wrote: HI I am trying to figure out images on the palm OS. All my images seem to compress to like 150 pixels wide. Is there any way around this? Is this in the web browser? If so, make sure that Optimized Mode (Menu->Options->Optimized Mode from the main screen) is not e

Images on Palm OS

2007-05-08 Thread Brown, Steve
HI I am trying to figure out images on the palm OS. All my images seem to compress to like 150 pixels wide. Is there any way around this? Steve Brown Web Developer Information Technology ARUP Laboratories 500 Chipeta Way, Salt Lake City, Utah 84108 phone: (801) 583-2787, extension

Re: Drawing "see-through" images ?

2007-02-06 Thread Shimon Shnitzer
Hi, Sorry about the mail problems - it is killing me... Thanks for the reply. Managed to get it working. Thanks ! -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Drawing "see-through" images ?

2007-02-04 Thread Shimon Shnitzer
Hi, Thank you both. Managed to compile the functions you sent me, but does not seem to work. Maybe I am not calling it correctly. Is there a chance I can get anyone to write the code for me - payment or free licenses to all my products (www.shsh.com/products) ? All I need is a function to draw

Re: Loading/saving images to a pdb

2007-02-01 Thread Ron
Thank you -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Drawing "see-through" images ?

2007-01-31 Thread Alexander R. Pruss
There is also code to draw images with transparency in my PalmIshido source code. www.sf.net/projects/palmishido Includes scripts to convert png, etc. It's very hackish, though. The method used there is that you separate off the transparency mask from the main image. -- For informati

Re: Loading/saving images to a pdb

2007-01-31 Thread Neil Whitworth
Bellow is a pilRC snipit of a random bitmap from our source code.. It creates a Bitmap with an ID FolderBitmapFamily, It contains a high-denisity(320x320 screen size) 8-bit colour btmap for more recent OS5 devices, a 16-bit & 8-bit colour low-density (traditional 160x160) bitmaps as well as 4/2

Re: Loading/saving images to a pdb

2007-01-31 Thread JamesSturdevant
For one project, I wrote a program that had the images as resources and wrote them to a Palm database. I ran it in the emulator and then exported them to .pdb files for use in the other program. I think you can do the same thing now with overlays but I haven't had the need to do it

Re: Loading/saving images to a pdb

2007-01-31 Thread Ron
Thank you for your reply Neil. I think I understand what you are explaining. Although I am not sure how to use PilRC to create the resource database. How do the .rcp files look like? I had a look at the examples and tried reading the manual... but I am slightly confused. All I want is to put a fe

Re: Loading/saving images to a pdb

2007-01-31 Thread Neil Whitworth
to create 'skins' for some palm apps. There are also routines to search a specific database as well. Palm Bitmaps are not the same as windows bitmaps, but you can use constructor, PilRC, or even par to help create the prc file. Ron wrote: Hi, Is there a way I can load images from a da

Re: Drawing "see-through" images ?

2007-01-31 Thread Shimon Shnitzer
Thanks ! Sorry about the attachment thing. And thanks for the input and offer. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Drawing "see-through" images ?

2007-01-31 Thread Michal Seliga
this is drawn using palmpng library i used in program you made screenshot from... unfortunately this library is not in such state that i could release it (its still only static, works only with prc-tools and does only things i exactly needed which is not enough for public release). unfortunately i

Re: Drawing "see-through" images ?

2007-01-31 Thread Borszczuk
Shimon Shnitzer wrote: > Does anyone happen to know how I can draw an image > on screen with "see-through" ? It's alpha channel based transparency (contrary to that model you got supported i.e. with regular bitmaps). And you have to blend it yourself, I'm afraid. > (like in the attached image)

Drawing "see-through" images ?

2007-01-31 Thread Shimon Shnitzer
Hi, Does anyone happen to know how I can draw an image on screen with "see-through" ? (like in the attached image) Thanks -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/ untitled.bmp Description: Windows bi

Loading/saving images to a pdb

2007-01-30 Thread Ron
Hi, Is there a way I can load images from a database not in the scope of the program. What I mean is the program can open a given database and load a given image from it? Or must the image be part of the resource of the program? If it is possible, what is the structure of the image as a

Re: How to cache images?

2007-01-30 Thread Alexander R. Pruss
You are assuming that the bitmap bits follow the bitmap header. This assumption is not justified in the case of bitmaps in system windows. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: How to cache images?

2007-01-20 Thread Horace Ho
Tried yesterday, but not successful... BitmapPtr icon_bmp = WinGetBitmap(icon_win); // from an offscreen UInt32 bmp_data_size = 0; UInt32 bmp_head_size = 0; BmpGetSizes(icon_bmp, &bmp_data_size, &bmp_head_size); UInt8 bmp_version = BmpGetVersion(icon_bmp); void *temp_ptr = NULL; err = FtrPtrNew

Re: How to cache images?

2007-01-19 Thread Aaron Ardiri
On 1/19/07, Horace Ho <[EMAIL PROTECTED]> wrote: The problem is how can I store a bitmap efficiently? Any chance I can FtrPtrNew some memory and store what is returned by BmpGetBits? Or there is a better way? did you try this? :) already solved it yourself before you hit the send button. but t

How to cache images?

2007-01-19 Thread Horace Ho
I need to access images (jpeg, gif) fast. So the first thing in mind is WinCreateOffscreenWindow and store the WinDrawBitmap result after PalmPhotoOpenImageV2 the image files. The problem is how can I store a bitmap efficiently? Any chance I can FtrPtrNew some memory and store what is returned

RE: ROM IMAGES

2006-08-17 Thread Stefan Mohr
loper Forum Subject: ROM IMAGES Hi, I have made attempts to download ROM IMAGES, but none of the links are connecting me to to the server. I get cannot connect to URL message. Can someone share with me how to obtain Palm TX ROM IMAGE. Thanks -- For information on using the PalmSource Developer F

Re: ROM IMAGES

2006-08-17 Thread Nikolai Filipov
Hello! You cannot get a Palm TX ROM image, but you can get a Palm TM Simulator here (you need to register first) http://pluggedin.palm.com Nikolai Filipov Hands High Hi, I have made attempts to download ROM IMAGES, but none of the links are connecting me to to the server. I get cannot

ROM IMAGES

2006-08-17 Thread kkouis
Hi, I have made attempts to download ROM IMAGES, but none of the links are connecting me to to the server. I get cannot connect to URL message. Can someone share with me how to obtain Palm TX ROM IMAGE. Thanks -- For information on using the PalmSource Developer Forums, or to unsubscribe

Re: Viewing images from within app?

2006-05-19 Thread Luc Le Blanc
she wrote: > i'm not sure but i guess you can use the PalmPhotoLib as well. > I use it when viewing jpg files. haven't treid with other types. Is this library present on devices other than Treos? Or can it at least be installed on other (ARM-only ?) devices? -- Luc Le Blanc -- For in

Re: Viewing images from within app?

2006-05-18 Thread she
.. ps. it's built in library for treo -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Viewing images from within app?

2006-05-18 Thread she
i'm not sure but i guess you can use the PalmPhotoLib as well. I use it when viewing jpg files. haven't treid with other types. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Viewing images from within app?

2006-05-18 Thread Regis St-Gelais
"Luc Le Blanc" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED] > Is there a built-in app or 3rd party app I can sublaunch or public code I > can use to implement image (JPG or GIF) viewing from within my app? > Luc, Since I know you are developping mainly for non-ARM devi

RE: Viewing images from within app?

2006-05-17 Thread Registraciones
Developer Forum Asunto: RE: Viewing images from within app? Registraciones wrote : > I use this with pnoJpegLib in a treo 650 > [snip] Where do I get this library? Does it only run/exist on Treos? The only photo-related thing I could find is Palm's Photos APIs for recent devices that

RE: Viewing images from within app?

2006-05-17 Thread Luc Le Blanc
Registraciones wrote : > I use this with pnoJpegLib in a treo 650 > [snip] Where do I get this library? Does it only run/exist on Treos? The only photo-related thing I could find is Palm's Photos APIs for recent devices that feature the Photos built-in application. I found o

RE: Viewing images from within app?

2006-05-16 Thread Registraciones
Enviado el: Martes, 16 de Mayo de 2006 12:04 p.m. Para: Palm Developer Forum Asunto: Viewing images from within app? Is there a built-in app or 3rd party app I can sublaunch or public code I can use to implement image (JPG or GIF) viewing from within my app? -- Luc Le Blanc -- For information

Viewing images from within app?

2006-05-16 Thread Luc Le Blanc
Is there a built-in app or 3rd party app I can sublaunch or public code I can use to implement image (JPG or GIF) viewing from within my app? -- Luc Le Blanc -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Color information in the BMP Header for 16 bit images?

2006-05-05 Thread mkanaka
with which information to be filled in the BMP header for 16 bit images. Thanks in advance. regards Valli -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: About rom images & pose.

2006-04-20 Thread Ben Combee
can also Download a ROM from a Palm device directly, using 'Transfer' > (Download ALT+D) > > HTH > > > Colin > > > > - Original Message - > From: Lightme beosaires > To: Palm Developer Forum > Sent: Friday, April 21, 2006 1:41 AM > S

Re: About rom images & pose.

2006-04-20 Thread Colin/Mina
he new Session where it suits    You can also Download a ROM from a Palm device directly, using 'Transfer' (Download ALT+D)   HTH       Colin   - Original Message - From: Lightme beosaires To: Palm Developer Forum Sent: Friday, April 21, 2006 1:41 AM Subject: Ab

About rom images & pose.

2006-04-20 Thread Lightme beosaires
HI to everyone here :) i have one simple-beginner question now, well i donwloaded pose & the palm tools for linux. of course for use POSE i need the ROM images. I obtained the rom images (.zip file ) on the palm source website. But i don't know how transfer the rom's to pose if th

Re: Is there any method for zoom in zoom out of bitmap images in palm

2006-03-30 Thread Robert Moynihan
Kishor Bhushan wrote: Hi I am new to Palm os so i want to know, is there any method for zoom in and zoom out of bitmap images in palm os if yes plz give example thank you No, there are no system functions to do this. You either have to create your own functions or find a 3rd party library

Is there any method for zoom in zoom out of bitmap images in palm

2006-03-30 Thread Kishor Bhushan
Hi I am new to Palm os so i want to know, is there any method for zoom in and zoom out of bitmap images in palm os if yes plz give example thank you -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Can I draw images in Field?

2005-11-18 Thread Logan Shaw
[EMAIL PROTECTED] wrote: I have a multiline Field and I want to draw a bitmap in it .. is it possible to do that? It will be a part of test, Like adding any picture in RichTextEditor as a part of text in Windows? Nope, not possible. A field must be entirely text and furthermore must be entir

Can I draw images in Field?

2005-11-18 Thread kiranp
Hello Developers, I have a multiline Field and I want to draw a bitmap in it .. is it possible to do that? It will be a part of test, Like adding any picture in RichTextEditor as a part of text in Windows? thanks a lot in advance. .. KiraN Puranik -- For information on using the PalmSource

Re: Images with a palm

2005-09-17 Thread Henk Jonas
[EMAIL PROTECTED] wrote: I'm currently using a Zire 21, however my application will also need to run on higher end handhelds. I have designed some graphical buttons that when tested on the Simulator, look terrible. Essently they are not crisp. I have developed these images in Photosho

Images with a palm

2005-09-16 Thread omarqu
I'm currently using a Zire 21, however my application will also need to run on higher end handhelds. I have designed some graphical buttons that when tested on the Simulator, look terrible. Essently they are not crisp. I have developed these images in Photoshop and saved them as BITMAPS. I

Re: storing and retrieving images taken by the camera

2005-07-12 Thread Henk Jonas
Eric Potter wrote: From looking at the CameraSample code, I've figured out how to capture an image taken with the camera. But how do I store the image and retieve it later? I've read in the archives that I can't just write the Bitmap structure to the database because the bits are stored outsid

storing and retrieving images taken by the camera

2005-07-11 Thread Eric Potter
From looking at the CameraSample code, I've figured out how to capture an image taken with the camera. But how do I store the image and retieve it later? I've read in the archives that I can't just write the Bitmap structure to the database because the bits are stored outside the structure. Doe

Re: Screen Images

2005-06-09 Thread Logan Shaw
Landon Cunningham wrote: Here what I have done... WinGetDisplayExtent(&DepthWidth, &DepthHeight); theBitmap = BmpCreate(DepthWidth, DepthHeight, bitColourDepth, NULL, &err); if (theDepthBitmap) { DepthWindow = WinCreateBitmapWindow(theDepthBitmap, &err); //the display screen theDepthBit

Re: Screen Images

2005-06-09 Thread Landon Cunningham
Here what I have done... WinGetDisplayExtent(&DepthWidth, &DepthHeight); theBitmap = BmpCreate(DepthWidth, DepthHeight, bitColourDepth, NULL, &err); if (theDepthBitmap) { DepthWindow = WinCreateBitmapWindow(theDepthBitmap, &err); //the display screen theDepthBitmap = WinGetBitmap(WinGetDi

Re: Screen Images

2005-06-08 Thread Logan Shaw
Landon Cunningham wrote: What I am trying to do is take a 16bit color screen and send it over bluetooth to a base computer. I have already done it for 8 bit and below through converting to a gif and then sending. But for 16bit I need to convert to 8bit and then create the gif. Which is where I am

Screen Images

2005-06-08 Thread Landon Cunningham
Hey All, What I am trying to do is take a 16bit color screen and send it over bluetooth to a base computer. I have already done it for 8 bit and below through converting to a gif and then sending. But for 16bit I need to convert to 8bit and then create the gif. Which is where I am stumped. I have t

re: Use images as UI objects.

2005-06-01 Thread Dr. Vesselin Bontchev
The icon of an application is stored as a 'tAIB' 1000 resource. (The small icon is stored as a 'tAIB' 1001 resource - but many applications don't have small icons.) Presumably, you know the icon of which application you want to use (e.g., yours or some standard application), so you can open it a

Use images as UI objects.

2005-06-01 Thread Deepak.MA
Hi, I need to use images/icons as UI Objects(Button specifically). I do not want to create a BitMap on Constructor. Is there a specific way by which i can do this. For more clarity, i might want to use lets say, a Real Player icon as a button in a form. How do i do this

Re: Saving images in Zire 72

2005-05-30 Thread Adrien Regimbald
Hello Christiano, For whatever reason, the image data coming from the Zire 72 camera is byte swapped compared to that of the Zire 71 camera. Try byte swapping on 16-bit intervals and see if that helps. There is a handy macro for this called ByteSwap16, which you can find in the header "endianutils

Saving images in Zire 72

2005-05-30 Thread Christiano Weirich
Hi. I'm working in a application that captures a image and save it in a SD card. The image is captured successfully and I can use the resulting bitmap with WinDrawBitmap, then I save it to the card. But, when I access it (via the image viewer of PalmOS) it appears as a corrupted image. I've tried

RE: Images on Palm

2005-02-15 Thread Oscar De LeÃn
Hi Tunio, I have developed this for NSBasic, but it is very simple to convert is to C. The idea is to use a PRC to store the images. You can create the PRC on your desktop using PilRC. You can also create a PDB to store other information, including an ID for the picture. Then, when you need to

RE: Images on Palm

2005-02-13 Thread Oscar De LeÃn
Asunto: Images on Palm Hi Every one, I need to write an application which shows the picture of a person during runtime based on the person record selected. Can anyone help me by pointing out hints or tutorials. Thanks -- For information on using the Palm Developer Forums, or to

Images on Palm

2005-02-07 Thread Tunio
Hi Every one, I need to write an application which shows the picture of a person during runtime based on the person record selected. Can anyone help me by pointing out hints or tutorials. Thanks -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www

multiple images

2005-01-24 Thread Tisham
What is the best way to display a large image which can be dragged around, I have cut it into tiles and have buttons on the corners to load separate tiles a better way would be to have overlapping times and load them on pen input, anyone done it properly before? Also how can I have a set of lot

Re: Where are the emulator ROM images????

2005-01-19 Thread Luc Le Blanc
Jan Slodicka wrote: > Luc Le Blanc wrote: > > And myself, what do I gain? No money, that's for sure, but life > > is not > > just about earning money. > Despite I may sound as too business-oriented, the reverse is > true. I am more driven by the product quality than by the > considerations wheth

RE: Where are the emulator ROM images????

2005-01-19 Thread John Sutton
Jan Slodicka wrote > In my opinion supporting OS3- in new apps cannot bring any gain. > (Maybe except very special occasions.) Jan, I totally agree for *NEW* apps, but in our case not for enhancements to old apps. We're still supporting thousands of OS3 devices in the corporate world in the UK (ma

Re: Where are the emulator ROM images????

2005-01-19 Thread Jan Slodicka
> I develop a cave survey freeware That's what I meant by special occasions. Anyway, we have also another app (a file manager) that is limited to OS4. But again, OS5 customers constitute 90+%. I talk about the paying customers as I don't have any access to those that just download. The cracked v

Re: Where are the emulator ROM images????

2005-01-18 Thread YAMADA Tatsushi
There's another ROM transfer tool "ROMSaver" at http://salon.simple-palm.com/data/rom_saver_01.zip . It saves ROM to files on memory card . so it requires memory card slot but it's easier to use. It's rather old and I don't know it's compatible with newer devices. At 06:21 05/01/19 +0100, Aaron

Re: Where are the emulator ROM images????

2005-01-18 Thread Luc Le Blanc
Jan Slodicka a écrit : > > Limiting > > your app to OS 5 will make it easier to develop and test while not cutting > > off many sales. > > That's what we did a few months ago. > But I meant this as a reaction to Ed's topic. I think that even for > non-multimedia apps the situation will be similar

Re: Where are the emulator ROM images????

2005-01-18 Thread Aaron Ardiri
> There is a piece of code floating around the net, maybe even around here > somewhere :), that will extract a ROM image from an actual device. Older > ROMs can be extracted from older devices. Older devices are available really > cheap off eBay or, (ahem) borrowed from others. its called ROMTrans

RE: Where are the emulator ROM images????

2005-01-18 Thread Jeffry Loucks
: Palm Developer Forum Subject: Re: Where are the emulator ROM images Jan, Ben: Thank you both for your thoughts. The game that I wrote (see my earlier thread about "AccessorDispatch") is a fairly simple one that I intend to release as freeware, mainly because it will be my fi

Re: Where are the emulator ROM images????

2005-01-18 Thread Ed Pugh
Sian to pay for those expensive Palm devices! So, we have have more incentive to make the older ones last a bit longer. And sorry about my earlier rant. It came from the frustration of learning that I cannot obtain the earlier OS ROM images (which is still a frustration for me, but I should not ha

Re: Where are the emulator ROM images????

2005-01-18 Thread Jan Slodicka
> Limiting > your app to OS 5 will make it easier to develop and test while not cutting > off many sales. That's what we did a few months ago. But I meant this as a reaction to Ed's topic. I think that even for non-multimedia apps the situation will be similar - mainly because the people who stick

Re: Where are the emulator ROM images????

2005-01-18 Thread Ben Combee
At 02:52 PM 1/18/2005, you wrote: Well, an implied question is whether it stil makes sense to support older OS's. We have a multimedia app and set the limit (initially) to Palm OS4. Today the 95% of our (paying) users have OS5. Naturally, this number is influenced very much by the app characteristi

Re: Where are the emulator ROM images????

2005-01-18 Thread Jan Slodicka
alm Developer Forum" Sent: Tuesday, January 18, 2005 7:03 PM Subject: Re: Where are the emulator ROM images > Hi, again. > > Then, how do developers who do not yet have the earlier OS > images test their programs on those versions? This is a > serious question. > > Saying

Re: Where are the emulator ROM images????

2005-01-18 Thread Ed Pugh
Hi, again. Then, how do developers who do not yet have the earlier OS images test their programs on those versions? This is a serious question. Saying that developers should no longer support the earlier OS's is not an option. There is still a large user base "out there" and dev

Re: Where are the emulator ROM images????

2005-01-18 Thread Ben Combee
At 08:57 AM 1/18/2005, you wrote: Where are the earlier ROM OS images? (I'm looking for 2.0). We no longer have the older ROM images posted. They all contain the original Graffiti implementation, and our legal department did not want us distributing them anymore, at least until the p

Where are the emulator ROM images????

2005-01-18 Thread Ed Pugh
Hi. As Henk suggested in my earlier thread, I want to obtain the ROM image for PalmOS 2.0 to run on the emulator. Is it just me or are the Emulator ROM images for the various Palm OS versions difficult to find? I cannot find the ROM image(s) for Palm OS 2.0 !! After logging into the Palm

Want to modify jpeglib (used to Display JPEG Images) for personal Project use.

2005-01-18 Thread Haider Iqbal
I am working on Directory application in which it is required to Show Pictures of the persons in the contact list. I searched the net and found a jpege Library from the Address: http://www.nyctergatis.com/jpeglib/ Now I want to recompile the library files (that is my project requirement), so I

Problem using Jpeglib library for displaying Jpeg images on the Palm Device.

2005-01-18 Thread Haider Iqbal
I am working on Directory application in which it is required to Show Pictures of the persons in the contact list. I searched the net and found a jpege Library from the Address: http://www.nyctergatis.com/jpeglib/ Now I want to recompile the library files (that is my project requirement), so I

RE: problem with images

2005-01-10 Thread Zechner Christian
Thank you a lot! -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Henk Jonas Enviado el: Viernes, 07 de Enero de 2005 04:10 p.m. Para: Palm Developer Forum Asunto: Re: problem with images Zechner Christian wrote: > The depth of image is 16 bits, bu

Re: Having Problem with Implementing Images

2005-01-08 Thread Donald C. Kirker
read VFS and maybe > write to VFS. You should take a look at the file "PalmJpegSampleApp.c" that > comes with the library. It is very helpful and it helped me. > > Regards, > Donald Kirker > > "Haider Iqbal" <[EMAIL PROTECTED]> wrote in message > new

Re: Having Problem with Implementing Images

2005-01-08 Thread Donald C. Kirker
should take a look at the file "PalmJpegSampleApp.c" that comes with the library. It is very helpful and it helped me. Regards, Donald Kirker "Haider Iqbal" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > I want to show JPG images in my applicati

Re: Having Problem with Implementing Images

2005-01-08 Thread Ben Combee
At 03:03 PM 1/8/2005, you wrote: I don't know of any code that can write a file into a PDB on the desktop in a way that will make that PDB compatible with the File Streaming API. It may exist (and if it does, I'd like to know about it!), or it may not. However, you can convert files on the Palm b

Re: Having Problem with Implementing Images

2005-01-08 Thread Logan Shaw
Haider Iqbal wrote: > I want to show JPG images in my application. I have used jpeglib from the > following link: http://www.nyctergatis.com/jpeglib > I have two issues: > > 1. How to Convert .jpg to .pdb Format. > > Please tell me that is there a utility to convert t

Having Problem with Implementing Images

2005-01-08 Thread Haider Iqbal
Hi, I want to show JPG images in my application. I have used jpeglib from the following link: http://www.nyctergatis.com/jpeglib I have two issues: 1. How to Convert .jpg to .pdb Format. Please tell me that is there a utility to convert the JPG image into PDB image. If yes, please Provide Link

  1   2   3   4   >